projects
/
platform
/
upstream
/
ibus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ceaeb86
)
Fix typo in ibusfactory.c.
author
Yusuke Sato
<yusukes@chromium.org>
Tue, 3 Apr 2012 09:31:47 +0000
(18:31 +0900)
committer
Yusuke Sato
<yusukes@chromium.org>
Tue, 3 Apr 2012 09:31:47 +0000
(18:31 +0900)
BUG=None
TEST=None
Review URL: https://codereview.appspot.com/
5969068
src/ibusfactory.c
patch
|
blob
|
history
diff --git
a/src/ibusfactory.c
b/src/ibusfactory.c
index d6d12311e33b268f5b385971067e253dc5d493ea..c25280fedb60ca8c60decd231e09477045a797ea 100644
(file)
--- a/
src/ibusfactory.c
+++ b/
src/ibusfactory.c
@@
-352,10
+352,10
@@
ibus_factory_new (GDBusConnection *connection)
{
g_return_val_if_fail (G_IS_DBUS_CONNECTION (connection), NULL);
- IBus
Engine
*object = g_object_new (IBUS_TYPE_FACTORY,
- "object-path", IBUS_PATH_FACTORY,
- "connection", connection,
- NULL);
+ IBus
Factory
*object = g_object_new (IBUS_TYPE_FACTORY,
+
"object-path", IBUS_PATH_FACTORY,
+
"connection", connection,
+
NULL);
return IBUS_FACTORY (object);
}