Commit 440b279fb19841d77d0633cdb9ae78368d115f01
1 parent
1b1ac201
Add Demo build time to version popup
Change-Id: Ie9124cb86ae54abc5109dcea6734914953ec9a69
Showing
1 changed file
with
2 additions
and
0 deletions
shared/dali-table-view.cpp
| ... | ... | @@ -95,6 +95,7 @@ const unsigned int BACKGROUND_ANIMATION_DURATION = 15000; // 15 secs |
| 95 | 95 | const float BUBBLE_MIN_Z = -1.0; |
| 96 | 96 | const float BUBBLE_MAX_Z = 0.0f; |
| 97 | 97 | |
| 98 | +const char * const DEMO_BUILD_DATE = __DATE__ " " __TIME__; | |
| 98 | 99 | |
| 99 | 100 | /** |
| 100 | 101 | * Creates the background image |
| ... | ... | @@ -905,6 +906,7 @@ void DaliTableView::OnLogoTapped( Dali::Actor actor, const Dali::TapGesture& tap |
| 905 | 906 | stream << "DALi Core: " << CORE_MAJOR_VERSION << "." << CORE_MINOR_VERSION << "." << CORE_MICRO_VERSION << std::endl << "(" << CORE_BUILD_DATE << ")\n"; |
| 906 | 907 | stream << "DALi Adaptor: " << ADAPTOR_MAJOR_VERSION << "." << ADAPTOR_MINOR_VERSION << "." << ADAPTOR_MICRO_VERSION << std::endl << "(" << ADAPTOR_BUILD_DATE << ")\n"; |
| 907 | 908 | stream << "DALi Toolkit: " << TOOLKIT_MAJOR_VERSION << "." << TOOLKIT_MINOR_VERSION << "." << TOOLKIT_MICRO_VERSION << std::endl << "(" << TOOLKIT_BUILD_DATE << ")\n"; |
| 909 | + stream << "DALi Demo:" << "\n(" << DEMO_BUILD_DATE << ")\n"; | |
| 908 | 910 | |
| 909 | 911 | mVersionPopup = Dali::Toolkit::Popup::New(); |
| 910 | 912 | ... | ... |