themingengine: move _gtk_theming_engine_set_context to private header

Where it belongs.
This commit is contained in:
Cosimo Cecchi 2012-02-08 16:09:15 -05:00 committed by Matthias Clasen
parent 8f201d62d9
commit 4e37d56d51
3 changed files with 3 additions and 4 deletions

View File

@ -27,7 +27,7 @@
#include "gtkstylecontextprivate.h"
#include "gtkstylepropertiesprivate.h"
#include "gtktypebuiltins.h"
#include "gtkthemingengine.h"
#include "gtkthemingengineprivate.h"
#include "gtkintl.h"
#include "gtkwidget.h"
#include "gtkwindow.h"

View File

@ -182,9 +182,6 @@ struct _GtkThemingEngineClass
GType gtk_theming_engine_get_type (void) G_GNUC_CONST;
void _gtk_theming_engine_set_context (GtkThemingEngine *engine,
GtkStyleContext *context);
/* function implemented in gtkcsscustomproperty.c */
void gtk_theming_engine_register_property (const gchar *name_space,
GtkStylePropertyParser parse_func,

View File

@ -33,5 +33,7 @@ const GValue *_gtk_theming_engine_peek_property (GtkThemingEngine *engine,
double _gtk_theming_engine_get_number (GtkThemingEngine *engine,
const char *property_name,
double one_hundred_percent);
void _gtk_theming_engine_set_context (GtkThemingEngine *engine,
GtkStyleContext *context);
#endif /* __GTK_THEMING_ENGINE_PRIVATE_H__ */