From: Jihoon Kim Date: Thu, 13 Aug 2015 09:30:18 +0000 (+0900) Subject: Fix build error on TV profile X-Git-Tag: accepted/tizen/mobile/20150814.011455~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3eae86e214a13392602081e7cae9202683d682ed;p=platform%2Fcore%2Fuifw%2Fise-default.git Fix build error on TV profile Change-Id: If32058a6fd2890e39fb95c1e0982d9237641a766 --- diff --git a/src/ise.cpp b/src/ise.cpp index 3cdbb66..770f58a 100755 --- a/src/ise.cpp +++ b/src/ise.cpp @@ -1038,6 +1038,7 @@ ise_create() if (utils) { utils->get_screen_resolution(&nwidth, &nheight); } +#ifndef _TV if ((480 == nwidth) && (800 == nheight)) { entry_path = MAIN_ENTRY_XML_PATH_480X800; } @@ -1047,6 +1048,7 @@ ise_create() else if ((1440 == nwidth) && (2560 == nheight)) { entry_path = MAIN_ENTRY_XML_PATH_1440X2560; } +#endif _language_manager.set_resource_file_path(entry_path); const sclchar *resource_file_path = _language_manager.get_resource_file_path();