From fc71989177d6f1971b2e2da83a117a4b5422e8a6 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 1 Dec 2004 20:23:48 +0000 Subject: [PATCH] Use the module's correct name in test. (#160122) 2004-12-01 Tor Lillqvist * modules/input/imime.c (im_module_create): Use the module's correct name in test. (#160122) --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ modules/input/imime.c | 2 +- 5 files changed, 21 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 720b8e56a0..7c8132afcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-12-01 Tor Lillqvist + + * modules/input/imime.c (im_module_create): Use the module's + correct name in test. (#160122) + 2004-12-01 Michael Natterer * gtk/gtkuimanager.[ch]: added virtual functions diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 720b8e56a0..7c8132afcc 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2004-12-01 Tor Lillqvist + + * modules/input/imime.c (im_module_create): Use the module's + correct name in test. (#160122) + 2004-12-01 Michael Natterer * gtk/gtkuimanager.[ch]: added virtual functions diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 720b8e56a0..7c8132afcc 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2004-12-01 Tor Lillqvist + + * modules/input/imime.c (im_module_create): Use the module's + correct name in test. (#160122) + 2004-12-01 Michael Natterer * gtk/gtkuimanager.[ch]: added virtual functions diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 720b8e56a0..7c8132afcc 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2004-12-01 Tor Lillqvist + + * modules/input/imime.c (im_module_create): Use the module's + correct name in test. (#160122) + 2004-12-01 Michael Natterer * gtk/gtkuimanager.[ch]: added virtual functions diff --git a/modules/input/imime.c b/modules/input/imime.c index 75291e1a3f..74d19703e4 100644 --- a/modules/input/imime.c +++ b/modules/input/imime.c @@ -60,7 +60,7 @@ im_module_create (const gchar * context_id) { g_return_val_if_fail (context_id, NULL); - if (!strcmp (context_id, "win32ime")) + if (!strcmp (context_id, "ime")) return g_object_new (GTK_TYPE_IM_CONTEXT_IME, NULL); else return NULL;