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/gtksizegroup.h | |
parent | c6a44d849424ac77c478d56ff727ebc742d054b0 (diff) | |
download | gtk+-1e5d7c022596b7146638ef8bd74f544725f9bf2b.tar.gz |
Use GtkFooPrivate instead GtkFooPriv
Diffstat (limited to 'gtk/gtksizegroup.h')
-rw-r--r-- | gtk/gtksizegroup.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtksizegroup.h b/gtk/gtksizegroup.h index ec39c710d8..a014881ce5 100644 --- a/gtk/gtksizegroup.h +++ b/gtk/gtksizegroup.h @@ -37,16 +37,16 @@ G_BEGIN_DECLS #define GTK_SIZE_GROUP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SIZE_GROUP, GtkSizeGroupClass)) -typedef struct _GtkSizeGroup GtkSizeGroup; -typedef struct _GtkSizeGroupPriv GtkSizeGroupPriv; -typedef struct _GtkSizeGroupClass GtkSizeGroupClass; +typedef struct _GtkSizeGroup GtkSizeGroup; +typedef struct _GtkSizeGroupPrivate GtkSizeGroupPrivate; +typedef struct _GtkSizeGroupClass GtkSizeGroupClass; struct _GtkSizeGroup { GObject parent_instance; /* <private> */ - GtkSizeGroupPriv *priv; + GtkSizeGroupPrivate *priv; }; struct _GtkSizeGroupClass |