themingengine: Remove now unused private API

This commit is contained in:
Benjamin Otte 2014-06-16 04:53:14 +02:00
parent 9e4fc66e9a
commit 9ca04c0f9d
2 changed files with 0 additions and 21 deletions

View File

@ -343,23 +343,6 @@ _gtk_theming_engine_set_context (GtkThemingEngine *engine,
priv->context = context;
}
GtkStyleContext *
_gtk_theming_engine_get_context (GtkThemingEngine *engine)
{
g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), NULL);
return engine->priv->context;
}
GtkCssValue *
_gtk_theming_engine_peek_property (GtkThemingEngine *engine,
guint property_id)
{
g_return_val_if_fail (GTK_IS_THEMING_ENGINE (engine), NULL);
return _gtk_style_context_peek_property (engine->priv->context, property_id);
}
/**
* gtk_theming_engine_get_property:
* @engine: a #GtkThemingEngine

View File

@ -27,12 +27,8 @@ G_BEGIN_DECLS
void _gtk_theming_engine_paint_spinner (cairo_t *cr,
gdouble radius,
gdouble progress);
GtkCssValue *_gtk_theming_engine_peek_property (GtkThemingEngine *engine,
guint property_id);
void _gtk_theming_engine_set_context (GtkThemingEngine *engine,
GtkStyleContext *context);
GtkStyleContext *_gtk_theming_engine_get_context (GtkThemingEngine *engine);
G_END_DECLS