diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-07 23:47:57 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-07 23:52:46 +0200 |
commit | d69d85f06fa6dc22ac4c7789e4140e32d119a7f1 (patch) | |
tree | 1d2311bfdba616136d0ac26f8cbe9ab73c88f0e4 /src/gui/chat.h | |
parent | 303c1f69761e90b83d4809e911f7785ec66b46aa (diff) | |
download | mana-client-d69d85f06fa6dc22ac4c7789e4140e32d119a7f1.tar.gz mana-client-d69d85f06fa6dc22ac4c7789e4140e32d119a7f1.tar.bz2 mana-client-d69d85f06fa6dc22ac4c7789e4140e32d119a7f1.tar.xz mana-client-d69d85f06fa6dc22ac4c7789e4140e32d119a7f1.zip |
Moved basic widgets into the gui/widgets directory
In an attempt to make the GUI code a little more structured, basic
widgets are now put in gui/widgets. Many includes were also cleaned up.
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r-- | src/gui/chat.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/chat.h b/src/gui/chat.h index 3cf2a738..085833eb 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -22,17 +22,17 @@ #ifndef CHAT_H #define CHAT_H -#include "window.h" - -#include <list> -#include <string> -#include <map> +#include "gui/widgets/window.h" #include <guichan/actionlistener.hpp> #include <guichan/keylistener.hpp> #include <guichan/widget.hpp> #include <guichan/widgetlistener.hpp> +#include <list> +#include <string> +#include <map> + class BrowserBox; class Channel; class ChatTab; |