[Tizen] (Vector) Remove 'const' from GetLayerInfo method 16/216716/1
authorHeeyong Song <heeyong.song@samsung.com>
Mon, 21 Oct 2019 08:38:25 +0000 (17:38 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 31 Oct 2019 05:05:30 +0000 (14:05 +0900)
Change-Id: I063785d8fedcdb2b19480b433fb55707002ad41e

dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h
dali/devel-api/adaptor-framework/vector-animation-renderer.cpp
dali/devel-api/adaptor-framework/vector-animation-renderer.h
dali/internal/vector-animation/common/vector-animation-renderer-impl.cpp
dali/internal/vector-animation/common/vector-animation-renderer-impl.h
dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp
dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h

index a640f3c..efcd011 100644 (file)
@@ -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.
index f55d839..692b485 100755 (executable)
@@ -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 );
 }
index 5db1122..440670c 100755 (executable)
@@ -134,7 +134,7 @@ public:
    *
    * @param[out] map The layer information
    */
-  void GetLayerInfo( Property::Map& map ) const;
+  void GetLayerInfo( Property::Map& map );
 
 public: // Signals
 
index b1e3a17..0ec3ef0 100644 (file)
@@ -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 );
 }
index 5ede97e..ef588e1 100755 (executable)
@@ -89,7 +89,7 @@ public:
   /**
    * @copydoc Dali::VectorAnimationRenderer::GetLayerInfo()
    */
-  void GetLayerInfo( Property::Map& map ) const;
+  void GetLayerInfo( Property::Map& map );
 
   /**
    * @copydoc Dali::VectorAnimationRenderer::UploadCompletedSignal()
index 009312b..721fedd 100644 (file)
@@ -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 )
   {
index 17ba06b..5b77b4c 100644 (file)
@@ -85,7 +85,7 @@ public:
   /**
    * @copydoc Dali::VectorAnimationRendererPlugin::GetLayerInfo()
    */
-  void GetLayerInfo( Property::Map& map ) const;
+  void GetLayerInfo( Property::Map& map );
 
   /**
    * @copydoc Dali::VectorAnimationRendererPlugin::UploadCompletedSignal()