From dcc9c00ce5fbcb3b2d417bd4c2d4837ba49af8ea Mon Sep 17 00:00:00 2001 From: Eike Hein Date: Fri, 15 Apr 2016 21:10:37 +0900 Subject: [PATCH] Add API version info; fix references to protocol version. --- src/wayland/plasmawindowmanagement_interface.cpp | 2 +- src/wayland/plasmawindowmanagement_interface.h | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/wayland/plasmawindowmanagement_interface.cpp b/src/wayland/plasmawindowmanagement_interface.cpp index 579cf04f72..1beb586991 100644 --- a/src/wayland/plasmawindowmanagement_interface.cpp +++ b/src/wayland/plasmawindowmanagement_interface.cpp @@ -105,7 +105,7 @@ private: static const struct org_kde_plasma_window_interface s_interface; }; -const quint32 PlasmaWindowManagementInterface::Private::s_version = 2; +const quint32 PlasmaWindowManagementInterface::Private::s_version = 3; PlasmaWindowManagementInterface::Private::Private(PlasmaWindowManagementInterface *q, Display *d) : Global::Private(d, &org_kde_plasma_window_management_interface, s_version) diff --git a/src/wayland/plasmawindowmanagement_interface.h b/src/wayland/plasmawindowmanagement_interface.h index d9b83bd11a..c3bb140c14 100644 --- a/src/wayland/plasmawindowmanagement_interface.h +++ b/src/wayland/plasmawindowmanagement_interface.h @@ -119,7 +119,13 @@ Q_SIGNALS: void fullscreenableRequested(bool set); void skipTaskbarRequested(bool set); QRect minimizedGeometriesChanged(); + /** + * @since 5.7 + */ void shadableRequested(bool set); + /** + * @since 5.7 + */ void shadedRequested(bool set); private: