aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar un1versal2015-11-09 09:45:25 +0000
committerGravatar un1versal2015-11-09 14:47:46 +0000
commitc119fba5cd7ce3871564afa6979b1e222b3425a4 (patch)
tree9f7730f1217f256889ced37703f0bd551b6751f8 /src
parentChannelsJoinDialog: cleanup and minor button adjustments (diff)
downloadKVIrc-c119fba5cd7ce3871564afa6979b1e222b3425a4.tar.gz
KVIrc-c119fba5cd7ce3871564afa6979b1e222b3425a4.tar.bz2
KVIrc-c119fba5cd7ce3871564afa6979b1e222b3425a4.zip
ChannelsJoinDialog: fix password label not showing
closes #1734
Diffstat (limited to 'src')
-rw-r--r--src/modules/channelsjoin/ChannelsJoinDialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/channelsjoin/ChannelsJoinDialog.cpp b/src/modules/channelsjoin/ChannelsJoinDialog.cpp
index a76474bba..699d698e8 100644
--- a/src/modules/channelsjoin/ChannelsJoinDialog.cpp
+++ b/src/modules/channelsjoin/ChannelsJoinDialog.cpp
@@ -87,7 +87,8 @@ ChannelsJoinDialog::ChannelsJoinDialog(const char * name)
szMsg = __tr2qs("Password");
szMsg.append(":");
- QLabel(szMsg,m_pGroupBox);
+
+ new QLabel(szMsg,m_pGroupBox);
m_pPass = new QLineEdit(m_pGroupBox);
m_pPass->setEchoMode(QLineEdit::Password);