aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/channelsjoin/ChannelsJoinDialog.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2011-01-07 18:53:32 +0000
committerGravatar Szymon Tomasz Stefanek2011-01-07 18:53:32 +0000
commitf6ddb14ca02eb62ce7629718b72122e6f05c8f89 (patch)
tree33e2b5b90ede072628df05b11b68a08790e428c3 /src/modules/channelsjoin/ChannelsJoinDialog.cpp
parentupdated kvirc translation (diff)
downloadKVIrc-f6ddb14ca02eb62ce7629718b72122e6f05c8f89.tar.gz
KVIrc-f6ddb14ca02eb62ce7629718b72122e6f05c8f89.tar.bz2
KVIrc-f6ddb14ca02eb62ce7629718b72122e6f05c8f89.zip
Unlike KviThread, QThread needs to be waited() for before deletion. Also a small fix in the channels join dialog.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5311 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/channelsjoin/ChannelsJoinDialog.cpp')
-rw-r--r--src/modules/channelsjoin/ChannelsJoinDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/channelsjoin/ChannelsJoinDialog.cpp b/src/modules/channelsjoin/ChannelsJoinDialog.cpp
index 00d1d413b..4e9586523 100644
--- a/src/modules/channelsjoin/ChannelsJoinDialog.cpp
+++ b/src/modules/channelsjoin/ChannelsJoinDialog.cpp
@@ -70,7 +70,7 @@ ChannelsJoinDialog::ChannelsJoinDialog(QWidget * par, const char * name)
m_pTreeWidget->setRootIsDecorated(true);
m_pTreeWidget->setSelectionMode(QAbstractItemView::SingleSelection);
g->addWidget(m_pTreeWidget,0,0,1,2);
- connect(m_pTreeWidget,SIGNAL(itemDoubleClicked(QTreeWidgetItem *,int)),this,SLOT(itemDoubleClicked(QTreeWidgetItem *,int)));
+ //connect(m_pTreeWidget,SIGNAL(itemDoubleClicked(QTreeWidgetItem *,int)),this,SLOT(itemDoubleClicked(QTreeWidgetItem *,int)));
m_pGroupBox = new KviTalGroupBox(Qt::Horizontal,__tr2qs("Channel" ),this);