Return false for a bool instead of nullptr.
Fixes compiler warning (error by default in gcc 5). REVIEW:123077
This commit is contained in:
parent
f6db54618b
commit
85d87297b0
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ public:
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
bool grabKeyboard(KWin::Effect *) override {
|
bool grabKeyboard(KWin::Effect *) override {
|
||||||
return nullptr;
|
return false;
|
||||||
}
|
}
|
||||||
bool hasDecorationShadows() const override {
|
bool hasDecorationShadows() const override {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue