From e82f84f0abd39d77d9b85805a7a3662367317dc5 Mon Sep 17 00:00:00 2001 From: Ari Vuollet Date: Sun, 28 Jul 2024 15:33:23 +0300 Subject: [PATCH] Log a warning for not implemented Wayland functionality --- Source/Engine/Platform/SDL/SDLPlatform.Linux.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Engine/Platform/SDL/SDLPlatform.Linux.cpp b/Source/Engine/Platform/SDL/SDLPlatform.Linux.cpp index 9c37dcdba..dcaf0a2e3 100644 --- a/Source/Engine/Platform/SDL/SDLPlatform.Linux.cpp +++ b/Source/Engine/Platform/SDL/SDLPlatform.Linux.cpp @@ -254,7 +254,7 @@ DragDropEffect Window::DoDragDrop(const StringView& data) DragDropEffect Window::DoDragDropWayland(const StringView& data) { // TODO: Wayland - ASSERT(false); + LOG(Warning, "Wayland Drag and drop is not implemented yet."); return DragDropEffect::None; } @@ -598,7 +598,7 @@ void SDLClipboard::SetText(const StringView& text) } else { - ASSERT(false); // TODO: Wayland + LOG(Warning, "Wayland clipboard support is not implemented yet."); // TODO: Wayland } } @@ -636,7 +636,7 @@ String SDLClipboard::GetText() } else { - ASSERT(false); // TODO: Wayland + LOG(Warning, "Wayland clipboard is not implemented yet."); // TODO: Wayland } }