summaryrefslogtreecommitdiff
path: root/src/gui/chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r--src/gui/chat.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/chat.h b/src/gui/chat.h
index e648eda5..a4547d86 100644
--- a/src/gui/chat.h
+++ b/src/gui/chat.h
@@ -185,11 +185,16 @@ class ChatWindow : public Window, public gcn::ActionListener,
/** Called to set current text */
void setInputText(std::string input_str);
+ /** Override to reset mTmpVisible */
+ void setVisible(bool visible);
+
private:
std::ofstream chatlog_file;
+ bool mTmpVisible;
/** One item in the chat log */
- typedef struct CHATLOG {
+ typedef struct CHATLOG
+ {
std::string nick;
std::string text;
int own;