summaryrefslogtreecommitdiff
path: root/gtk/gtkimcontextsimple.c
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2002-10-10 22:20:48 +0000
committerManish Singh <yosh@src.gnome.org>2002-10-10 22:20:48 +0000
commit5d021465d6709bc1d6a5c9fca0a7a27546e4b8f1 (patch)
tree1c398c68a3676f96b1a9f05cfadba0eba1d7fa89 /gtk/gtkimcontextsimple.c
parent62341005d165089fd30ad3ac7b093a3d8221ccab (diff)
downloadgtk+-5d021465d6709bc1d6a5c9fca0a7a27546e4b8f1.tar.gz
Deprecation cleanup
Thu Oct 10 15:13:48 2002 Manish Singh <yosh@gimp.org> * gtk/gtkimcontext.[ch] gtk/gtkimcontextsimple.[ch] gtk/gtkimmodule.c gtk/gtkimmulticontext.[ch] gtk/gtktreestore.[ch]: Deprecation cleanup
Diffstat (limited to 'gtk/gtkimcontextsimple.c')
-rw-r--r--gtk/gtkimcontextsimple.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/gtk/gtkimcontextsimple.c b/gtk/gtkimcontextsimple.c
index 1a1771b62e..e88c3f282a 100644
--- a/gtk/gtkimcontextsimple.c
+++ b/gtk/gtkimcontextsimple.c
@@ -21,7 +21,6 @@
#include <gdk/gdkkeysyms.h>
#include "gtkaccelgroup.h"
-#include "gtksignal.h"
#include "gtkimcontextsimple.h"
typedef struct _GtkComposeTable GtkComposeTable;
@@ -864,10 +863,10 @@ static void gtk_im_context_simple_get_preedit_string (GtkIMContext
static GObjectClass *parent_class;
-GtkType
+GType
gtk_im_context_simple_get_type (void)
{
- static GtkType im_context_simple_type = 0;
+ static GType im_context_simple_type = 0;
if (!im_context_simple_type)
{
@@ -884,9 +883,9 @@ gtk_im_context_simple_get_type (void)
(GInstanceInitFunc) gtk_im_context_simple_init,
};
- im_context_simple_type = g_type_register_static (GTK_TYPE_IM_CONTEXT,
- "GtkIMContextSimple",
- &im_context_simple_info, 0);
+ im_context_simple_type =
+ g_type_register_static (GTK_TYPE_IM_CONTEXT, "GtkIMContextSimple",
+ &im_context_simple_info, 0);
}
return im_context_simple_type;
@@ -937,7 +936,7 @@ gtk_im_context_simple_finalize (GObject *obj)
GtkIMContext *
gtk_im_context_simple_new (void)
{
- return GTK_IM_CONTEXT (g_object_new (GTK_TYPE_IM_CONTEXT_SIMPLE, NULL));
+ return g_object_new (GTK_TYPE_IM_CONTEXT_SIMPLE, NULL);
}
static void