diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-09-21 23:36:05 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-09-21 23:50:55 -0400 |
commit | d137f74fe9cc3dfcd0087e9342b5f51f87f3aeb5 (patch) | |
tree | be76b54542f0d145ce71cb72abc58b0e5516cee2 /gtk/gtkstackswitcher.h | |
parent | 4b13b93394e7c28eb1263558b063db8ace912f3b (diff) | |
download | gtk+-d137f74fe9cc3dfcd0087e9342b5f51f87f3aeb5.tar.gz |
Remove priv pointer from GtkStackSwitcher
This is a new widget, so lets avoid the unnecessary
priv pointer while we still can.
Diffstat (limited to 'gtk/gtkstackswitcher.h')
-rw-r--r-- | gtk/gtkstackswitcher.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gtk/gtkstackswitcher.h b/gtk/gtkstackswitcher.h index da52f3a9aa..402b83778c 100644 --- a/gtk/gtkstackswitcher.h +++ b/gtk/gtkstackswitcher.h @@ -32,15 +32,11 @@ G_BEGIN_DECLS #define GTK_STACK_SWITCHER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_STACK_SWITCHER, GtkStackSwitcherClass)) typedef struct _GtkStackSwitcher GtkStackSwitcher; -typedef struct _GtkStackSwitcherPrivate GtkStackSwitcherPrivate; typedef struct _GtkStackSwitcherClass GtkStackSwitcherClass; struct _GtkStackSwitcher { GtkBox widget; - - /*< private >*/ - GtkStackSwitcherPrivate *priv; }; struct _GtkStackSwitcherClass |