diff options
| author | 2015-11-09 09:45:25 +0000 | |
|---|---|---|
| committer | 2015-11-09 14:47:46 +0000 | |
| commit | c119fba5cd7ce3871564afa6979b1e222b3425a4 (patch) | |
| tree | 9f7730f1217f256889ced37703f0bd551b6751f8 /src/modules/channelsjoin/ChannelsJoinDialog.cpp | |
| parent | ChannelsJoinDialog: cleanup and minor button adjustments (diff) | |
| download | KVIrc-c119fba5cd7ce3871564afa6979b1e222b3425a4.tar.gz KVIrc-c119fba5cd7ce3871564afa6979b1e222b3425a4.tar.bz2 KVIrc-c119fba5cd7ce3871564afa6979b1e222b3425a4.zip | |
ChannelsJoinDialog: fix password label not showing
closes #1734
Diffstat (limited to 'src/modules/channelsjoin/ChannelsJoinDialog.cpp')
| -rw-r--r-- | src/modules/channelsjoin/ChannelsJoinDialog.cpp | 3 |
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); |
