diff options
Diffstat (limited to 'src/gui/npcpostdialog.cpp')
-rw-r--r-- | src/gui/npcpostdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/npcpostdialog.cpp b/src/gui/npcpostdialog.cpp index c35f77a3..0662515e 100644 --- a/src/gui/npcpostdialog.cpp +++ b/src/gui/npcpostdialog.cpp @@ -21,7 +21,7 @@ #include "gui/npcpostdialog.h" -#include "eventmanager.h" +#include "event.h" #include "playerinfo.h" #include "gui/widgets/button.h" @@ -101,7 +101,7 @@ void NpcPostDialog::action(const gcn::ActionEvent &event) event.setInt("npcId", mNpcId); event.setString("recipient", mSender->getText()); event.setString("text", mText->getText()); - Mana::EventManager::trigger("NPC", event); + event.trigger("NPC"); } setVisible(false); } |