diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-29 20:56:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-29 20:56:37 +0300 |
commit | c53136fce2b1cca1bb9273255ad86f0aded747c2 (patch) | |
tree | 3ba8a7e1d9e46e79cfbb784353bc567bbe8c9d68 /src/guichan/include/guichan/widget.hpp | |
parent | 5b4160a49385bc6895681c5d103a4a5716829e4b (diff) | |
download | plus-c53136fce2b1cca1bb9273255ad86f0aded747c2.tar.gz plus-c53136fce2b1cca1bb9273255ad86f0aded747c2.tar.bz2 plus-c53136fce2b1cca1bb9273255ad86f0aded747c2.tar.xz plus-c53136fce2b1cca1bb9273255ad86f0aded747c2.zip |
Fix code style in empty methods.
Diffstat (limited to 'src/guichan/include/guichan/widget.hpp')
-rw-r--r-- | src/guichan/include/guichan/widget.hpp | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/guichan/include/guichan/widget.hpp b/src/guichan/include/guichan/widget.hpp index 69126e3df..b6146b791 100644 --- a/src/guichan/include/guichan/widget.hpp +++ b/src/guichan/include/guichan/widget.hpp @@ -173,7 +173,8 @@ namespace gcn * @see Gui::logic * @since 0.1.0 */ - virtual void logic() { } + virtual void logic() + { } /** * Gets the widget's parent container. @@ -686,7 +687,8 @@ namespace gcn * * @since 0.1.0 */ - virtual void fontChanged() { } + virtual void fontChanged() + { } /** * Checks if a widget exists or not, that is if it still exists @@ -895,7 +897,8 @@ namespace gcn * @see moveToBottom * @since 0.1.0 */ - virtual void moveToTop(Widget* widget A_UNUSED) { }; + virtual void moveToTop(Widget* widget A_UNUSED) + { }; /** * Moves a widget in this widget to the bottom of this widget. @@ -905,7 +908,8 @@ namespace gcn * @see moveToTop * @since 0.1.0 */ - virtual void moveToBottom(Widget* widget A_UNUSED) { }; + virtual void moveToBottom(Widget* widget A_UNUSED) + { }; /** * Focuses the next widget in the widget. @@ -913,7 +917,8 @@ namespace gcn * @see moveToBottom * @since 0.1.0 */ - virtual void focusNext() { }; + virtual void focusNext() + { }; /** * Focuses the previous widget in the widget. @@ -921,7 +926,8 @@ namespace gcn * @see moveToBottom * @since 0.1.0 */ - virtual void focusPrevious() { }; + virtual void focusPrevious() + { }; /** * Tries to show a specific part of a widget by moving it. Used if the |