Change pkgname to appid for docomo request. PART3
authorSoyoung Kim <sy037.kim@samsung.com>
Mon, 28 Jan 2013 07:49:10 +0000 (16:49 +0900)
committerSoyoung Kim <sy037.kim@samsung.com>
Mon, 28 Jan 2013 08:27:52 +0000 (17:27 +0900)
[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

src/configuration_parser/widget_parser.cpp

index 6926292..4dc3524 100755 (executable)
@@ -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") {