From f3f0570a598432c752007f427ce3a372dfe704ab Mon Sep 17 00:00:00 2001 From: Richard Huang Date: Mon, 11 Aug 2014 12:03:34 +0100 Subject: [PATCH] Updates after deprecated APIs removed from Adaptor Change-Id: Icfa59efe128131186ef4403b5f3567dd8d87eb8a --- demo/dali-table-view.cpp | 2 +- examples/cluster/cluster-example.cpp | 2 +- .../image-scaling-irregular-grid-example.cpp | 2 +- examples/magnifier/magnifier-example.cpp | 2 +- examples/scroll-view/scroll-view-example.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/demo/dali-table-view.cpp b/demo/dali-table-view.cpp index c23ded1f..ae21628d 100644 --- a/demo/dali-table-view.cpp +++ b/demo/dali-table-view.cpp @@ -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 ); diff --git a/examples/cluster/cluster-example.cpp b/examples/cluster/cluster-example.cpp index b6f16e3a..a2bd9b33 100644 --- a/examples/cluster/cluster-example.cpp +++ b/examples/cluster/cluster-example.cpp @@ -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. diff --git a/examples/image/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp b/examples/image/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp index aa70492a..869c6dab 100644 --- a/examples/image/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp +++ b/examples/image/image-scaling-irregular-grid/image-scaling-irregular-grid-example.cpp @@ -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, diff --git a/examples/magnifier/magnifier-example.cpp b/examples/magnifier/magnifier-example.cpp index 19593306..43026655 100644 --- a/examples/magnifier/magnifier-example.cpp +++ b/examples/magnifier/magnifier-example.cpp @@ -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. diff --git a/examples/scroll-view/scroll-view-example.cpp b/examples/scroll-view/scroll-view-example.cpp index 67b72d29..979038fc 100644 --- a/examples/scroll-view/scroll-view-example.cpp +++ b/examples/scroll-view/scroll-view-example.cpp @@ -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. -- 2.34.1