diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-08-25 20:00:00 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-08-25 20:00:00 +0000 |
commit | c1ce74bbc5190fa79cdef712f6f36d829e40e8ef (patch) | |
tree | ef03b30a139b9356c785f78bb51fac8a39c7317e /gtk/gtksizegroup.c | |
parent | 50efeb816ca7d8ff333992ff25de909d1a3fc440 (diff) | |
download | gtk+-c1ce74bbc5190fa79cdef712f6f36d829e40e8ef.tar.gz |
Fix a typo, noticed by Tim Janik.
2004-08-25 Matthias Clasen <mclasen@redhat.com>
* gtk/gtksizegroup.c (gtk_size_group_add_widget): Fix
a typo, noticed by Tim Janik.
Diffstat (limited to 'gtk/gtksizegroup.c')
-rw-r--r-- | gtk/gtksizegroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtksizegroup.c b/gtk/gtksizegroup.c index 13bc515f38..3a86420136 100644 --- a/gtk/gtksizegroup.c +++ b/gtk/gtksizegroup.c @@ -415,7 +415,7 @@ gtk_size_group_add_widget (GtkSizeGroup *size_group, groups = get_size_groups (widget); - if (!g_slist_find (groups, widget)) + if (!g_slist_find (groups, size_group)) { groups = g_slist_prepend (groups, size_group); set_size_groups (widget, groups); |