Log a warning for not implemented Wayland functionality

This commit is contained in:
2024-07-28 15:33:23 +03:00
committed by Ari Vuollet
parent bb7a5326cd
commit f794bb5455

View File

@@ -254,7 +254,7 @@ DragDropEffect Window::DoDragDrop(const StringView& data)
DragDropEffect Window::DoDragDropWayland(const StringView& data) DragDropEffect Window::DoDragDropWayland(const StringView& data)
{ {
// TODO: Wayland // TODO: Wayland
ASSERT(false); LOG(Warning, "Wayland Drag and drop is not implemented yet.");
return DragDropEffect::None; return DragDropEffect::None;
} }
@@ -598,7 +598,7 @@ void SDLClipboard::SetText(const StringView& text)
} }
else else
{ {
ASSERT(false); // TODO: Wayland LOG(Warning, "Wayland clipboard support is not implemented yet."); // TODO: Wayland
} }
} }
@@ -636,7 +636,7 @@ String SDLClipboard::GetText()
} }
else else
{ {
ASSERT(false); // TODO: Wayland LOG(Warning, "Wayland clipboard is not implemented yet."); // TODO: Wayland
} }
} }