From: Eunki Hong Date: Fri, 3 Jan 2025 00:24:27 +0000 (+0900) Subject: Remove build warning : bitfield with negative value X-Git-Tag: accepted/tizen/unified/20250109.175151~2^2~2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F08%2F317508%2F2;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git Remove build warning : bitfield with negative value Change-Id: Iada857e54a07920811277f94ac03af36c86c5ab9 Signed-off-by: Eunki Hong --- diff --git a/dali-toolkit/internal/text/controller/text-controller-impl.h b/dali-toolkit/internal/text/controller/text-controller-impl.h index 1861fdd1a3..dfc7116fb7 100644 --- a/dali-toolkit/internal/text/controller/text-controller-impl.h +++ b/dali-toolkit/internal/text/controller/text-controller-impl.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_TEXT_CONTROLLER_IMPL_H /* - * Copyright (c) 2024 Samsung Electronics Co., Ltd. + * Copyright (c) 2025 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -319,9 +319,9 @@ struct Controller::Impl public: enum class ClearFocusOnEscapeState { - UNKNOWN = -1, ///< Unknown state ENABLE = 0, DISABLE = 1, + UNKNOWN = 2, ///< Unknown state }; public: