summaryrefslogtreecommitdiff
path: root/src/gui/widgets/chattab.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-03-27 21:50:11 +0300
committerAndrei Karas <akaras@inbox.ru>2011-03-27 21:50:11 +0300
commitcb12c0948a09e58f6b1d3d2fd0101faa89d19ffb (patch)
treeee51cc9b43a89a35f8ceea95ac6af4662d8688f0 /src/gui/widgets/chattab.cpp
parent964ffbb9b6ed5246b14a7d0c0d065f7d38af0912 (diff)
downloadplus-cb12c0948a09e58f6b1d3d2fd0101faa89d19ffb.tar.gz
plus-cb12c0948a09e58f6b1d3d2fd0101faa89d19ffb.tar.bz2
plus-cb12c0948a09e58f6b1d3d2fd0101faa89d19ffb.tar.xz
plus-cb12c0948a09e58f6b1d3d2fd0101faa89d19ffb.zip
Fix uninitialised variable.
Diffstat (limited to 'src/gui/widgets/chattab.cpp')
-rw-r--r--src/gui/widgets/chattab.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/chattab.cpp b/src/gui/widgets/chattab.cpp
index 2c8db7e85..2fd7840f8 100644
--- a/src/gui/widgets/chattab.cpp
+++ b/src/gui/widgets/chattab.cpp
@@ -51,7 +51,8 @@
ChatTab::ChatTab(const std::string &name) :
Tab(),
mAllowHightlight(true),
- mRemoveNames(false)
+ mRemoveNames(false),
+ mNoAway(false)
{
setCaption(name);