From 47ee06cd035e2d78f204ec536a7f254b0b70d576 Mon Sep 17 00:00:00 2001 From: Jihoon Chung Date: Sun, 31 Mar 2013 17:29:31 +0900 Subject: [PATCH] [Release] wrt_0.8.173 --- data/Daemon.edc | 4 ++++ packaging/wrt.spec | 4 ++-- src/view/common/view_logic_apps_support.cpp | 6 +++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/data/Daemon.edc b/data/Daemon.edc index 84af808..21ea853 100644 --- a/data/Daemon.edc +++ b/data/Daemon.edc @@ -4,6 +4,7 @@ collections { parts { part { name: "base"; + scale: 1; type: RECT; description { state: "default" 0.0; @@ -15,6 +16,7 @@ collections { } part { name: "elm.swallow.content"; + scale: 1; type: SWALLOW; description { state: "default" 0.0; @@ -48,6 +50,7 @@ collections { } part { name: "elm.rect.comboboxPickerBG"; + scale: 1; type: RECT; mouse_events: 0; description { @@ -69,6 +72,7 @@ collections { } part { name: "elm.swallow.comboboxPicker"; + scale: 1; type: SWALLOW; mouse_events: 1; description { diff --git a/packaging/wrt.spec b/packaging/wrt.spec index 43c95b8..61ec9c8 100644 --- a/packaging/wrt.spec +++ b/packaging/wrt.spec @@ -1,7 +1,7 @@ -#git:framework/web/wrt wrt_0.8.171 +#git:framework/web/wrt wrt_0.8.173 Name: wrt Summary: web runtime -Version: 0.8.171 +Version: 0.8.173 Release: 1 Group: Development/Libraries License: Apache License, Version 2.0 diff --git a/src/view/common/view_logic_apps_support.cpp b/src/view/common/view_logic_apps_support.cpp index 78c96d9..02f57f9 100644 --- a/src/view/common/view_logic_apps_support.cpp +++ b/src/view/common/view_logic_apps_support.cpp @@ -141,7 +141,7 @@ class AppsSupportImplementation mimeType << ", " << userParam << ")"); // ignore case match of string of mime type - int isAppServiceable = httpMultimediaRequest( + bool isAppServiceable = httpMultimediaRequest( mimeType ? std::string(mimeType) : "null", url ? std::string(url) : "null"); @@ -155,8 +155,8 @@ class AppsSupportImplementation ApplicationLauncherEvents::LaunchApplicationByPkgname( ApplicationLauncherPkgname::PKG_NAME_DOWNLOAD_PROVIDER, url ? std::string(url) : "null", - !mimeType && strlen(mimeType) != 0 ? mimeType : "null", - !userParam && strlen(userParam) != 0 ? userParam : "null")); + mimeType && strlen(mimeType) != 0 ? mimeType : "null", + userParam && strlen(userParam) != 0 ? userParam : "null")); } void html5VideoRequest(void* event_info) -- 2.7.4