summaryrefslogtreecommitdiff
path: root/gtk/gtkassistant.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-01-19 16:51:21 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-01-19 16:51:21 +0000
commit292c69ac7d84600947dfa734c151a85e44147c51 (patch)
tree3b4fbd749f4ab47387bb6fc585929b3ca209a0bd /gtk/gtkassistant.h
parent108d88f725ab1542914ac9c3c904b7cd00b0f0dd (diff)
downloadgtk+-292c69ac7d84600947dfa734c151a85e44147c51.tar.gz
Use a priv pointer for cheap access to the priv struct. (#327725,
2006-01-19 Matthias Clasen <mclasen@redhat.com> * gtk/gtkassistant.[hc]: Use a priv pointer for cheap access to the priv struct. (#327725, Christian Persch)
Diffstat (limited to 'gtk/gtkassistant.h')
-rw-r--r--gtk/gtkassistant.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/gtk/gtkassistant.h b/gtk/gtkassistant.h
index b48c88cab3..2ffd11f17f 100644
--- a/gtk/gtkassistant.h
+++ b/gtk/gtkassistant.h
@@ -47,8 +47,9 @@ typedef enum
GTK_ASSISTANT_PAGE_PROGRESS
} GtkAssistantPageType;
-typedef struct _GtkAssistant GtkAssistant;
-typedef struct _GtkAssistantClass GtkAssistantClass;
+typedef struct _GtkAssistant GtkAssistant;
+typedef struct _GtkAssistantPrivate GtkAssistantPrivate;
+typedef struct _GtkAssistantClass GtkAssistantClass;
struct _GtkAssistant
{
@@ -60,6 +61,9 @@ struct _GtkAssistant
GtkWidget *apply;
GtkWidget *close;
GtkWidget *last;
+
+ /*< private >*/
+ GtkAssistantPrivate *priv;
};
struct _GtkAssistantClass