Deprecate gtk_settings_install_property APIs

These are not useful outside GTK+.
This commit is contained in:
Matthias Clasen 2014-10-19 22:33:24 -04:00
parent 8889565735
commit ce915dc6f0
2 changed files with 10 additions and 2 deletions

View File

@ -2231,6 +2231,12 @@ _gtk_rc_property_parser_from_type (GType type)
return NULL;
}
/**
* gtk_settings_install_property:
* @pspec:
*
* Deprecated: 3.16: This function is not useful outside GTK+.
*/
void
gtk_settings_install_property (GParamSpec *pspec)
{
@ -2252,6 +2258,8 @@ gtk_settings_install_property (GParamSpec *pspec)
* gtk_settings_install_property_parser:
* @pspec:
* @parser: (scope call):
*
* Deprecated: 3.16: This function is not useful outside GTK+.
*/
void
gtk_settings_install_property_parser (GParamSpec *pspec,

View File

@ -92,9 +92,9 @@ GtkSettings* gtk_settings_get_default (void);
GDK_AVAILABLE_IN_ALL
GtkSettings* gtk_settings_get_for_screen (GdkScreen *screen);
GDK_AVAILABLE_IN_ALL
GDK_DEPRECATED_IN_3_16
void gtk_settings_install_property (GParamSpec *pspec);
GDK_AVAILABLE_IN_ALL
GDK_DEPRECATED_IN_3_16
void gtk_settings_install_property_parser (GParamSpec *pspec,
GtkRcPropertyParser parser);