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 795afabfb4
commit c959f3dee6

View File

@@ -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
}
}