Removed SetOnStage/SetOffStage from visual-base.h
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / visual-factory / visual-base.cpp
index 7a4821b..f2f2f8c 100644 (file)
@@ -91,21 +91,11 @@ float Visual::Base::GetDepthIndex() const
   return GetImplementation( *this ).GetDepthIndex();
 }
 
-void Visual::Base::SetOnStage( Actor& actor )
-{
-  GetImplementation( *this ).SetOnStage( actor );
-}
-
-void Visual::Base::SetOffStage( Actor& actor )
-{
-  GetImplementation( *this ).SetOffStage( actor );
-}
-
 void Visual::Base::RemoveAndReset( Actor& actor )
 {
   if( actor && *this )
   {
-    SetOffStage( actor );
+    GetImplementation(*this).SetOffStage( actor );
   }
   Reset();
 }