diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-27 09:03:13 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-27 09:03:13 +0000 |
commit | ee15a808a1e0d36167f80d9f96147103ba5583de (patch) | |
tree | 0756c69cfb8c8d09b0abc29aa302aeea81a59af5 /src/gui/chat.cpp | |
parent | 4d546730d97828bfed5586c1d50527c7ff5e5c79 (diff) | |
download | mana-ee15a808a1e0d36167f80d9f96147103ba5583de.tar.gz mana-ee15a808a1e0d36167f80d9f96147103ba5583de.tar.bz2 mana-ee15a808a1e0d36167f80d9f96147103ba5583de.tar.xz mana-ee15a808a1e0d36167f80d9f96147103ba5583de.zip |
Made it compile with GCC 4.3
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index da60ef42..de47c8a9 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -21,13 +21,14 @@ * $Id$ */ -#include "chat.h" - +#include <algorithm> #include <sstream> #include <guichan/focushandler.hpp> #include <guichan/key.hpp> +#include "chat.h" + #include "browserbox.h" #include "../channelmanager.h" #include "../channel.h" |