diff options
author | Cody Russell <bratsche@gnome.org> | 2008-02-09 04:03:25 +0000 |
---|---|---|
committer | Cody Russell <bratsche@src.gnome.org> | 2008-02-09 04:03:25 +0000 |
commit | d7292b61f86edb381655625ed52033f33050b851 (patch) | |
tree | 59e2e1be5e2889cf2fb2aefcb0a5201360d7ecc9 /gtk/gtkcombobox.c | |
parent | 65d16409ed27cc5e441ad44c8df11a6060b6cde5 (diff) | |
download | gtk+-d7292b61f86edb381655625ed52033f33050b851.tar.gz |
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
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r-- | gtk/gtkcombobox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index 1a61027ff7..b8d16f3c2d 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; |