diff options
author | Timm Bäder <mail@baedert.org> | 2018-07-08 09:39:05 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2018-07-08 09:41:15 +0200 |
commit | 2854635850269e9b2184cd99a62e869642b0a07a (patch) | |
tree | c6988333a5419bcd8cb58f35874ee40ff917fb37 /gtk/gtkscalebutton.h | |
parent | a976aa9740b90fd4e0ae5ac9086de2022fea4640 (diff) | |
download | gtk+-2854635850269e9b2184cd99a62e869642b0a07a.tar.gz |
scalebutton: Remove priv pointer
Diffstat (limited to 'gtk/gtkscalebutton.h')
-rw-r--r-- | gtk/gtkscalebutton.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gtk/gtkscalebutton.h b/gtk/gtkscalebutton.h index 0f01cbf5bf..1fc7ecdab2 100644 --- a/gtk/gtkscalebutton.h +++ b/gtk/gtkscalebutton.h @@ -51,14 +51,10 @@ G_BEGIN_DECLS typedef struct _GtkScaleButton GtkScaleButton; typedef struct _GtkScaleButtonClass GtkScaleButtonClass; -typedef struct _GtkScaleButtonPrivate GtkScaleButtonPrivate; struct _GtkScaleButton { - GtkButton parent; - - /*< private >*/ - GtkScaleButtonPrivate *priv; + GtkButton parent_instance; }; struct _GtkScaleButtonClass |