summaryrefslogtreecommitdiff
path: root/src/client/qwaylandshellsurface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/qwaylandshellsurface.cpp')
-rw-r--r--src/client/qwaylandshellsurface.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/client/qwaylandshellsurface.cpp b/src/client/qwaylandshellsurface.cpp
index 81e05a44..f87e5962 100644
--- a/src/client/qwaylandshellsurface.cpp
+++ b/src/client/qwaylandshellsurface.cpp
@@ -105,6 +105,17 @@ uint32_t QWaylandShellSurface::getSerial(QWaylandInputDevice *inputDevice)
return inputDevice->serial();
}
+void QWaylandShellSurface::setXdgActivationToken(const QString &token)
+{
+ Q_UNUSED(token);
+ qCWarning(lcQpaWayland) << "setXdgActivationToken not implemented" << token;
+}
+
+void QWaylandShellSurface::requestXdgActivationToken(quint32 serial)
+{
+ Q_UNUSED(serial);
+ Q_EMIT m_window->xdgActivationTokenCreated({});
+}
}
QT_END_NAMESPACE