From 5ed98f79e8c2c80b461e77286bcce51420cabe32 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Thu, 5 Sep 2019 16:47:13 +0200 Subject: [PATCH] Fix warning text message --- wayland_server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wayland_server.cpp b/wayland_server.cpp index f5c5ad0f21..200a50daf4 100644 --- a/wayland_server.cpp +++ b/wayland_server.cpp @@ -266,7 +266,7 @@ public: } qCDebug(KWIN_CORE) << "interfaces for" << client->executablePath() << requestedInterfaces << interfaceName << requestedInterfaces.toStringList().contains(QString::fromUtf8(interfaceName)); if (!requestedInterfaces.toStringList().contains(QString::fromUtf8(interfaceName))) { - qCWarning(KWIN_CORE) << "Did not grant the interface" << interfaceName << "to" << client->executablePath() << ". Please request it under X-Wayland-Interfaces"; + qCWarning(KWIN_CORE) << "Did not grant the interface" << interfaceName << "to" << client->executablePath() << ". Please request it under X-KDE-Wayland-Interfaces"; return false; } }