diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-08-26 19:15:37 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-08-27 04:48:23 +0200 |
commit | 1e5d7c022596b7146638ef8bd74f544725f9bf2b (patch) | |
tree | 61505bd6664441c672463e0d3c085aa199a8dbd8 /gtk/gtkspinbutton.h | |
parent | c6a44d849424ac77c478d56ff727ebc742d054b0 (diff) | |
download | gtk+-1e5d7c022596b7146638ef8bd74f544725f9bf2b.tar.gz |
Use GtkFooPrivate instead GtkFooPriv
Diffstat (limited to 'gtk/gtkspinbutton.h')
-rw-r--r-- | gtk/gtkspinbutton.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkspinbutton.h b/gtk/gtkspinbutton.h index ba38984f26..2e431631cf 100644 --- a/gtk/gtkspinbutton.h +++ b/gtk/gtkspinbutton.h @@ -68,9 +68,9 @@ typedef enum } GtkSpinType; -typedef struct _GtkSpinButton GtkSpinButton; -typedef struct _GtkSpinButtonPriv GtkSpinButtonPriv; -typedef struct _GtkSpinButtonClass GtkSpinButtonClass; +typedef struct _GtkSpinButton GtkSpinButton; +typedef struct _GtkSpinButtonPrivate GtkSpinButtonPrivate; +typedef struct _GtkSpinButtonClass GtkSpinButtonClass; struct _GtkSpinButton @@ -78,7 +78,7 @@ struct _GtkSpinButton GtkEntry entry; /* <private> */ - GtkSpinButtonPriv *priv; + GtkSpinButtonPrivate *priv; }; struct _GtkSpinButtonClass |