Commit f3f0570a598432c752007f427ce3a372dfe704ab

Authored by Richard Huang
1 parent 9699bb5b

Updates after deprecated APIs removed from Adaptor

Change-Id: Icfa59efe128131186ef4403b5f3567dd8d87eb8a
demo/dali-table-view.cpp
... ... @@ -352,7 +352,7 @@ void DaliTableView::Initialize( Application& application )
352 352 Dali::Orientation orientation = winHandle.GetOrientation();
353 353 orientation.ChangedSignal().Connect( this, &DaliTableView::OrientationChanged );
354 354  
355   - winHandle.ShowIndicator( false );
  355 + winHandle.ShowIndicator( Dali::Window::INVISIBLE );
356 356  
357 357 //
358 358 mAnimationTimer = Timer::New( BACKGROUND_ANIMATION_DURATION );
... ...
examples/cluster/cluster-example.cpp
... ... @@ -490,7 +490,7 @@ public:
490 490 // The Init signal is received once (only) during the Application lifetime
491 491  
492 492 // Hide the indicator bar
493   - application.GetWindow().ShowIndicator( false );
  493 + application.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
494 494  
495 495 // Creates a default view with a default tool bar.
496 496 // The view is added to the stage.
... ...
examples/image/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp
... ... @@ -295,7 +295,7 @@ public:
295 295 stage.KeyEventSignal().Connect(this, &ImageScalingIrregularGridController::OnKeyEvent);
296 296  
297 297 // Hide the indicator bar
298   - mApplication.GetWindow().ShowIndicator(false);
  298 + mApplication.GetWindow().ShowIndicator(Dali::Window::INVISIBLE);
299 299  
300 300 // Create a default view with a default tool bar:
301 301 mContentLayer = DemoHelper::CreateView( mApplication,
... ...
examples/magnifier/magnifier-example.cpp
... ... @@ -210,7 +210,7 @@ public:
210 210 // The Init signal is received once (only) during the Application lifetime
211 211  
212 212 // Hide the indicator bar
213   - application.GetWindow().ShowIndicator( false );
  213 + application.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
214 214  
215 215 // Creates a default view with a default tool bar.
216 216 // The view is added to the stage.
... ...
examples/scroll-view/scroll-view-example.cpp
... ... @@ -187,7 +187,7 @@ public:
187 187 Stage::GetCurrent().KeyEventSignal().Connect(this, &ExampleController::OnKeyEvent);
188 188  
189 189 // Hide the indicator bar
190   - mApplication.GetWindow().ShowIndicator(false);
  190 + mApplication.GetWindow().ShowIndicator(Dali::Window::INVISIBLE);
191 191  
192 192 // Creates a default view with a default tool bar.
193 193 // The view is added to the stage.
... ...