summaryrefslogtreecommitdiff
path: root/src/guichan/include/guichan/deathlistener.hpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-02-29 20:56:37 +0300
committerAndrei Karas <akaras@inbox.ru>2012-02-29 20:56:37 +0300
commitc53136fce2b1cca1bb9273255ad86f0aded747c2 (patch)
tree3ba8a7e1d9e46e79cfbb784353bc567bbe8c9d68 /src/guichan/include/guichan/deathlistener.hpp
parent5b4160a49385bc6895681c5d103a4a5716829e4b (diff)
downloadplus-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/deathlistener.hpp')
-rw-r--r--src/guichan/include/guichan/deathlistener.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/guichan/include/guichan/deathlistener.hpp b/src/guichan/include/guichan/deathlistener.hpp
index 5e983e02d..b2061e036 100644
--- a/src/guichan/include/guichan/deathlistener.hpp
+++ b/src/guichan/include/guichan/deathlistener.hpp
@@ -66,7 +66,8 @@ namespace gcn
/**
* Destructor.
*/
- virtual ~DeathListener() { }
+ virtual ~DeathListener()
+ { }
/**
* Called when a widget dies. It is used to be able to recieve
@@ -83,8 +84,8 @@ namespace gcn
* You should not be able to make an instance of DeathListener,
* therefore its constructor is protected.
*/
- DeathListener() { }
-
+ DeathListener()
+ { }
};
}