summaryrefslogtreecommitdiff
path: root/gtk/gtkimcontextsimple.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-06-24 00:53:00 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-13 19:40:48 +0200
commit47e824a5e403999101d4f4e7a1ce92547cc6f584 (patch)
tree1588f13f803abcfa911e884f210acd5498c8e762 /gtk/gtkimcontextsimple.h
parentad3b5941ab14ddb15f7dc7e4e8cf09f32ee38126 (diff)
downloadgtk+-47e824a5e403999101d4f4e7a1ce92547cc6f584.tar.gz
GtkImageMenuItem: move public members to private structure
Diffstat (limited to 'gtk/gtkimcontextsimple.h')
-rw-r--r--gtk/gtkimcontextsimple.h11
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