diff --git a/ChangeLog b/ChangeLog index 0a7fd99100..858c2275e0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 3 14:29:49 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove + accidentally committed debug code. + Tue Aug 3 01:19:12 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 0a7fd99100..858c2275e0 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Tue Aug 3 14:29:49 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove + accidentally committed debug code. + Tue Aug 3 01:19:12 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 0a7fd99100..858c2275e0 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Tue Aug 3 14:29:49 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove + accidentally committed debug code. + Tue Aug 3 01:19:12 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 0a7fd99100..858c2275e0 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Tue Aug 3 14:29:49 2004 Matthias Clasen + + * gtk/gtkcombobox.c (gtk_combo_box_menu_fill): Remove + accidentally committed debug code. + Tue Aug 3 01:19:12 2004 Matthias Clasen * gtk/gtkcombobox.c (gtk_combo_box_relayout_item): Optimize diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index ab71bf83bf..01d79e86b5 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -3965,7 +3965,6 @@ void gtk_combo_box_set_wrap_width (GtkComboBox *combo_box, gint width) { - GTimer *timer; g_return_if_fail (GTK_IS_COMBO_BOX (combo_box)); g_return_if_fail (width >= 0); @@ -3973,16 +3972,8 @@ gtk_combo_box_set_wrap_width (GtkComboBox *combo_box, { combo_box->priv->wrap_width = width; - timer = g_timer_new (); - g_timer_start (timer); - gtk_combo_box_check_appearance (combo_box); - g_timer_stop (timer); - g_print ("check appearance in %lf seconds\n", g_timer_elapsed (timer, NULL)); - g_timer_reset (timer); - g_timer_start (timer); gtk_combo_box_relayout (combo_box); - g_print ("relayout in %lf seconds\n", g_timer_elapsed (timer, NULL)); g_object_notify (G_OBJECT (combo_box), "wrap_width"); }