diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-06-24 00:53:00 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-07-13 19:40:48 +0200 |
commit | 47e824a5e403999101d4f4e7a1ce92547cc6f584 (patch) | |
tree | 1588f13f803abcfa911e884f210acd5498c8e762 /gtk/gtkimcontextsimple.h | |
parent | ad3b5941ab14ddb15f7dc7e4e8cf09f32ee38126 (diff) | |
download | gtk+-47e824a5e403999101d4f4e7a1ce92547cc6f584.tar.gz |
GtkImageMenuItem: move public members to private structure
Diffstat (limited to 'gtk/gtkimcontextsimple.h')
-rw-r--r-- | gtk/gtkimcontextsimple.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gtk/gtkimcontextsimple.h b/gtk/gtkimcontextsimple.h index 8017c314f8..ee02e1b53f 100644 --- a/gtk/gtkimcontextsimple.h +++ b/gtk/gtkimcontextsimple.h @@ -39,6 +39,7 @@ G_BEGIN_DECLS typedef struct _GtkIMContextSimple GtkIMContextSimple; +typedef struct _GtkIMContextSimplePriv GtkIMContextSimplePriv; typedef struct _GtkIMContextSimpleClass GtkIMContextSimpleClass; #define GTK_MAX_COMPOSE_LEN 7 @@ -47,14 +48,8 @@ struct _GtkIMContextSimple { GtkIMContext object; - GSList *GSEAL (tables); - - guint GSEAL (compose_buffer[GTK_MAX_COMPOSE_LEN + 1]); - gunichar GSEAL (tentative_match); - gint GSEAL (tentative_match_len); - - guint GSEAL (in_hex_sequence) : 1; - guint GSEAL (modifiers_dropped) : 1; + /* <private> */ + GtkIMContextSimplePriv *priv; }; struct _GtkIMContextSimpleClass |