From c36e867785bb65ffc10869923b4f58b6af453bfb Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Tue, 19 Sep 2023 11:07:48 +0900 Subject: [PATCH] [Tizen] Fix svace/coverity issue (key events constructor) Change-Id: Id8fbaea475664db81609a78116c091d15d813713 Signed-off-by: Eunki, Hong --- dali/internal/event/events/key-event-impl.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dali/internal/event/events/key-event-impl.cpp b/dali/internal/event/events/key-event-impl.cpp index e177329..112f379 100644 --- a/dali/internal/event/events/key-event-impl.cpp +++ b/dali/internal/event/events/key-event-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 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. @@ -44,7 +44,8 @@ KeyEvent::KeyEvent() mCompose(""), mDeviceName(""), mDeviceClass(Device::Class::NONE), - mDeviceSubclass(Device::Subclass::NONE) + mDeviceSubclass(Device::Subclass::NONE), + mIsRepeat(false) { } -- 2.7.4