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; return NULL;
} }
/**
* gtk_settings_install_property:
* @pspec:
*
* Deprecated: 3.16: This function is not useful outside GTK+.
*/
void void
gtk_settings_install_property (GParamSpec *pspec) gtk_settings_install_property (GParamSpec *pspec)
{ {
@ -2252,6 +2258,8 @@ gtk_settings_install_property (GParamSpec *pspec)
* gtk_settings_install_property_parser: * gtk_settings_install_property_parser:
* @pspec: * @pspec:
* @parser: (scope call): * @parser: (scope call):
*
* Deprecated: 3.16: This function is not useful outside GTK+.
*/ */
void void
gtk_settings_install_property_parser (GParamSpec *pspec, gtk_settings_install_property_parser (GParamSpec *pspec,

View File

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