From: Junghoon Park Date: Fri, 9 Sep 2016 07:33:42 +0000 (+0900) Subject: Add app type handler for widget-application X-Git-Tag: accepted/tizen/common/20160920.131800~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7815a63495d5bc93d90bd5f6469c417e45b65e4;p=platform%2Fcore%2Fappfw%2Fapp-installers.git Add app type handler for widget-application - require : https://review.tizen.org/gerrit/#/c/87713/ Change-Id: I13f30ec983a6cc2fa03eaf8ada0fc383a10cda3c Signed-off-by: Junghoon Park --- diff --git a/src/common/step/configuration/step_parse_manifest.cc b/src/common/step/configuration/step_parse_manifest.cc index 3e4f398..727a99d 100644 --- a/src/common/step/configuration/step_parse_manifest.cc +++ b/src/common/step/configuration/step_parse_manifest.cc @@ -325,7 +325,8 @@ bool StepParseManifest::FillWidgetApplication(manifest_x* manifest) { widget_app->nodisplay = strdup("true"); widget_app->taskmanage = strdup("false"); widget_app->indicatordisplay = strdup("false"); - widget_app->type = strdup("capp"); + widget_app->type = + strdup(application.app_info.type().c_str()); widget_app->component_type = strdup("widgetapp"); widget_app->hwacceleration = strdup(application.app_info.hwacceleration().c_str());