From 633d45747fa05b3401f50f62a5f53a83bd7e6374 Mon Sep 17 00:00:00 2001 From: Sungmin Kwak Date: Wed, 1 Jul 2015 13:22:21 +0900 Subject: [PATCH] Support Web IME in only wearable profile Change-Id: If2774d973bb05abf14b8d16597ab5a08ce019c52 --- ism/src/isf_query_utility.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ism/src/isf_query_utility.cpp b/ism/src/isf_query_utility.cpp index 12581db..72c9c43 100644 --- a/ism/src/isf_query_utility.cpp +++ b/ism/src/isf_query_utility.cpp @@ -1257,6 +1257,7 @@ static int _filtered_app_list_cb (const pkgmgrinfo_appinfo_h handle, void *user_ ime_db.is_preinstalled = 1; ime_db.has_option = 1; // Let's assume the inhouse IME always has an option menu. } +#ifdef _WEARABLE else if (ime_db.pkgtype.compare("wgt") == 0) //1 Download Web IME { ime_db.options = SCIM_HELPER_STAND_ALONE | SCIM_HELPER_NEED_SCREEN_INFO | SCIM_HELPER_AUTO_RESTART @@ -1274,6 +1275,7 @@ static int _filtered_app_list_cb (const pkgmgrinfo_appinfo_h handle, void *user_ } ime_db.has_option = -1; // At this point, we can't know IME has an option (setting) or not; -1 means unknown. } +#endif else if (ime_db.pkgtype.compare("tpk") == 0) //1 Download Native IME { ime_db.options = SCIM_HELPER_STAND_ALONE | SCIM_HELPER_NEED_SCREEN_INFO | SCIM_HELPER_AUTO_RESTART -- 2.7.4