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/gtkimcontextsimple.h | |
parent | c6a44d849424ac77c478d56ff727ebc742d054b0 (diff) | |
download | gtk+-1e5d7c022596b7146638ef8bd74f544725f9bf2b.tar.gz |
Use GtkFooPrivate instead GtkFooPriv
Diffstat (limited to 'gtk/gtkimcontextsimple.h')
-rw-r--r-- | gtk/gtkimcontextsimple.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkimcontextsimple.h b/gtk/gtkimcontextsimple.h index ee02e1b53f..a215110c51 100644 --- a/gtk/gtkimcontextsimple.h +++ b/gtk/gtkimcontextsimple.h @@ -38,9 +38,9 @@ G_BEGIN_DECLS #define GTK_IM_CONTEXT_SIMPLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IM_CONTEXT_SIMPLE, GtkIMContextSimpleClass)) -typedef struct _GtkIMContextSimple GtkIMContextSimple; -typedef struct _GtkIMContextSimplePriv GtkIMContextSimplePriv; -typedef struct _GtkIMContextSimpleClass GtkIMContextSimpleClass; +typedef struct _GtkIMContextSimple GtkIMContextSimple; +typedef struct _GtkIMContextSimplePrivate GtkIMContextSimplePrivate; +typedef struct _GtkIMContextSimpleClass GtkIMContextSimpleClass; #define GTK_MAX_COMPOSE_LEN 7 @@ -49,7 +49,7 @@ struct _GtkIMContextSimple GtkIMContext object; /* <private> */ - GtkIMContextSimplePriv *priv; + GtkIMContextSimplePrivate *priv; }; struct _GtkIMContextSimpleClass |