diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2013-06-30 12:57:44 -0400 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2013-06-30 12:57:44 -0400 |
commit | c6ca2374ccc60d57fc13afaa6264cce46462b144 (patch) | |
tree | 95d9b7e3bc347d354d4ff47f47ee273972d71d20 /gtk/gtksettings.c | |
parent | d1817e7a5dcbe26348e32809a55dba31b9448356 (diff) | |
download | gtk+-c6ca2374ccc60d57fc13afaa6264cce46462b144.tar.gz |
Deprecate and ignore gtk-im-status-style and gtk-im-preedit-style
Diffstat (limited to 'gtk/gtksettings.c')
-rw-r--r-- | gtk/gtksettings.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c index 8f75eea0e5..ead90aaafd 100644 --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -1438,6 +1438,13 @@ gtk_settings_class_init (GtkSettingsClass *class) NULL); g_assert (result == PROP_COLOR_PALETTE); + /** + * GtkSettings:gtk-im-preedit-style: + * + * How to draw the input method preedit string. + * + * Deprecated: 3.10: This setting is ignored. + */ result = settings_install_property_parser (class, g_param_spec_enum ("gtk-im-preedit-style", P_("IM Preedit style"), @@ -1448,6 +1455,13 @@ gtk_settings_class_init (GtkSettingsClass *class) gtk_rc_property_parse_enum); g_assert (result == PROP_IM_PREEDIT_STYLE); + /** + * GtkSettings:gtk-im-status-style: + * + * How to draw the input method statusbar. + * + * Deprecated: 3.10: This setting is ignored. + */ result = settings_install_property_parser (class, g_param_spec_enum ("gtk-im-status-style", P_("IM Status style"), |