Return false for a bool instead of nullptr.

Fixes compiler warning (error by default in gcc 5).

REVIEW:123077
This commit is contained in:
Michael Pyne 2015-03-19 23:22:46 -04:00
parent f6db54618b
commit 85d87297b0

View file

@ -131,7 +131,7 @@ public:
return nullptr;
}
bool grabKeyboard(KWin::Effect *) override {
return nullptr;
return false;
}
bool hasDecorationShadows() const override {
return false;