diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-11-17 22:56:25 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-11-17 22:56:25 -0500 |
commit | 8c06cd5f98ea6ad999b174211b1affb6ba281777 (patch) | |
tree | a3043df1a4aa83be0f5d85265c0bff0d39ebb522 /gtk/gtkcssstyleproperty.c | |
parent | ffd6baec42b12cbbf5b1088e367ab6c8259ac5cb (diff) | |
download | gtk+-8c06cd5f98ea6ad999b174211b1affb6ba281777.tar.gz |
styleproperty: Use G_PARAM_STATIC_STRINGS
Diffstat (limited to 'gtk/gtkcssstyleproperty.c')
-rw-r--r-- | gtk/gtkcssstyleproperty.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkcssstyleproperty.c b/gtk/gtkcssstyleproperty.c index ef087198e6..5f3e114057 100644 --- a/gtk/gtkcssstyleproperty.c +++ b/gtk/gtkcssstyleproperty.c @@ -188,7 +188,7 @@ _gtk_css_style_property_class_init (GtkCssStylePropertyClass *klass) P_("Animated"), P_("Set if the value can be animated"), FALSE, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_AFFECTS, g_param_spec_flags ("affects", @@ -196,28 +196,28 @@ _gtk_css_style_property_class_init (GtkCssStylePropertyClass *klass) P_("Set if the value affects the sizing of elements"), GTK_TYPE_CSS_AFFECTS, 0, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_ID, g_param_spec_uint ("id", P_("ID"), P_("The numeric id for quick access"), 0, G_MAXUINT, 0, - G_PARAM_READABLE)); + G_PARAM_READABLE | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_INHERIT, g_param_spec_boolean ("inherit", P_("Inherit"), P_("Set if the value is inherited by default"), FALSE, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_INITIAL, g_param_spec_boxed ("initial-value", P_("Initial value"), P_("The initial specified value used for this property"), GTK_TYPE_CSS_VALUE, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); + G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS)); property_class->query = _gtk_css_style_property_query; property_class->parse_value = gtk_css_style_property_parse_value; |