projects
/
platform
/
core
/
uifw
/
ui-viewmgr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b24f902
)
Revert "examples/cpp: update example to be practical."
38/73338/1
author
Hermet Park
<hermet@hermet.pe.kr>
Tue, 7 Jun 2016 15:29:02 +0000
(
00:29
+0900)
committer
Hermet Park
<hermet@hermet.pe.kr>
Tue, 7 Jun 2016 15:29:44 +0000
(
00:29
+0900)
This reverts commit
b24f9024c5b321653f6d330156945b698c185c56
.
no... this caused a side-effect.
Change-Id: Ieaa7767250a39ca9d62c5f8ed8257ee4e5da1da2
src/examples/efl/cpp/main.cpp
patch
|
blob
|
history
diff --git
a/src/examples/efl/cpp/main.cpp
b/src/examples/efl/cpp/main.cpp
index 7b29607d4218e6e060c39f1c7ca81062d7531c87..2f3de6f3e7908d234b38f626e73c2441e8cd40ed 100644
(file)
--- a/
src/examples/efl/cpp/main.cpp
+++ b/
src/examples/efl/cpp/main.cpp
@@
-44,12
+44,17
@@
public:
}
protected:
-
void on_control(app_control_h app_control
)
+
bool on_create(
)
{
- ui_app::on_control(app_control);
+ if (!ui_app::on_create())
+ {
+ return false;
+ }
//Push first view in viewmgr.
UI_VIEWMGR->push_view(new page1());
+
+ return true;
}
};