Remove build warning : bitfield with negative value 08/317508/2
authorEunki Hong <eunkiki.hong@samsung.com>
Fri, 3 Jan 2025 00:24:27 +0000 (09:24 +0900)
committerEunki Hong <eunkiki.hong@samsung.com>
Mon, 6 Jan 2025 02:19:51 +0000 (02:19 +0000)
Change-Id: Iada857e54a07920811277f94ac03af36c86c5ab9
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
dali-toolkit/internal/text/controller/text-controller-impl.h

index 1861fdd1a31cb6cb367a2a6dc2657059ae654fa7..dfc7116fb7ac2dccec4279c81c9da9bc6515b927 100644 (file)
@@ -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: