From d7292b61f86edb381655625ed52033f33050b851 Mon Sep 17 00:00:00 2001 From: Cody Russell Date: Sat, 9 Feb 2008 04:03:25 +0000 Subject: [PATCH] Removed an extra semicolon. (#515219, reported by Kazuki IWAMOTO) 2008-02-08 Cody Russell * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_start): Removed an extra semicolon. (#515219, reported by Kazuki IWAMOTO) svn path=/trunk/; revision=19502 --- ChangeLog | 5 +++++ gtk/gtkcombobox.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index af7a3df35..0969cf36c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-08 Cody Russell + + * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_start): + Removed an extra semicolon. (#515219, reported by Kazuki IWAMOTO) + 2008-02-08 Richard Hult * gdk/quartz/gdkevents-quartz.c (gdk_event_translate): Ignore the diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index 1a61027ff..b8d16f3c2 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -4067,7 +4067,7 @@ gtk_combo_box_cell_layout_pack_start (GtkCellLayout *layout, GtkCellRenderer *cell, gboolean expand) { - GtkComboBox *combo_box = GTK_COMBO_BOX (layout);; + GtkComboBox *combo_box = GTK_COMBO_BOX (layout); ComboCellInfo *info; GtkComboBoxPrivate *priv;