author | harlekin <harlekin> | 2003-02-11 19:34:14 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-02-11 19:34:14 (UTC) |
commit | af398bd4c280e7c27754b409851fbe8189d08819 (patch) (unidiff) | |
tree | 2358594d8e60673f3f0909e3d9dab628c555322e | |
parent | 3a82474f1b90ac803f8dd9dd43f2901e7a0b0aad (diff) | |
download | opie-af398bd4c280e7c27754b409851fbe8189d08819.zip opie-af398bd4c280e7c27754b409851fbe8189d08819.tar.gz opie-af398bd4c280e7c27754b409851fbe8189d08819.tar.bz2 |
fix bug #259, asterik instead of cleartext for password
-rw-r--r-- | noncore/net/opieirc/ircservereditor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircservereditor.cpp b/noncore/net/opieirc/ircservereditor.cpp index 91384fd..60274d1 100644 --- a/noncore/net/opieirc/ircservereditor.cpp +++ b/noncore/net/opieirc/ircservereditor.cpp | |||
@@ -33,6 +33,7 @@ IRCServerEditor::IRCServerEditor(IRCServer server, QWidget* parent, const char* | |||
33 | layout->addWidget(m_realname, 4, 1); | 33 | layout->addWidget(m_realname, 4, 1); |
34 | label = new QLabel(tr("Password :"), this); | 34 | label = new QLabel(tr("Password :"), this); |
35 | m_password = new QLineEdit(server.password(), this); | 35 | m_password = new QLineEdit(server.password(), this); |
36 | m_password->setEchoMode( QLineEdit::Password ); | ||
36 | QWhatsThis::add(m_password, tr("Password to connect to the server (if required)")); | 37 | QWhatsThis::add(m_password, tr("Password to connect to the server (if required)")); |
37 | layout->addWidget(label, 5, 0); | 38 | layout->addWidget(label, 5, 0); |
38 | layout->addWidget(m_password, 5, 1); | 39 | layout->addWidget(m_password, 5, 1); |