diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-28 02:04:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-28 02:04:45 +0300 |
commit | d67aff12a2ca320326f826924a8f28d194db5658 (patch) | |
tree | 9bd4e27eeb7b5629509694df7cc1e834a830232a /src/gui | |
parent | fb621946210ee826a1fe2fabca7c9f51bfb37547 (diff) | |
download | plus-d67aff12a2ca320326f826924a8f28d194db5658.tar.gz plus-d67aff12a2ca320326f826924a8f28d194db5658.tar.bz2 plus-d67aff12a2ca320326f826924a8f28d194db5658.tar.xz plus-d67aff12a2ca320326f826924a8f28d194db5658.zip |
Fix small style issue.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/widget.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/widgets/widget.h b/src/gui/widgets/widget.h index 3abc8d232..e13e8f791 100644 --- a/src/gui/widgets/widget.h +++ b/src/gui/widgets/widget.h @@ -399,8 +399,7 @@ class Widget notfinal : public Widget2 */ bool isVisible() const A_WARN_UNUSED { return mVisible == Visible_true && - (!mParent || mParent->isVisible()); - } + (!mParent || mParent->isVisible()); } bool isVisibleLocal() const A_WARN_UNUSED { return mVisible == Visible_true; } |