Version: (using KDE Devel) Installed from: Compiled sources In: kdeextragear-1/k3b/src/k3b.cpp, line 1193 -- QStringList urls = KFileDialog::getOpenFileNames( ".", "*|All Files", this, i18n("Select Files to Add to Project") ); This should be: KURL::List fileNames = KFileDialog::getOpenURLs(".", "*|All Files", this, i18n("Select Files to Add to Project")); And before the burning, do something along the lines of: QString tmpFile; if( KIO::NetAccess::download( filenameiterator, tmpFile ) ) { //Add file to list of files to burn loadFile( tmpFile ); } //after burning KIO::NetAccess::removeTempFile( tmpFile );
Has this been implemented yet? Or is this bug still valid? I think it's a bit misleading for new users that you cannot expect the same network transparency within K3B that all other KDE apps offer. And the fix above really seems quite simple. Thanks!
*** This bug has been marked as a duplicate of 66665 ***