summaryrefslogtreecommitdiff
path: root/gtk/gtkentryprivate.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-08-06 03:32:59 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-08-06 03:32:59 +0000
commitc8b214680d1e8ad6295855c079e725030fa5ba71 (patch)
treebab5ed9d2aed0fd910643c658fe24b0d1e861da1 /gtk/gtkentryprivate.h
parent3495a602a3fbe7c40d4057996a6dc6e0914d84fe (diff)
downloadgtk+-c8b214680d1e8ad6295855c079e725030fa5ba71.tar.gz
Export gtk_entry_reset_im_context privately.
2006-08-05 Matthias Clasen <mclasen@redhat.com> * gtk/gtkentry.c: * gtk/gtkentryprivate.h: Export gtk_entry_reset_im_context privately. * gtk/gtkentrycompletion.c (gtk_entry_completion_action_button_press): * gtk/gtkentry.c (gtk_entry_completion_key_press): Reset the entry's im context here. (#348478, Nguyen Thai Ngoc Duy, Christian Persch)
Diffstat (limited to 'gtk/gtkentryprivate.h')
-rw-r--r--gtk/gtkentryprivate.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/gtk/gtkentryprivate.h b/gtk/gtkentryprivate.h
index 75f11297f0..9330912904 100644
--- a/gtk/gtkentryprivate.h
+++ b/gtk/gtkentryprivate.h
@@ -24,6 +24,7 @@
#include <gtk/gtktreemodelfilter.h>
#include <gtk/gtkliststore.h>
#include <gtk/gtkentrycompletion.h>
+#include <gtk/gtkentry.h>
G_BEGIN_DECLS
@@ -66,9 +67,11 @@ struct _GtkEntryCompletionPrivate
GSource *check_completion_idle;
};
-gboolean _gtk_entry_completion_resize_popup (GtkEntryCompletion *completion);
-void _gtk_entry_completion_popup (GtkEntryCompletion *completion);
-void _gtk_entry_completion_popdown (GtkEntryCompletion *completion);
+gboolean _gtk_entry_completion_resize_popup (GtkEntryCompletion *completion);
+void _gtk_entry_completion_popup (GtkEntryCompletion *completion);
+void _gtk_entry_completion_popdown (GtkEntryCompletion *completion);
+
+void _gtk_entry_reset_im_context (GtkEntry *entry);
G_END_DECLS