Updates after deprecated APIs removed from Adaptor 65/25865/1
authorRichard Huang <r.huang@samsung.com>
Mon, 11 Aug 2014 11:03:34 +0000 (12:03 +0100)
committerRichard Huang <r.huang@samsung.com>
Mon, 11 Aug 2014 11:03:34 +0000 (12:03 +0100)
Change-Id: Icfa59efe128131186ef4403b5f3567dd8d87eb8a

demo/dali-table-view.cpp
examples/cluster/cluster-example.cpp
examples/image/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp
examples/magnifier/magnifier-example.cpp
examples/scroll-view/scroll-view-example.cpp

index c23ded1..ae21628 100644 (file)
@@ -352,7 +352,7 @@ void DaliTableView::Initialize( Application& application )
   Dali::Orientation orientation = winHandle.GetOrientation();
   orientation.ChangedSignal().Connect( this, &DaliTableView::OrientationChanged );
 
-  winHandle.ShowIndicator( false );
+  winHandle.ShowIndicator( Dali::Window::INVISIBLE );
 
   //
   mAnimationTimer = Timer::New( BACKGROUND_ANIMATION_DURATION );
index b6f16e3..a2bd9b3 100644 (file)
@@ -490,7 +490,7 @@ public:
     // The Init signal is received once (only) during the Application lifetime
 
     // Hide the indicator bar
-    application.GetWindow().ShowIndicator( false );
+    application.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
 
     // Creates a default view with a default tool bar.
     // The view is added to the stage.
index aa70492..869c6da 100644 (file)
@@ -295,7 +295,7 @@ public:
     stage.KeyEventSignal().Connect(this, &ImageScalingIrregularGridController::OnKeyEvent);
 
     // Hide the indicator bar
-    mApplication.GetWindow().ShowIndicator(false);
+    mApplication.GetWindow().ShowIndicator(Dali::Window::INVISIBLE);
 
     // Create a default view with a default tool bar:
     mContentLayer = DemoHelper::CreateView( mApplication,
index 1959330..4302665 100644 (file)
@@ -210,7 +210,7 @@ public:
     // The Init signal is received once (only) during the Application lifetime
 
     // Hide the indicator bar
-    application.GetWindow().ShowIndicator( false );
+    application.GetWindow().ShowIndicator( Dali::Window::INVISIBLE );
 
     // Creates a default view with a default tool bar.
     // The view is added to the stage.
index 67b72d2..979038f 100644 (file)
@@ -187,7 +187,7 @@ public:
     Stage::GetCurrent().KeyEventSignal().Connect(this, &ExampleController::OnKeyEvent);
 
     // Hide the indicator bar
-    mApplication.GetWindow().ShowIndicator(false);
+    mApplication.GetWindow().ShowIndicator(Dali::Window::INVISIBLE);
 
     // Creates a default view with a default tool bar.
     // The view is added to the stage.