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/gtkseparator.h | |
parent | c6a44d849424ac77c478d56ff727ebc742d054b0 (diff) | |
download | gtk+-1e5d7c022596b7146638ef8bd74f544725f9bf2b.tar.gz |
Use GtkFooPrivate instead GtkFooPriv
Diffstat (limited to 'gtk/gtkseparator.h')
-rw-r--r-- | gtk/gtkseparator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkseparator.h b/gtk/gtkseparator.h index b1a416756e..64096cd3e4 100644 --- a/gtk/gtkseparator.h +++ b/gtk/gtkseparator.h @@ -45,15 +45,15 @@ G_BEGIN_DECLS #define GTK_SEPARATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SEPARATOR, GtkSeparatorClass)) -typedef struct _GtkSeparator GtkSeparator; -typedef struct _GtkSeparatorPriv GtkSeparatorPriv; -typedef struct _GtkSeparatorClass GtkSeparatorClass; +typedef struct _GtkSeparator GtkSeparator; +typedef struct _GtkSeparatorPrivate GtkSeparatorPrivate; +typedef struct _GtkSeparatorClass GtkSeparatorClass; struct _GtkSeparator { GtkWidget widget; - GtkSeparatorPriv *priv; + GtkSeparatorPrivate *priv; }; struct _GtkSeparatorClass |