diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-04-02 12:26:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-04-02 12:26:23 +0300 |
commit | 124e28787a66fc1ae882afbb5711b08620b51563 (patch) | |
tree | 5f172652494234e6caae74cf04a2cd4d0083cbf0 /src/gui/widgets/window.h | |
parent | 48746ecb8cd94270f143cc7d722188d2e77c3101 (diff) | |
download | plus-124e28787a66fc1ae882afbb5711b08620b51563.tar.gz plus-124e28787a66fc1ae882afbb5711b08620b51563.tar.bz2 plus-124e28787a66fc1ae882afbb5711b08620b51563.tar.xz plus-124e28787a66fc1ae882afbb5711b08620b51563.zip |
Remove useless virtual keywords.
Diffstat (limited to 'src/gui/widgets/window.h')
-rw-r--r-- | src/gui/widgets/window.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/window.h b/src/gui/widgets/window.h index dd59242e8..d04b16cdf 100644 --- a/src/gui/widgets/window.h +++ b/src/gui/widgets/window.h @@ -158,14 +158,14 @@ class Window notfinal : public BasicContainer2, /** * Called whenever the widget changes size. */ - virtual void widgetResized(const Event &event) override; + void widgetResized(const Event &event) override; - virtual void widgetMoved(const Event& event) override; + void widgetMoved(const Event& event) override; /** * Called whenever the widget is hidden. */ - virtual void widgetHidden(const Event &event) override; + void widgetHidden(const Event &event) override; /** * Sets whether or not the window has a close button. |