diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-01-19 16:51:21 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-01-19 16:51:21 +0000 |
commit | 292c69ac7d84600947dfa734c151a85e44147c51 (patch) | |
tree | 3b4fbd749f4ab47387bb6fc585929b3ca209a0bd /gtk/gtkassistant.h | |
parent | 108d88f725ab1542914ac9c3c904b7cd00b0f0dd (diff) | |
download | gtk+-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.h | 8 |
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 |