From: Soyoung Kim Date: Mon, 28 Jan 2013 07:49:10 +0000 (+0900) Subject: Change pkgname to appid for docomo request. PART3 X-Git-Tag: accepted/tizen_2.1/20130425.023916~20^2~19^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23dd2fc2b13bc6c587c0b3f0a52625e8f3b82d67;p=framework%2Fweb%2Fwrt-installer.git Change pkgname to appid for docomo request. PART3 [Issue#] N/A [Problem] if there is a space in appid, widget installation failed. [Cause] To compare appid doesn't permit space. [Solution] remove space at appid. [SCMRequest] N/A --- diff --git a/src/configuration_parser/widget_parser.cpp b/src/configuration_parser/widget_parser.cpp index 6926292..4dc3524 100755 --- a/src/configuration_parser/widget_parser.cpp +++ b/src/configuration_parser/widget_parser.cpp @@ -1506,6 +1506,7 @@ class ApplicationParser : public ElementParser LogDebug("attribute"); if (attribute.name == L"id") { m_id = attribute.value; + NormalizeAndTrimSpaceString(m_version); } else if (attribute.name == L"package") { m_package = attribute.value; } else if (attribute.name == L"required_version") {