Fix order of text-import subdialogs.
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 29 Mar 2013 11:13:43 +0000 (12:13 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Fri, 29 Mar 2013 11:14:35 +0000 (12:14 +0100)
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.

src/ui/gui/text-data-import-dialog.c

index d535734d08d78af2085f6ec1e556bac5d2791eb0..20bac652ccab69c153e753e2f4684b0922e4114a 100644 (file)
@@ -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);