diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-06 22:41:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-07 02:07:03 +0300 |
commit | a51da75e329df773a01e963c3a27e72cf487138c (patch) | |
tree | c48d7c682be1104138dd16daa75fd12a3fcae82b /src/net/ea/skillhandler.cpp | |
parent | 4f7e38d218848bd34bd86dda75446881dad2bb32 (diff) | |
download | ManaVerse-a51da75e329df773a01e963c3a27e72cf487138c.tar.gz ManaVerse-a51da75e329df773a01e963c3a27e72cf487138c.tar.bz2 ManaVerse-a51da75e329df773a01e963c3a27e72cf487138c.tar.xz ManaVerse-a51da75e329df773a01e963c3a27e72cf487138c.zip |
fix code style.
Diffstat (limited to 'src/net/ea/skillhandler.cpp')
-rw-r--r-- | src/net/ea/skillhandler.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/net/ea/skillhandler.cpp b/src/net/ea/skillhandler.cpp index fd10a6087..002309de4 100644 --- a/src/net/ea/skillhandler.cpp +++ b/src/net/ea/skillhandler.cpp @@ -23,7 +23,6 @@ #include "net/ea/skillhandler.h" #include "logger.h" -#include "notifications.h" #include "notifymanager.h" #include "being/localplayer.h" @@ -31,10 +30,13 @@ #include "gui/windows/skilldialog.h" +#include "utils/gettext.h" #include "utils/stringutils.h" #include "net/messagein.h" +#include "resources/notifytypes.h" + #include "debug.h" /** job dependend identifiers (?) */ @@ -254,6 +256,6 @@ void SkillHandler::processSkillFailed(Net::MessageIn &msg) } } - NotifyManager::notify(NotifyManager::SKILL_FAIL_MESSAGE, txt); + NotifyManager::notify(NotifyTypes::SKILL_FAIL_MESSAGE, txt); } } // namespace Ea |