summaryrefslogtreecommitdiff
path: root/src/gui/widgets/channeltab.cpp
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2010-02-19 15:38:58 -0700
committerJared Adams <jaxad0127@gmail.com>2010-02-19 15:39:30 -0700
commit168203c2185b7cf75c685b0557293720cdda208c (patch)
tree2f3abaf8ded4b2e81c6e11908691d6d7a75aefed /src/gui/widgets/channeltab.cpp
parent363527d0f95963ba3f4a6d25c8eabc1bb3ad4efe (diff)
downloadMana-168203c2185b7cf75c685b0557293720cdda208c.tar.gz
Mana-168203c2185b7cf75c685b0557293720cdda208c.tar.bz2
Mana-168203c2185b7cf75c685b0557293720cdda208c.tar.xz
Mana-168203c2185b7cf75c685b0557293720cdda208c.zip
Prevent issues when channels are cleared after the ChatWindow
Diffstat (limited to 'src/gui/widgets/channeltab.cpp')
-rw-r--r--src/gui/widgets/channeltab.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/widgets/channeltab.cpp b/src/gui/widgets/channeltab.cpp
index 0fce98bb..aac1cdb6 100644
--- a/src/gui/widgets/channeltab.cpp
+++ b/src/gui/widgets/channeltab.cpp
@@ -37,6 +37,9 @@ ChannelTab::ChannelTab(Channel *channel) :
ChannelTab::~ChannelTab()
{
+ // Clear tab so the channel won't try to (if the ChatWindow is cleared
+ // before the channels are, we'll run into issues without this)
+ mChannel->setTab(0);
}
void ChannelTab::handleInput(const std::string &msg)