Fix unused param warning

Sorry for introducing them.
This commit is contained in:
Martin Flöser 2019-01-27 14:03:53 +01:00
parent cfecb1e077
commit 07e394fbb7

View file

@ -135,9 +135,11 @@ public:
return nullptr;
}
KWin::EffectWindow *findWindow(QWindow *w) const override {
Q_UNUSED(w)
return nullptr;
}
KWin::EffectWindow *findWindow(const QUuid &id) const override {
Q_UNUSED(id)
return nullptr;
}
void *getProxy(QString) override {