Commit 06bd7af1f41051697c4087f5f995419c201f2678
1 parent
49b40ef5
(Visual Transitions) Ensure all parameters are initialized in the constructor
Change-Id: I7ce54d7bee33741b634bb51a5653b4a08e0958bc
Showing
1 changed file
with
5 additions
and
1 deletions
examples/transitions/transition-application.cpp
| ... | ... | @@ -40,7 +40,11 @@ const char* TransitionApplication::DEMO_THEME_ONE_PATH( DEMO_STYLE_DIR "style-ex |
| 40 | 40 | |
| 41 | 41 | |
| 42 | 42 | TransitionApplication::TransitionApplication( Application& application ) |
| 43 | -: mApplication( application ) | |
| 43 | +: mApplication( application ), | |
| 44 | + mTitle(), | |
| 45 | + mBeatControl(), | |
| 46 | + mActionButtons(), | |
| 47 | + mActionIndex( Property::INVALID_INDEX ) | |
| 44 | 48 | { |
| 45 | 49 | application.InitSignal().Connect( this, &TransitionApplication::Create ); |
| 46 | 50 | } | ... | ... |