From 158578b8b6ca87d9683364e675a81e2e47cec9ed Mon Sep 17 00:00:00 2001 From: Richard Huang Date: Wed, 17 Jun 2020 11:11:46 +0100 Subject: [PATCH] Remove Actor::OnStage public API Change-Id: I52c0db4981a2faefd6ba10443b5f0156933a00ac --- dali/public-api/actors/actor.cpp | 5 ----- dali/public-api/actors/actor.h | 11 ----------- 2 files changed, 16 deletions(-) diff --git a/dali/public-api/actors/actor.cpp b/dali/public-api/actors/actor.cpp index a9af430..cf897e9 100644 --- a/dali/public-api/actors/actor.cpp +++ b/dali/public-api/actors/actor.cpp @@ -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(); diff --git a/dali/public-api/actors/actor.h b/dali/public-api/actors/actor.h index 2ce833f..af2801c 100644 --- a/dali/public-api/actors/actor.h +++ b/dali/public-api/actors/actor.h @@ -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 -- 2.7.4