From b2f192faabe412adce79534e22efe9fb69ee40e2 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 21 Jul 2006 10:10:31 +0000 Subject: Rename /openembedded/ -> /meta/ git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- .../gtk+/gtk+-2.6.4-1.osso7/gtkimcontext.c.diff | 52 ---------------------- 1 file changed, 52 deletions(-) delete mode 100644 openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkimcontext.c.diff (limited to 'openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkimcontext.c.diff') diff --git a/openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkimcontext.c.diff b/openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkimcontext.c.diff deleted file mode 100644 index 03d990c6d..000000000 --- a/openembedded/packages/gtk+/gtk+-2.6.4-1.osso7/gtkimcontext.c.diff +++ /dev/null @@ -1,52 +0,0 @@ ---- gtk+-2.6.4/gtk/gtkimcontext.c 2004-09-26 07:23:56.000000000 +0300 -+++ gtk+-2.6.4/gtk/gtkimcontext.c 2005-04-06 16:19:36.814941640 +0300 -@@ -360,6 +360,44 @@ - } - - /** -+ * gtk_im_context_show: -+ * @context: a #GtkIMContext -+ * -+ * Notify the input method that widget thinks the actual -+ * input method show be opened. -+ **/ -+void -+gtk_im_context_show (GtkIMContext *context) -+{ -+ GtkIMContextClass *klass; -+ -+ g_return_if_fail (GTK_IS_IM_CONTEXT (context)); -+ -+ klass = GTK_IM_CONTEXT_GET_CLASS (context); -+ if (klass->show) -+ klass->show (context); -+} -+ -+/** -+ * gtk_im_context_hide: -+ * @context: a #GtkIMContext -+ * -+ * Notify the input method that widget thinks the actual -+ * input method show be closed. -+ **/ -+void -+gtk_im_context_hide (GtkIMContext *context) -+{ -+ GtkIMContextClass *klass; -+ -+ g_return_if_fail (GTK_IS_IM_CONTEXT (context)); -+ -+ klass = GTK_IM_CONTEXT_GET_CLASS (context); -+ if (klass->hide) -+ klass->hide (context); -+} -+ -+/** - * gtk_im_context_reset: - * @context: a #GtkIMContext - * -@@ -553,4 +591,3 @@ - - return result; - } -- -- cgit v1.2.3