diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2016-07-24 18:39:16 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2016-07-24 18:44:15 +0900 |
commit | b94a7b5cb4ac172a3ee5f6f7ac616a7fdc849c3b (patch) | |
tree | 655d5f3c8b19df95db5c873b7182a1ae97864c8b /src/modules/ecore_imf | |
parent | 8c9adcb6161ac74ddf4649bd63e73149fea82e6c (diff) | |
download | efl-b94a7b5cb4ac172a3ee5f6f7ac616a7fdc849c3b.tar.gz |
ecore-imf - remove usueless checks for context - CID 1351451
useless checks for ic in code. fix
Diffstat (limited to 'src/modules/ecore_imf')
-rw-r--r-- | src/modules/ecore_imf/scim/scim_imcontext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/ecore_imf/scim/scim_imcontext.cpp b/src/modules/ecore_imf/scim/scim_imcontext.cpp index ba9dbe4256..4c56a2fc64 100644 --- a/src/modules/ecore_imf/scim/scim_imcontext.cpp +++ b/src/modules/ecore_imf/scim/scim_imcontext.cpp @@ -1413,8 +1413,8 @@ panel_slot_process_helper_event(int context, const String &target_uuid, const St EINA_SAFETY_ON_NULL_RETURN(ic->impl); SCIM_DEBUG_FRONTEND(1) << __FUNCTION__ << " context=" << context << " target=" << target_uuid - << " helper=" << helper_uuid << " ic=" << ic << " ic->impl=" << (ic ? ic->impl : 0) << " ic-uuid=" - << ((ic && ic->impl) ? ic->impl->si->get_factory_uuid() : "" ) << "\n"; + << " helper=" << helper_uuid << " ic=" << ic << " ic->impl=" << ic->impl << " ic-uuid=" + << (ic->impl ? ic->impl->si->get_factory_uuid() : "" ) << "\n"; if (ic->impl->si->get_factory_uuid() == target_uuid) { |