From: Heeyong Song Date: Mon, 9 Jan 2023 09:36:38 +0000 (+0900) Subject: [Tizen] Remove unnecessray ClipBoard creation X-Git-Tag: accepted/tizen/7.0/unified/20230111.174847^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=commitdiff_plain;h=3fc7f5393449cc443d604085d8180d1d4c5fe58d [Tizen] Remove unnecessray ClipBoard creation Change-Id: I126e2f715e37de0488d5d918c5cd1d415dd3896f --- diff --git a/dali/internal/window-system/common/event-handler.cpp b/dali/internal/window-system/common/event-handler.cpp index 691f5e6..7366ea7 100644 --- a/dali/internal/window-system/common/event-handler.cpp +++ b/dali/internal/window-system/common/event-handler.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. @@ -53,7 +53,6 @@ EventHandler::EventHandler(WindowBase* windowBase, DamageObserver& damageObserve : mStyleMonitor(StyleMonitor::Get()), mDamageObserver(damageObserver), mClipboardEventNotifier(ClipboardEventNotifier::Get()), - mClipboard(Clipboard::Get()), mPaused(false) { // Connect signals diff --git a/dali/internal/window-system/common/event-handler.h b/dali/internal/window-system/common/event-handler.h index 3158efd..b6bf33a 100644 --- a/dali/internal/window-system/common/event-handler.h +++ b/dali/internal/window-system/common/event-handler.h @@ -2,7 +2,7 @@ #define DALI_INTERNAL_EVENT_HANDLER_H /* - * 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. @@ -210,7 +210,6 @@ private: DamageObserver& mDamageObserver; ///< Reference to the DamageObserver, set on construction, to sent damage events to. Dali::ClipboardEventNotifier mClipboardEventNotifier; ///< Pointer to the clipboard event notifier - Dali::Clipboard mClipboard; ///< Pointer to the clipboard using ObserverContainer = std::vector; ObserverContainer mObservers; ///< A list of event observer pointers