(Animation) Remove DestroyAction 05/28205/1
authorAdeel Kazmi <adeel.kazmi@samsung.com>
Tue, 30 Sep 2014 09:14:08 +0000 (10:14 +0100)
committerAdeel Kazmi <adeel.kazmi@samsung.com>
Tue, 30 Sep 2014 09:21:07 +0000 (10:21 +0100)
Change-Id: If0e19081e340a65204c4b4cc65d3bfbdd6d60b24

dali/public-api/animation/animation.cpp
dali/public-api/animation/animation.h

index 0a1a088..40f609e 100644 (file)
@@ -110,18 +110,6 @@ Dali::Animation::EndAction Animation::GetEndAction() const
   return GetImplementation(*this).GetEndAction();
 }
 
-void Animation::SetDestroyAction(Dali::Animation::EndAction destroyAction)
-{
-  // Deprecated
-  GetImplementation(*this).SetEndAction(destroyAction);
-}
-
-Dali::Animation::EndAction Animation::GetDestroyAction() const
-{
-  // Deprecated
-  return GetImplementation(*this).GetEndAction();
-}
-
 void Animation::SetDisconnectAction( Animation::EndAction disconnectAction )
 {
   GetImplementation(*this).SetDisconnectAction( disconnectAction );
index 1935863..5097a0d 100644 (file)
@@ -244,24 +244,6 @@ public:
   EndAction GetEndAction() const;
 
   /**
-   * @brief Deprecated
-   *
-   * @param[in] action The destroy action.
-   *
-   * @deprecated Use SetEndAction
-   */
-  void SetDestroyAction(EndAction action);
-
-  /**
-   * @brief Deprecated
-   *
-   * @return The destroy action.
-   *
-   * @deprecated Use GetEndAction
-   */
-  EndAction GetDestroyAction() const;
-
-  /**
    * @brief Set the disconnect action.
    *
    * If any of the animated property owners are disconnected from the stage, then this action is performed.