Git commit 07e211ba77f5bb95df1ada3713c3ff5bcf1168ed by Alex Fiestas. Committed on 03/02/11 at 05:22. Pushed by afiestas into branch 'master'. Ups, this is just the other way around, with no devices we want the files. M +5 -1 src/fileitemactionplugin/sendfileitemaction.cpp http://commits.kde.org/bluedevil/07e211ba77f5bb95df1ada3713c3ff5bcf1168ed diff --git a/src/fileitemactionplugin/sendfileitemaction.cpp b/src/fileitemactionplugin/sendfileitemaction.cpp index 09d3a57..cb5ccec 100644 --- a/src/fileitemactionplugin/sendfileitemaction.cpp +++ b/src/fileitemactionplugin/sendfileitemaction.cpp @@ -108,7 +108,11 @@ void SendFileItemAction::otherTriggered() { kDebug(); QStringList args; - args.append("-u " + static_cast(sender())->data().toString()); + + KUrl::List fileList = m_fileItemInfos.urlList(); + Q_FOREACH(const KUrl &url, fileList) { + args.append("-f " + url.path()); + } KProcess process; process.setProgram("bluedevil-sendfile", args);