From 54e44470680b30b99590f2d2ddaf75f676cc698f Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Mon, 21 Oct 2019 17:38:25 +0900 Subject: [PATCH 1/1] [Tizen] (Vector) Remove 'const' from GetLayerInfo method Change-Id: I063785d8fedcdb2b19480b433fb55707002ad41e --- 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 a640f3c..efcd011 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 ) const = 0; + virtual void GetLayerInfo( Property::Map& map ) = 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 f55d839..692b485 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 ) const +void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) { 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 5db1122..440670c 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 ) const; + void GetLayerInfo( Property::Map& map ); 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 b1e3a17..0ec3ef0 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 ) const +void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) { 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 5ede97e..ef588e1 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 ) const; + void GetLayerInfo( Property::Map& map ); /** * @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 009312b..721fedd 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 ) const +void VectorAnimationRendererPluginProxy::GetLayerInfo( Property::Map& map ) { 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 17ba06b..5b77b4c 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 ) const; + void GetLayerInfo( Property::Map& map ); /** * @copydoc Dali::VectorAnimationRendererPlugin::UploadCompletedSignal() -- 2.7.4