summaryrefslogtreecommitdiff
path: root/src/guichan/include/guichan/actionlistener.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/guichan/include/guichan/actionlistener.hpp')
-rw-r--r--src/guichan/include/guichan/actionlistener.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/guichan/include/guichan/actionlistener.hpp b/src/guichan/include/guichan/actionlistener.hpp
index 28373f2df..5991486a7 100644
--- a/src/guichan/include/guichan/actionlistener.hpp
+++ b/src/guichan/include/guichan/actionlistener.hpp
@@ -67,7 +67,8 @@ namespace gcn
/**
* Destructor.
*/
- virtual ~ActionListener() { }
+ virtual ~ActionListener()
+ { }
/**
* Called when an action is recieved from a widget. It is used
@@ -86,8 +87,8 @@ namespace gcn
* You should not be able to make an instance of ActionListener,
* therefore its constructor is protected.
*/
- ActionListener() { }
-
+ ActionListener()
+ { }
};
}