[kwin] Suppress unused variable usage when building without appmenu

This commit is contained in:
Martin Gräßlin 2014-03-19 08:02:58 +01:00
parent 0d07738ca9
commit 317ad3d537

View file

@ -122,6 +122,8 @@ void Bridge::showApplicationMenu(const QPoint &p)
{ {
#ifdef KWIN_BUILD_KAPPMENU #ifdef KWIN_BUILD_KAPPMENU
c->showApplicationMenu(p); c->showApplicationMenu(p);
#else
Q_UNUSED(p)
#endif #endif
} }