summaryrefslogtreecommitdiff
path: root/gtk/gtkcombobox.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-06-04 00:57:03 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-06-04 00:57:03 +0000
commit4d33f2c956971aca56176bb0b33dd7eab544293d (patch)
tree180d0a307f66c18a2bbaea5b8826ea16954bc6ae /gtk/gtkcombobox.c
parentf48ad7c0cc50ae1111700c8398ba33e79b42eb21 (diff)
downloadgtk+-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.c4
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));
/**