Revert "[Tizen] Restore OnControlChildAdd and OnControlChildRemove" 32/238732/1
authorDongsug Song <dongsug.song@samsung.com>
Thu, 16 Jul 2020 23:46:30 +0000 (08:46 +0900)
committerDongsug Song <dongsug.song@samsung.com>
Thu, 16 Jul 2020 23:47:03 +0000 (08:47 +0900)
- This was workaround patch to fix CSFS not shown issue, but this was resolved by rebuilding dali-extension-tv module.
- This is not required and need to be reverted.

This reverts commit 078980aea975d398c7e6eb24387d5beb1255a435.

Change-Id: I9142922a52be3eee1b9b7f0992ddb7705b4cc733

dali-toolkit/public-api/controls/control-impl.cpp
dali-toolkit/public-api/controls/control-impl.h

index 817a3b7..f17092f 100755 (executable)
@@ -473,14 +473,6 @@ void Control::OnInitialize()
 {
 }
 
-void Control::OnControlChildAdd( Actor& child )
-{
-}
-
-void Control::OnControlChildRemove( Actor& child )
-{
-}
-
 void Control::OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change )
 {
   // By default the control is only interested in theme (not font) changes
index a4706af..56c358d 100644 (file)
@@ -450,30 +450,6 @@ public: // API for derived classes to override
    */
   virtual void OnInitialize();
 
-  /**
-   * @DEPRECATED_1_1.30. Override OnChildAdd instead.
-   *
-   * @brief Called whenever an Actor is added to the control.
-   *
-   * Could be overridden by derived classes.
-   *
-   * @SINCE_1_0.0
-   * @param[in] child The added actor
-   */
-  virtual void OnControlChildAdd( Actor& child ) DALI_DEPRECATED_API;
-
-  /**
-   * @DEPRECATED_1_1.30. Override OnChildRemove instead.
-   *
-   * @brief Called whenever an Actor is removed from the control.
-   *
-   * Could be overridden by derived classes.
-   *
-   * @SINCE_1_0.0
-   * @param[in] child The removed actor
-   */
-  virtual void OnControlChildRemove( Actor& child ) DALI_DEPRECATED_API;
-
   // Styling
 
   /**