summaryrefslogtreecommitdiff
path: root/gtk/gtkstyleprovider.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2017-06-18 13:17:00 +0200
committerMatthias Clasen <mclasen@redhat.com>2017-07-19 21:27:14 -0400
commite36ddfec177773ba993a8f8dcd566cf3fb3bb5aa (patch)
tree84ca109582e62ab1ae5f507fb0493151859f2d16 /gtk/gtkstyleprovider.c
parentcc60046ae914a39e2d3f03190e5c04296115c154 (diff)
downloadgtk+-e36ddfec177773ba993a8f8dcd566cf3fb3bb5aa.tar.gz
Remove all widget style property code
Diffstat (limited to 'gtk/gtkstyleprovider.c')
-rw-r--r--gtk/gtkstyleprovider.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/gtk/gtkstyleprovider.c b/gtk/gtkstyleprovider.c
index a604340024..2f5dddaf31 100644
--- a/gtk/gtkstyleprovider.c
+++ b/gtk/gtkstyleprovider.c
@@ -53,41 +53,3 @@ static void
gtk_style_provider_iface_init (gpointer g_iface)
{
}
-
-/**
- * gtk_style_provider_get_style_property:
- * @provider: a #GtkStyleProvider
- * @path: #GtkWidgetPath to query
- * @state: state to query the style property for
- * @pspec: The #GParamSpec to query
- * @value: (out): return location for the property value
- *
- * Looks up a widget style property as defined by @provider for
- * the widget represented by @path.
- *
- * Returns: %TRUE if the property was found and has a value, %FALSE otherwise
- *
- * Since: 3.0
- **/
-gboolean
-gtk_style_provider_get_style_property (GtkStyleProvider *provider,
- GtkWidgetPath *path,
- GtkStateFlags state,
- GParamSpec *pspec,
- GValue *value)
-{
- GtkStyleProviderIface *iface;
-
- g_return_val_if_fail (GTK_IS_STYLE_PROVIDER (provider), FALSE);
- g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
- g_return_val_if_fail (path != NULL, FALSE);
- g_return_val_if_fail (g_type_is_a (gtk_widget_path_get_object_type (path), pspec->owner_type), FALSE);
- g_return_val_if_fail (value != NULL, FALSE);
-
- iface = GTK_STYLE_PROVIDER_GET_IFACE (provider);
-
- if (!iface->get_style_property)
- return FALSE;
-
- return iface->get_style_property (provider, path, state, pspec, value);
-}