From: John Darrington Date: Fri, 29 Mar 2013 11:13:43 +0000 (+0100) Subject: Fix order of text-import subdialogs. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40fa9400304e89516cc88bdc10ecb36733adb211;p=pspp Fix order of text-import subdialogs. Commit 29c1450251805417aacb9cecc84b03c81137c137 inadvertently reversed the order of display of the the first-line and seperator subdialogs. Amoung other problems, this meant that controls of the former were no longer respected. This change restores the original order. --- diff --git a/src/ui/gui/text-data-import-dialog.c b/src/ui/gui/text-data-import-dialog.c index d535734d08..20bac652cc 100644 --- a/src/ui/gui/text-data-import-dialog.c +++ b/src/ui/gui/text-data-import-dialog.c @@ -87,8 +87,8 @@ text_data_import_assistant (PsppireDataWindow *dw) { ia->intro = intro_page_create (ia); - ia->separators = separators_page_create (ia); ia->first_line = first_line_page_create (ia); + ia->separators = separators_page_create (ia); } ia->formats = formats_page_create (ia);