aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/channelsjoin
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-10-16 15:21:19 +0000
committerGravatar Fabio Bas2010-10-16 15:21:19 +0000
commitc64ecad0ee25cb739d236da0e29a988cd88bae94 (patch)
tree59ecc67574974a93883f7a1d58852627e2fd1a32 /src/modules/channelsjoin
parent$str.printf: applied patch from #996 and fixed ?f and ?e format strings when ... (diff)
downloadKVIrc-c64ecad0ee25cb739d236da0e29a988cd88bae94.tar.gz
KVIrc-c64ecad0ee25cb739d236da0e29a988cd88bae94.tar.bz2
KVIrc-c64ecad0ee25cb739d236da0e29a988cd88bae94.zip
applied further patches for #996
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5075 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/channelsjoin')
-rw-r--r--src/modules/channelsjoin/channelsjoinwindow.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/modules/channelsjoin/channelsjoinwindow.cpp b/src/modules/channelsjoin/channelsjoinwindow.cpp
index eeef183fa..24f5f9410 100644
--- a/src/modules/channelsjoin/channelsjoinwindow.cpp
+++ b/src/modules/channelsjoin/channelsjoinwindow.cpp
@@ -76,7 +76,8 @@ KviChannelsJoinWindow::KviChannelsJoinWindow(QWidget * par, const char * name)
m_pGroupBox = new KviTalGroupBox(Qt::Horizontal,__tr2qs("Channel" ),this);
QString szMsg = __tr2qs("Name");
szMsg.append(":");
- QLabel * l = new QLabel(szMsg,m_pGroupBox);
+
+ new QLabel(szMsg,m_pGroupBox);
m_pChannelEdit = new QLineEdit(m_pGroupBox);
connect(m_pChannelEdit,SIGNAL(returnPressed()), this, SLOT(editReturnPressed()));
@@ -84,7 +85,7 @@ KviChannelsJoinWindow::KviChannelsJoinWindow(QWidget * par, const char * name)
szMsg = __tr2qs("Password");
szMsg.append(":");
- l = new QLabel(szMsg,m_pGroupBox);
+ QLabel(szMsg,m_pGroupBox);
m_pPass = new QLineEdit(m_pGroupBox);
m_pPass->setEchoMode(QLineEdit::Password);
@@ -200,7 +201,7 @@ void KviChannelsJoinWindow::fillListView()
par = new QTreeWidgetItem(par);
par->setText(0,__tr2qs("Current Network"));
par->setExpanded(true);
-
+
for(QStringList::Iterator it = pList->begin(); it != pList->end(); ++it)
{
chld = new QTreeWidgetItem(par);