summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2004-12-01 20:23:48 +0000
committerTor Lillqvist <tml@src.gnome.org>2004-12-01 20:23:48 +0000
commitfc71989177d6f1971b2e2da83a117a4b5422e8a6 (patch)
tree8ee7bc0cf7ec544aeffb06cff95860e55bcca3ba
parentd22df32c733e6042f5fba27d54c40852262c8fd2 (diff)
downloadgtk+-fc71989177d6f1971b2e2da83a117a4b5422e8a6.tar.gz
Use the module's correct name in test. (#160122)
2004-12-01 Tor Lillqvist <tml@iki.fi> * modules/input/imime.c (im_module_create): Use the module's correct name in test. (#160122)
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-65
-rw-r--r--ChangeLog.pre-2-85
-rw-r--r--modules/input/imime.c2
5 files changed, 21 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 720b8e56a0..7c8132afcc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-01 Tor Lillqvist <tml@iki.fi>
+
+ * modules/input/imime.c (im_module_create): Use the module's
+ correct name in test. (#160122)
+
2004-12-01 Michael Natterer <mitch@gimp.org>
* 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 <tml@iki.fi>
+
+ * modules/input/imime.c (im_module_create): Use the module's
+ correct name in test. (#160122)
+
2004-12-01 Michael Natterer <mitch@gimp.org>
* 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 <tml@iki.fi>
+
+ * modules/input/imime.c (im_module_create): Use the module's
+ correct name in test. (#160122)
+
2004-12-01 Michael Natterer <mitch@gimp.org>
* 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 <tml@iki.fi>
+
+ * modules/input/imime.c (im_module_create): Use the module's
+ correct name in test. (#160122)
+
2004-12-01 Michael Natterer <mitch@gimp.org>
* 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;