summaryrefslogtreecommitdiff
path: root/gtk/gtksettings.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-07-03 08:34:02 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-07-03 08:35:34 -0400
commit196b9f8eea3f61be7635866b9d44118c5e30349f (patch)
tree64828a17301c2937459eefd7b9f22c984f6dedab /gtk/gtksettings.c
parent52efbb11ec0082ae31a8939979205594339a42e8 (diff)
downloadgtk+-196b9f8eea3f61be7635866b9d44118c5e30349f.tar.gz
GtkSettings: fully undeprecate blink settings
We decided in f8412eca34be6e2e655ad3e09bd97fa2bdcbdae0 that we still need to react to these for a11y reasons, but left the (then) harmless property deprecation in place. Now, the deprecation causes runtime warnings for merely reading the property, so drop it. https://bugzilla.gnome.org/show_bug.cgi?id=732667
Diffstat (limited to 'gtk/gtksettings.c')
-rw-r--r--gtk/gtksettings.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c
index 26e8be7cc4..361334a2db 100644
--- a/gtk/gtksettings.c
+++ b/gtk/gtksettings.c
@@ -393,7 +393,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
P_("Cursor Blink"),
P_("Whether the cursor should blink"),
TRUE,
- GTK_PARAM_READWRITE | G_PARAM_DEPRECATED),
+ GTK_PARAM_READWRITE ),
NULL);
g_assert (result == PROP_CURSOR_BLINK);
result = settings_install_property_parser (class,
@@ -401,7 +401,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
P_("Cursor Blink Time"),
P_("Length of the cursor blink cycle, in milliseconds"),
100, G_MAXINT, 1200,
- GTK_PARAM_READWRITE | G_PARAM_DEPRECATED),
+ GTK_PARAM_READWRITE),
NULL);
g_assert (result == PROP_CURSOR_BLINK_TIME);
@@ -421,7 +421,7 @@ gtk_settings_class_init (GtkSettingsClass *class)
P_("Cursor Blink Timeout"),
P_("Time after which the cursor stops blinking, in seconds"),
1, G_MAXINT, 10,
- GTK_PARAM_READWRITE | G_PARAM_DEPRECATED),
+ GTK_PARAM_READWRITE),
NULL);
g_assert (result == PROP_CURSOR_BLINK_TIMEOUT);
result = settings_install_property_parser (class,