Fixup formatting.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-07-24 07:11:32 +01:00
parent 8ed4b5ac84
commit 1832bf5c03
1 changed files with 6 additions and 6 deletions

View File

@ -102,17 +102,17 @@ im_module_create()
{
if (!strcmp(global->interface, "wl_text_input_manager"))
{
text_input_manager = wl_registry_bind(registry, global->id, &wl_text_input_manager_interface, 1);
EINA_LOG_DOM_INFO(_ecore_imf_wayland_log_dom, "bound wl_text_input_manager interface");
text_input_manager =
wl_registry_bind(registry, global->id,
&wl_text_input_manager_interface, 1);
EINA_LOG_DOM_INFO(_ecore_imf_wayland_log_dom,
"bound wl_text_input_manager interface");
}
}
}
ctxd = wayland_im_context_new(text_input_manager);
if (!ctxd)
{
return NULL;
}
if (!ctxd) return NULL;
ctx = ecore_imf_context_new(&wayland_imf_class);
if (!ctx)