summaryrefslogtreecommitdiff
path: root/src/net/tmwserv/chathandler.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 11:42:12 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 12:15:50 +0100
commit06be39a51f62d365ce84d7815173577d2ecf8496 (patch)
treef4ae92023dd05cbf8d7b9c73e0a8779241202c4c /src/net/tmwserv/chathandler.cpp
parent58b33406b1354e6814ed29d55a55a36053445ecd (diff)
downloadmana-client-06be39a51f62d365ce84d7815173577d2ecf8496.tar.gz
mana-client-06be39a51f62d365ce84d7815173577d2ecf8496.tar.bz2
mana-client-06be39a51f62d365ce84d7815173577d2ecf8496.tar.xz
mana-client-06be39a51f62d365ce84d7815173577d2ecf8496.zip
Changed the includes for the net/tmwserv/ directory
Diffstat (limited to 'src/net/tmwserv/chathandler.cpp')
-rw-r--r--src/net/tmwserv/chathandler.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/net/tmwserv/chathandler.cpp b/src/net/tmwserv/chathandler.cpp
index 2d151472..1c537e30 100644
--- a/src/net/tmwserv/chathandler.cpp
+++ b/src/net/tmwserv/chathandler.cpp
@@ -19,24 +19,24 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#include "chathandler.h"
+#include "net/tmwserv/chathandler.h"
-//#include <SDL_types.h>
-#include <string>
-#include <iostream>
+#include "net/tmwserv/protocol.h"
+
+#include "net/messagein.h"
-#include "../messagein.h"
-#include "protocol.h"
+#include "being.h"
+#include "beingmanager.h"
+#include "game.h"
+#include "channel.h"
+#include "channelmanager.h"
-#include "../../being.h"
-#include "../../beingmanager.h"
-#include "../../game.h"
-#include "../../channel.h"
-#include "../../channelmanager.h"
+#include "gui/widgets/channeltab.h"
+#include "gui/chat.h"
+#include "gui/guildwindow.h"
-#include "../../gui/widgets/channeltab.h"
-#include "../../gui/chat.h"
-#include "../../gui/guildwindow.h"
+#include <string>
+#include <iostream>
#include "utils/gettext.h"