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)
This commit is contained in:
Tor Lillqvist 2004-12-01 20:23:48 +00:00 committed by Tor Lillqvist
parent d22df32c73
commit fc71989177
5 changed files with 21 additions and 1 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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;