diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-09 06:15:13 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-09 06:15:13 +0000 |
commit | 52711c24e8b24c395f014de9d96019b728a28cf1 (patch) | |
tree | a14adea19950f5915458e44c9be22af11bf3855c /gtk/gtkcellview.c | |
parent | 263bce4445987c0ffee10438464106d55458f85e (diff) | |
download | gtk+-52711c24e8b24c395f014de9d96019b728a28cf1.tar.gz |
More canonical property names.
Diffstat (limited to 'gtk/gtkcellview.c')
-rw-r--r-- | gtk/gtkcellview.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcellview.c b/gtk/gtkcellview.c index 6642284943..1b1d8c2c93 100644 --- a/gtk/gtkcellview.c +++ b/gtk/gtkcellview.c @@ -185,7 +185,7 @@ gtk_cell_view_class_init (GtkCellViewClass *klass) G_PARAM_WRITABLE)); g_object_class_install_property (gobject_class, PROP_BACKGROUND_GDK, - g_param_spec_boxed ("background_gdk", + g_param_spec_boxed ("background-gdk", P_("Background color"), P_("Background color as a GdkColor"), GDK_TYPE_COLOR, @@ -193,7 +193,7 @@ gtk_cell_view_class_init (GtkCellViewClass *klass) #define ADD_SET_PROP(propname, propval, nick, blurb) g_object_class_install_property (gobject_class, propval, g_param_spec_boolean (propname, nick, blurb, FALSE, G_PARAM_READABLE | G_PARAM_WRITABLE)) - ADD_SET_PROP ("background_set", PROP_BACKGROUND_SET, + ADD_SET_PROP ("background-set", PROP_BACKGROUND_SET, P_("Background set"), P_("Whether this tag affects the background color")); |