From cb24bde9744a7bd99793edc79d5180c0a1d3bed1 Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Tue, 12 Nov 2019 15:15:19 +0900 Subject: [PATCH] Revert "[Tizen] (Vector) Remove 'const' from GetLayerInfo method" This reverts commit 54e44470680b30b99590f2d2ddaf75f676cc698f. Change-Id: Icc019b6eaa72f15312812517af2de594672e63ef --- dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h | 2 +- dali/devel-api/adaptor-framework/vector-animation-renderer.cpp | 2 +- dali/devel-api/adaptor-framework/vector-animation-renderer.h | 2 +- .../internal/vector-animation/common/vector-animation-renderer-impl.cpp | 2 +- dali/internal/vector-animation/common/vector-animation-renderer-impl.h | 2 +- .../vector-animation/common/vector-animation-renderer-plugin-proxy.cpp | 2 +- .../vector-animation/common/vector-animation-renderer-plugin-proxy.h | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h b/dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h index efcd011..a640f3c 100644 --- a/dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h +++ b/dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h @@ -106,7 +106,7 @@ public: * * @param[out] map The layer information */ - virtual void GetLayerInfo( Property::Map& map ) = 0; + virtual void GetLayerInfo( Property::Map& map ) const = 0; /** * @brief Connect to this signal to be notified when the texture upload is completed. diff --git a/dali/devel-api/adaptor-framework/vector-animation-renderer.cpp b/dali/devel-api/adaptor-framework/vector-animation-renderer.cpp index 692b485..f55d839 100755 --- a/dali/devel-api/adaptor-framework/vector-animation-renderer.cpp +++ b/dali/devel-api/adaptor-framework/vector-animation-renderer.cpp @@ -89,7 +89,7 @@ void VectorAnimationRenderer::GetDefaultSize( uint32_t& width, uint32_t& height GetImplementation( *this ).GetDefaultSize( width, height ); } -void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) +void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) const { GetImplementation( *this ).GetLayerInfo( map ); } diff --git a/dali/devel-api/adaptor-framework/vector-animation-renderer.h b/dali/devel-api/adaptor-framework/vector-animation-renderer.h index 440670c..5db1122 100755 --- a/dali/devel-api/adaptor-framework/vector-animation-renderer.h +++ b/dali/devel-api/adaptor-framework/vector-animation-renderer.h @@ -134,7 +134,7 @@ public: * * @param[out] map The layer information */ - void GetLayerInfo( Property::Map& map ); + void GetLayerInfo( Property::Map& map ) const; public: // Signals diff --git a/dali/internal/vector-animation/common/vector-animation-renderer-impl.cpp b/dali/internal/vector-animation/common/vector-animation-renderer-impl.cpp index 0ec3ef0..b1e3a17 100644 --- a/dali/internal/vector-animation/common/vector-animation-renderer-impl.cpp +++ b/dali/internal/vector-animation/common/vector-animation-renderer-impl.cpp @@ -95,7 +95,7 @@ void VectorAnimationRenderer::GetDefaultSize( uint32_t& width, uint32_t& height mPlugin.GetDefaultSize( width, height ); } -void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) +void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) const { mPlugin.GetLayerInfo( map ); } diff --git a/dali/internal/vector-animation/common/vector-animation-renderer-impl.h b/dali/internal/vector-animation/common/vector-animation-renderer-impl.h index ef588e1..5ede97e 100755 --- a/dali/internal/vector-animation/common/vector-animation-renderer-impl.h +++ b/dali/internal/vector-animation/common/vector-animation-renderer-impl.h @@ -89,7 +89,7 @@ public: /** * @copydoc Dali::VectorAnimationRenderer::GetLayerInfo() */ - void GetLayerInfo( Property::Map& map ); + void GetLayerInfo( Property::Map& map ) const; /** * @copydoc Dali::VectorAnimationRenderer::UploadCompletedSignal() diff --git a/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp b/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp index 721fedd..009312b 100644 --- a/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp +++ b/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp @@ -161,7 +161,7 @@ void VectorAnimationRendererPluginProxy::GetDefaultSize( uint32_t& width, uint32 } } -void VectorAnimationRendererPluginProxy::GetLayerInfo( Property::Map& map ) +void VectorAnimationRendererPluginProxy::GetLayerInfo( Property::Map& map ) const { if( mPlugin ) { diff --git a/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h b/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h index 5b77b4c..17ba06b 100644 --- a/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h +++ b/dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h @@ -85,7 +85,7 @@ public: /** * @copydoc Dali::VectorAnimationRendererPlugin::GetLayerInfo() */ - void GetLayerInfo( Property::Map& map ); + void GetLayerInfo( Property::Map& map ) const; /** * @copydoc Dali::VectorAnimationRendererPlugin::UploadCompletedSignal() -- 2.7.4