Reverting Change-Id: I56fc8553ed0f973913c666c200ae0ed29c703f37
Fix for N_SE-54310 is provided in Native UI Builder project
Change-Id: Ibc097adc56343f37382b486a72f211c8ecb6fb4f
Signed-off-by: Alok Mishra <alok.besu@samsung.com>
result
$(baseName)Frame::OnInitializing(void)
{
- result r = E_FAILURE;
// Prepare Scene management.
SceneManager* pSceneManager = SceneManager::GetInstance();
static $(baseName)FormFactory formFactory;
pSceneManager->RegisterScene(L"workflow");
// Go to the scene.
- r = pSceneManager->GoForward(SceneTransitionId(IDSCNT_MAIN_SCENE));
+ result r = pSceneManager->GoForward(SceneTransitionId(IDSCNT_MAIN_SCENE));
// TODO: Add your frame initialization code here.
return r;
result
$(baseName)Frame::OnInitializing(void)
{
- result r = E_FAILURE;
+
// Prepare Scene management.
SceneManager* pSceneManager = SceneManager::GetInstance();
static $(baseName)FormFactory formFactory;
pSceneManager->RegisterScene(L"workflow");
// Go to the scene.
- r = pSceneManager->GoForward(SceneTransitionId(IDSCNT_START));
+ result r = pSceneManager->GoForward(SceneTransitionId(IDSCNT_START));
// TODO: Add your frame initialization code here.
return r;