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/gtkiconfactory.h | |
parent | c6a44d849424ac77c478d56ff727ebc742d054b0 (diff) | |
download | gtk+-1e5d7c022596b7146638ef8bd74f544725f9bf2b.tar.gz |
Use GtkFooPrivate instead GtkFooPriv
Diffstat (limited to 'gtk/gtkiconfactory.h')
-rw-r--r-- | gtk/gtkiconfactory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkiconfactory.h b/gtk/gtkiconfactory.h index d51708a6dd..990b12a458 100644 --- a/gtk/gtkiconfactory.h +++ b/gtk/gtkiconfactory.h @@ -46,15 +46,15 @@ G_BEGIN_DECLS #define GTK_TYPE_ICON_SET (gtk_icon_set_get_type ()) #define GTK_TYPE_ICON_SOURCE (gtk_icon_source_get_type ()) -typedef struct _GtkIconFactoryPriv GtkIconFactoryPriv; -typedef struct _GtkIconFactoryClass GtkIconFactoryClass; +typedef struct _GtkIconFactoryPrivate GtkIconFactoryPrivate; +typedef struct _GtkIconFactoryClass GtkIconFactoryClass; struct _GtkIconFactory { GObject parent_instance; /* <private> */ - GtkIconFactoryPriv *priv; + GtkIconFactoryPrivate *priv; }; struct _GtkIconFactoryClass |