Removed an extra semicolon. (#515219, reported by Kazuki IWAMOTO)

2008-02-08  Cody Russell  <bratsche@gnome.org>

        * gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_start):
        Removed an extra semicolon.  (#515219, reported by Kazuki IWAMOTO)


svn path=/trunk/; revision=19502
This commit is contained in:
Cody Russell
2008-02-09 04:03:25 +00:00
committed by Cody Russell
parent 65d16409ed
commit d7292b61f8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-02-08 Cody Russell <bratsche@gnome.org>
* gtk/gtkcombobox.c (gtk_combo_box_cell_layout_pack_start):
Removed an extra semicolon. (#515219, reported by Kazuki IWAMOTO)
2008-02-08 Richard Hult <richard@imendio.com>
* gdk/quartz/gdkevents-quartz.c (gdk_event_translate): Ignore the

View File

@ -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;