diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-06-04 00:57:03 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-06-04 00:57:03 +0000 |
commit | 4d33f2c956971aca56176bb0b33dd7eab544293d (patch) | |
tree | 180d0a307f66c18a2bbaea5b8826ea16954bc6ae /gtk/gtkcombobox.c | |
parent | f48ad7c0cc50ae1111700c8398ba33e79b42eb21 (diff) | |
download | gtk+-4d33f2c956971aca56176bb0b33dd7eab544293d.tar.gz |
Fix the al lowed values and default value for the ::active property.
Thu Jun 3 20:51:23 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcombobox.c (gtk_combo_box_class_init): Fix the al lowed
values and default value for the ::active property. (#143669,
Olivier Andrieu)
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r-- | gtk/gtkcombobox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index 08d32ef962..05cd83869c 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -502,9 +502,9 @@ gtk_combo_box_class_init (GtkComboBoxClass *klass) g_param_spec_int ("active", P_("Active item"), P_("The item which is currently active"), - 0, + -1, G_MAXINT, - 0, + -1, G_PARAM_READWRITE)); /** |