Remove priv pointer from GtkStackSwitcher

This is a new widget, so lets avoid the unnecessary
priv pointer while we still can.
This commit is contained in:
Matthias Clasen
2013-09-21 23:36:05 -04:00
parent 4b13b93394
commit d137f74fe9
2 changed files with 48 additions and 25 deletions

View File

@ -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