diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-04-14 21:34:29 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-04-14 21:34:29 +0000 |
commit | a1fd4e4bac0a15d9338dc4a29e1c8b6d75c8d8f9 (patch) | |
tree | 642be8014fc07c7a24fa71189e1200898997c407 /gtk/gtkwidget.c | |
parent | 321cedab98b73823121073ef200aa6bc1cd8217b (diff) | |
download | gdk-pixbuf-a1fd4e4bac0a15d9338dc4a29e1c8b6d75c8d8f9.tar.gz |
Make all style properties readonly.
2004-04-14 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcombobox.c:
* gtk/gtkwidget.c:
Make all style properties readonly.
Diffstat (limited to 'gtk/gtkwidget.c')
-rw-r--r-- | gtk/gtkwidget.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index 14d27f7f9..098b0d447 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -1384,20 +1384,20 @@ gtk_widget_class_init (GtkWidgetClass *klass) P_("Focus linewidth"), P_("Width, in pixels, of the focus indicator line"), 0, G_MAXINT, 1, - G_PARAM_READWRITE)); + G_PARAM_READABLE)); gtk_widget_class_install_style_property (klass, g_param_spec_string ("focus-line-pattern", P_("Focus line dash pattern"), P_("Dash pattern used to draw the focus indicator"), "\1\1", - G_PARAM_READWRITE)); + G_PARAM_READABLE)); gtk_widget_class_install_style_property (klass, g_param_spec_int ("focus-padding", P_("Focus padding"), P_("Width, in pixels, between focus indicator and the widget 'box'"), 0, G_MAXINT, 1, - G_PARAM_READWRITE)); + G_PARAM_READABLE)); gtk_widget_class_install_style_property (klass, g_param_spec_boxed ("cursor-color", P_("Cursor color"), |