r569 - trunk

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri May 30 23:07:25 EDT 2008


Author: icculus
Date: 2008-05-30 23:07:25 -0400 (Fri, 30 May 2008)
New Revision: 569

Modified:
   trunk/gui_gtkplus2.c
Log:
Append GTK+ destination combo box entries in correct order (thanks, Gerry JJ!).

They were reversed before.


Modified: trunk/gui_gtkplus2.c
===================================================================
--- trunk/gui_gtkplus2.c	2008-05-31 03:06:06 UTC (rev 568)
+++ trunk/gui_gtkplus2.c	2008-05-31 03:07:25 UTC (rev 569)
@@ -754,7 +754,7 @@
     int i;
 
     for (i = 0; i < recnum; i++)
-        gtk_combo_box_prepend_text(combo, recommends[i]);
+        gtk_combo_box_append_text(combo, recommends[i]);
     gtk_combo_box_set_active (combo, 0);
 
     *command = run_wizard(_("Destination"),PAGE_DEST,can_back,can_fwd,true);




More information about the mojosetup-commits mailing list