diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-15 22:03:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-16 13:50:43 +0300 |
commit | 23034a47937c109590eb60e4ee0efa32a8c9e45e (patch) | |
tree | 844c716da20752dcbb0aead649011f54d8062635 /src/actions/actions.cpp | |
parent | 4638f969d4206ba8dd857eb6d2758106cc5268df (diff) | |
download | plus-23034a47937c109590eb60e4ee0efa32a8c9e45e.tar.gz plus-23034a47937c109590eb60e4ee0efa32a8c9e45e.tar.bz2 plus-23034a47937c109590eb60e4ee0efa32a8c9e45e.tar.xz plus-23034a47937c109590eb60e4ee0efa32a8c9e45e.zip |
Remove useless includes from cpp files
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 7d8e18591..516fa8a36 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -25,15 +25,15 @@ #include "dropshortcut.h" #include "emoteshortcut.h" #include "game.h" +#ifdef USE_OPENGL #include "graphicsmanager.h" -#include "inventory.h" +#endif #include "itemshortcut.h" #include "spellmanager.h" #include "actions/actiondef.h" #include "being/localplayer.h" -#include "being/playerinfo.h" #include "enums/being/attributes.h" @@ -64,14 +64,15 @@ #include "gui/widgets/tabs/chat/chattab.h" -#include "render/graphics.h" #if defined USE_OPENGL #include "render/normalopenglgraphics.h" #endif #include "net/adminhandler.h" #include "net/beinghandler.h" +#ifdef EATHENA_SUPPORT #include "net/buyingstorehandler.h" +#endif #include "net/buysellhandler.h" #include "net/chathandler.h" #include "net/download.h" @@ -92,8 +93,6 @@ #include "resources/resourcemanager.h" #include "resources/skillconsts.h" -#include "resources/db/itemdb.h" - #include "utils/chatutils.h" #include "utils/delete2.h" #include "utils/gettext.h" |