forked from AuroraMiddleware/gtk
themingengine: Use the default way of indicating privates
This commit is contained in:
parent
9e36bea907
commit
b0b287f7b5
@ -5727,6 +5727,7 @@ GTK_THEMING_ENGINE_GET_CLASS
|
||||
GTK_IS_THEMING_ENGINE
|
||||
GTK_IS_THEMING_ENGINE_CLASS
|
||||
<SUBSECTION Private>
|
||||
GtkThemingEnginePrivate
|
||||
GTK_TYPE_THEMING_ENGINE
|
||||
gtk_theming_engine_get_type
|
||||
</SECTION>
|
||||
|
@ -55,8 +55,6 @@
|
||||
* style information contained in the rendered object's #GtkStyleContext.
|
||||
*/
|
||||
|
||||
typedef struct GtkThemingEnginePrivate GtkThemingEnginePrivate;
|
||||
|
||||
enum {
|
||||
SIDE_LEFT = 1,
|
||||
SIDE_BOTTOM = 1 << 1,
|
||||
|
@ -41,12 +41,13 @@ G_BEGIN_DECLS
|
||||
#define GTK_THEMING_ENGINE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GTK_TYPE_THEMING_ENGINE, GtkThemingEngineClass))
|
||||
|
||||
typedef struct _GtkThemingEngine GtkThemingEngine;
|
||||
typedef struct GtkThemingEnginePrivate GtkThemingEnginePrivate;
|
||||
typedef struct _GtkThemingEngineClass GtkThemingEngineClass;
|
||||
|
||||
struct _GtkThemingEngine
|
||||
{
|
||||
GObject parent_object;
|
||||
gpointer priv;
|
||||
GtkThemingEnginePrivate *priv;
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user