X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fwgt%2Fstep%2Fconfiguration%2Fstep_parse.cc;h=d40be87066419c45cbc56e179b507199ca97661b;hb=b97bf7f655b80c2695f353be0719082b91837611;hp=f9e1615e29278b948f084024b5b24aad431220f9;hpb=f21eec8229f67f7622e6df06287c04bd057c1287;p=platform%2Fcore%2Fappfw%2Fwgt-backend.git diff --git a/src/wgt/step/configuration/step_parse.cc b/src/wgt/step/configuration/step_parse.cc index f9e1615..d40be87 100644 --- a/src/wgt/step/configuration/step_parse.cc +++ b/src/wgt/step/configuration/step_parse.cc @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include #include @@ -860,15 +860,15 @@ bool StepParse::FillImeInfo() { } bool StepParse::FillLightUserInfo(manifest_x* manifest) { - auto lightuser_info = GetManifestDataForKey< + auto light_user_info = GetManifestDataForKey< const wgt::parse::LightUserInfo>(app_keys::kTizenLightUserKey); - if (!lightuser_info) { + if (!light_user_info) { manifest->light_user_switch_mode = strdup("default"); return true; } manifest->light_user_switch_mode = strdup( - lightuser_info->switch_mode().c_str()); + light_user_info->switch_mode().c_str()); return true; }