summaryrefslogtreecommitdiff
path: root/gtk/gtkseparator.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-08-26 18:00:09 +0200
committerJavier Jardón <jjardon@gnome.org>2010-08-26 18:00:09 +0200
commitc6a44d849424ac77c478d56ff727ebc742d054b0 (patch)
tree0fcbbaa9dcfde083d1586a01394e62814d19144b /gtk/gtkseparator.h
parent8d983a4547a37d93e88960ea0c64cca67f9bbd29 (diff)
downloadgtk+-c6a44d849424ac77c478d56ff727ebc742d054b0.tar.gz
gtk/gtkseparator: Do not use GET_PRIVATE macro all the time
Use a private pointer instead
Diffstat (limited to 'gtk/gtkseparator.h')
-rw-r--r--gtk/gtkseparator.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkseparator.h b/gtk/gtkseparator.h
index 6b3e519395..b1a416756e 100644
--- a/gtk/gtkseparator.h
+++ b/gtk/gtkseparator.h
@@ -46,11 +46,14 @@ G_BEGIN_DECLS
typedef struct _GtkSeparator GtkSeparator;
+typedef struct _GtkSeparatorPriv GtkSeparatorPriv;
typedef struct _GtkSeparatorClass GtkSeparatorClass;
struct _GtkSeparator
{
GtkWidget widget;
+
+ GtkSeparatorPriv *priv;
};
struct _GtkSeparatorClass