diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-12-02 00:43:11 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-12-02 00:43:11 +0900 |
commit | f0dd111676f9809ed135c7c31f68437bda5e35ea (patch) | |
tree | 3e7eb7b8f289e092f10af4e3971e3e45e0011df9 | |
parent | de88d505a934f55b52aa48dac3749cea7de1122f (diff) | |
download | amarok-f0dd111676f9809ed135c7c31f68437bda5e35ea.tar.gz amarok-f0dd111676f9809ed135c7c31f68437bda5e35ea.zip |
Adapted to new KPasswordEdit::password() signature. This relates to bug 2961.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | amarok/src/mediadevice/daap/daapclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/amarok/src/mediadevice/daap/daapclient.cpp b/amarok/src/mediadevice/daap/daapclient.cpp index 0df0820f..1f5e9360 100644 --- a/amarok/src/mediadevice/daap/daapclient.cpp +++ b/amarok/src/mediadevice/daap/daapclient.cpp @@ -542,7 +542,7 @@ DaapClient::passwordPrompt() PasswordDialog dialog( 0 ); if( dialog.exec() == TQDialog::Accepted ) { - Daap::Reader* reader = new Daap::Reader( callback->host(), callback->port(), root, TQString( dialog.m_input->password() ), this, callback->name() ); + Daap::Reader* reader = new Daap::Reader( callback->host(), callback->port(), root, dialog.m_input->password(), this, callback->name() ); root->setReader( reader ); connect( reader, TQT_SIGNAL( daapBundles( const TQString&, Daap::SongList ) ), this, TQT_SLOT( createTree( const TQString&, Daap::SongList ) ) ); |