From: Hermet Park Date: Tue, 29 Mar 2016 00:35:33 +0000 (+0900) Subject: revise example code. X-Git-Tag: submit/tizen/20160617.075742~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a85cbea99871905860a82794d4d196371e92c1a5;p=platform%2Fcore%2Fuifw%2Fui-viewmgr.git revise example code. no logical changes. Change-Id: I50ddcedc88eaf99a55cc4c3b0245cb53328f5715 --- diff --git a/src/examples/efl/page14.h b/src/examples/efl/page14.h index 35259f9..5fb77be 100644 --- a/src/examples/efl/page14.h +++ b/src/examples/efl/page14.h @@ -27,7 +27,7 @@ protected: void on_load() { //Create a main content. - Evas_Object *content = create_content(this->get_base(), "ViewMgr Demo
Page 14
zoom transition effect", + Evas_Object *content = create_content(this->get_base(), "ViewMgr Demo
Page 14
(Zoom Transition)", //Prev Button Callback [](void *data, Evas_Object *obj, void *event_info) -> void { @@ -42,13 +42,13 @@ protected: }, this->ad); - this->set_transition_style("zoom"); this->set_content(content, "Title"); } public: page14(appdata_s *ad) : ui_view("page14"), ad(ad) { + this->set_transition_style("zoom"); ad->viewmgr->push_view(this); } diff --git a/src/examples/efl/page15.h b/src/examples/efl/page15.h index 5e6aa45..b4e32a5 100644 --- a/src/examples/efl/page15.h +++ b/src/examples/efl/page15.h @@ -27,7 +27,7 @@ protected: void on_load() { //Create a main content. - Evas_Object *content = create_content(this->get_base(), "ViewMgr Demo
Page 15
none transition effect", + Evas_Object *content = create_content(this->get_base(), "ViewMgr Demo
Page 15
(None Transition)", //Prev Button Callback [](void *data, Evas_Object *obj, void *event_info) -> void { @@ -42,13 +42,13 @@ protected: }, this->ad); - this->set_transition_style("none"); this->set_content(content, "Title"); } public: page15(appdata_s *ad) : ui_view("page15"), ad(ad) { + this->set_transition_style("none"); ad->viewmgr->push_view(this); }