aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc/send.cpp
diff options
context:
space:
mode:
authorGravatar Noldor2008-05-17 09:56:16 +0000
committerGravatar Noldor2008-05-17 09:56:16 +0000
commitdc55f48d7612461d63be04b4eb97d2d92eec63ff (patch)
treec8e6b0be5800f6ddefcb5855978a14f6b8295564 /src/modules/dcc/send.cpp
parentsome fixes in channelsjoin module (diff)
downloadKVIrc-dc55f48d7612461d63be04b4eb97d2d92eec63ff.tar.gz
KVIrc-dc55f48d7612461d63be04b4eb97d2d92eec63ff.tar.bz2
KVIrc-dc55f48d7612461d63be04b4eb97d2d92eec63ff.zip
addmulticellwidget QT4 port (wip)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1804 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/send.cpp')
-rw-r--r--src/modules/dcc/send.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/dcc/send.cpp b/src/modules/dcc/send.cpp
index a1980a646..3888084a7 100644
--- a/src/modules/dcc/send.cpp
+++ b/src/modules/dcc/send.cpp
@@ -1831,7 +1831,8 @@ KviDccFileTransferBandwidthDialog::KviDccFileTransferBandwidthDialog(QWidget * p
m_pLimitBox = new QSpinBox(0,MAX_DCC_BANDWIDTH_LIMIT-1,1,this);
m_pLimitBox->setEnabled((iVal >= 0) && (iVal < MAX_DCC_BANDWIDTH_LIMIT));
connect(m_pEnableLimitCheck,SIGNAL(toggled(bool)),m_pLimitBox,SLOT(setEnabled(bool)));
- g->addMultiCellWidget(m_pLimitBox,0,0,1,2);
+ g->addWidget(m_pLimitBox,0,1,1,2);
+// g->addMultiCellWidget(m_pLimitBox,0,0,1,2);
szText = " ";
szText += __tr2qs_ctx("bytes/sec","dcc");