diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2005-02-27 01:54:10 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2005-02-27 01:54:10 +0000 |
commit | d0aedbeaa22104f625483417bcb632a94e552a52 (patch) | |
tree | 70d0c152d516c331dc09fed1606c39d81402627a /src/gui/chat.h | |
parent | 5410d1613e6f0c8a8b91fffea18387c39bd5f9f5 (diff) | |
download | mana-d0aedbeaa22104f625483417bcb632a94e552a52.tar.gz mana-d0aedbeaa22104f625483417bcb632a94e552a52.tar.bz2 mana-d0aedbeaa22104f625483417bcb632a94e552a52.tar.xz mana-d0aedbeaa22104f625483417bcb632a94e552a52.zip |
No more SDL_Surface in the chat box.
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r-- | src/gui/chat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/chat.h b/src/gui/chat.h index 8c9376d9..39f9ab1c 100644 --- a/src/gui/chat.h +++ b/src/gui/chat.h @@ -25,6 +25,7 @@ #define _TMW_CHAT_H #include <guichan.hpp> +#include "../resources/image.h" #include <SDL.h> #include <list> #include <string> @@ -170,7 +171,7 @@ class ChatBox : public gcn::Widget { std::string const_msg(CHATSKILL); // The Alpha-Blended Surface for the background transluency effect. - SDL_Surface *chatBoxBackground; + Image *chatBoxBackground; }; #endif |