summaryrefslogtreecommitdiffstats
path: root/src/ege-select-one-action.cpp
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2010-04-20 07:24:42 +0000
committerJon A. Cruz <jon@joncruz.org>2010-04-20 07:24:42 +0000
commit4a6cc1d59a19db2c1c18d67ed2cfcba17e28fb02 (patch)
tree8344e2f19646f54c94743e9dd55aaa59579183a8 /src/ege-select-one-action.cpp
parentAdded completion entry for editable lists. (diff)
downloadinkscape-4a6cc1d59a19db2c1c18d67ed2cfcba17e28fb02.tar.gz
inkscape-4a6cc1d59a19db2c1c18d67ed2cfcba17e28fb02.zip
Drop short limit on propery values.
(bzr r9357)
Diffstat (limited to 'src/ege-select-one-action.cpp')
-rw-r--r--src/ege-select-one-action.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ege-select-one-action.cpp b/src/ege-select-one-action.cpp
index 9a5d22963..ebc7ea26d 100644
--- a/src/ege-select-one-action.cpp
+++ b/src/ege-select-one-action.cpp
@@ -186,7 +186,7 @@ void ege_select_one_action_class_init( EgeSelectOneActionClass* klass )
g_param_spec_int( "active",
"Active Selection",
"The index of the selected item",
- -1, 20, 0,
+ -1, G_MAXINT, 0,
(GParamFlags)(G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT) ) );
g_object_class_install_property( objClass,
@@ -194,7 +194,7 @@ void ege_select_one_action_class_init( EgeSelectOneActionClass* klass )
g_param_spec_int( "label-column",
"Display Column",
"The column of the model that holds display strings",
- 0, 20, 0,
+ 0, G_MAXINT, 0,
(GParamFlags)(G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT) ) );
g_object_class_install_property( objClass,
@@ -202,7 +202,7 @@ void ege_select_one_action_class_init( EgeSelectOneActionClass* klass )
g_param_spec_int( "icon-column",
"Icon Column",
"The column of the model that holds display icon name",
- -1, 20, -1,
+ -1, G_MAXINT, -1,
(GParamFlags)(G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT) ) );
g_object_class_install_property( objClass,
@@ -210,7 +210,7 @@ void ege_select_one_action_class_init( EgeSelectOneActionClass* klass )
g_param_spec_int( "tooltip-column",
"Tooltip Column",
"The column of the model that holds tooltip strings",
- -1, 20, -1,
+ -1, G_MAXINT, -1,
(GParamFlags)(G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT) ) );
g_object_class_install_property( objClass,
@@ -226,7 +226,7 @@ void ege_select_one_action_class_init( EgeSelectOneActionClass* klass )
g_param_spec_int( "icon-size",
"Icon Size",
"Target icon size",
- -1, 20, -1,
+ -1, G_MAXINT, -1,
(GParamFlags)(G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT) ) );
g_object_class_install_property( objClass,