diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-22 00:17:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-22 00:46:00 +0300 |
commit | e26c01fe66bc698555fdee9d681b3abd6822848a (patch) | |
tree | e74773ce1c66a714ee933d8228d94d205a37aa43 /src/gui/widgets/widget.cpp | |
parent | d181a2fb30ac73173fba851d4b2f7ca6f7d46ca0 (diff) | |
download | mv-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.gz mv-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.bz2 mv-e26c01fe66bc698555fdee9d681b3abd6822848a.tar.xz mv-e26c01fe66bc698555fdee9d681b3abd6822848a.zip |
Remove some parentheses.
Diffstat (limited to 'src/gui/widgets/widget.cpp')
-rw-r--r-- | src/gui/widgets/widget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/widget.cpp b/src/gui/widgets/widget.cpp index 8b49fddfd..47d2e0f5b 100644 --- a/src/gui/widgets/widget.cpp +++ b/src/gui/widgets/widget.cpp @@ -184,7 +184,7 @@ bool Widget::isFocused() const if (mFocusHandler == nullptr) return false; - return (mFocusHandler->isFocused(this)); + return mFocusHandler->isFocused(this); } void Widget::setFocusable(const bool focusable) |