diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-16 12:22:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-16 12:28:10 +0300 |
commit | 0d73f54f842a9690c65faedf094112017fd07430 (patch) | |
tree | ca009ae0b366a95ad9c0fef1fa518ad60f8dbac2 /src/listeners/actionlistener.h | |
parent | 85e89895c4f7a53721a6bd93b47a79d5537d263a (diff) | |
download | manaplus-0d73f54f842a9690c65faedf094112017fd07430.tar.gz manaplus-0d73f54f842a9690c65faedf094112017fd07430.tar.bz2 manaplus-0d73f54f842a9690c65faedf094112017fd07430.tar.xz manaplus-0d73f54f842a9690c65faedf094112017fd07430.zip |
move actionevent into events directory.
Diffstat (limited to 'src/listeners/actionlistener.h')
-rw-r--r-- | src/listeners/actionlistener.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/listeners/actionlistener.h b/src/listeners/actionlistener.h index ee3154f80..b22e5abc6 100644 --- a/src/listeners/actionlistener.h +++ b/src/listeners/actionlistener.h @@ -66,7 +66,7 @@ #include <string> -#include "gui/base/actionevent.hpp" +#include "events/actionevent.h" /** * Interface for listening for action events from widgets. @@ -93,7 +93,7 @@ class ActionListener * @param actionEvent The event of the action. * @since 0.6.0 */ - virtual void action(const gcn::ActionEvent &actionEvent) = 0; + virtual void action(const ActionEvent &actionEvent) = 0; protected: /** |