From: David Steele Date: Fri, 25 Sep 2020 15:13:36 +0000 (+0100) Subject: Ensuring CustomActor behaviour flags retain expected values X-Git-Tag: dali_1.9.32~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97a968a80ad681b1cbbc219fa6729f2344672476;p=platform%2Fcore%2Fuifw%2Fdali-core.git Ensuring CustomActor behaviour flags retain expected values Change-Id: Ica035f04ac71d0f514af0dbe3920f235bd775907 --- diff --git a/dali/public-api/actors/custom-actor-impl.h b/dali/public-api/actors/custom-actor-impl.h index 11bb9e4..3afaa88 100644 --- a/dali/public-api/actors/custom-actor-impl.h +++ b/dali/public-api/actors/custom-actor-impl.h @@ -288,6 +288,9 @@ protected: // For derived classes { ACTOR_BEHAVIOUR_DEFAULT = 0, ///< Use to provide default behaviour (size negotiation is on, event callbacks are not called). @SINCE_1_2_10 DISABLE_SIZE_NEGOTIATION = 1 << 0, ///< True if control does not need size negotiation, i.e. it can be skipped in the algorithm @SINCE_1_0.0 + NOT_IN_USE_1 = 1<<1, + NOT_IN_USE_2 = 1<<2, + NOT_IN_USE_3 = 1<<3, LAST_ACTOR_FLAG ///< Special marker for last actor flag @SINCE_1_0.0 };