summaryrefslogtreecommitdiff
path: root/src/gui/chat.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 12:35:09 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 12:35:09 +0100
commit05e753294c1a603252d2eed4b1731c3f50543a7e (patch)
tree82d8c04a55df7a689fd15b69e8e6917c91e165d0 /src/gui/chat.h
parent38674a7732d2224e07e80c0c4224e3468e4ddfb0 (diff)
downloadmana-client-05e753294c1a603252d2eed4b1731c3f50543a7e.tar.gz
mana-client-05e753294c1a603252d2eed4b1731c3f50543a7e.tar.bz2
mana-client-05e753294c1a603252d2eed4b1731c3f50543a7e.tar.xz
mana-client-05e753294c1a603252d2eed4b1731c3f50543a7e.zip
Fixed some compiler warnings
Fixed a faulty == statement that should have been an assignment and a mismatched 'else' block.
Diffstat (limited to 'src/gui/chat.h')
-rw-r--r--src/gui/chat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/chat.h b/src/gui/chat.h
index 736f9284..7c080960 100644
--- a/src/gui/chat.h
+++ b/src/gui/chat.h
@@ -213,7 +213,7 @@ class ChatWindow : public Window,
/** Tabbed area for holding each channel. */
TabbedArea *mChatTabs;
- Tab *currentTab;
+ Tab *mCurrentTab;
typedef std::map<const std::string, ChatTab*> TabMap;
/** Manage whisper tabs */