Remove Actor::OnStage public API 85/236485/1
authorRichard Huang <r.huang@samsung.com>
Wed, 17 Jun 2020 10:11:46 +0000 (11:11 +0100)
committerRichard Huang <r.huang@samsung.com>
Wed, 17 Jun 2020 10:11:46 +0000 (11:11 +0100)
Change-Id: I52c0db4981a2faefd6ba10443b5f0156933a00ac

dali/public-api/actors/actor.cpp
dali/public-api/actors/actor.h

index a9af430..cf897e9 100644 (file)
@@ -65,11 +65,6 @@ Actor& Actor::operator=(const Actor& rhs)
   return *this;
 }
 
-bool Actor::OnStage() const
-{
-  return GetImplementation(*this).OnStage();
-}
-
 Layer Actor::GetLayer()
 {
   return GetImplementation(*this).GetLayer();
index 2ce833f..af2801c 100644 (file)
@@ -803,17 +803,6 @@ public:
   // Containment
 
   /**
-   * @brief Queries whether the actor is connected to the Stage.
-   *
-   * When an actor is connected, it will be directly or indirectly parented to the root Actor.
-   * @SINCE_1_0.0
-   * @return True if the actor is connected to the Stage
-   * @pre The Actor has been initialized.
-   * @note The root Actor is provided automatically by Dali::Stage, and is always considered to be connected.
-   */
-  bool OnStage() const;
-
-  /**
    * @brief Gets the layer in which the actor is present.
    *
    * @SINCE_1_0.0