CVS commit by goffioul: Fix bug #74732: URL protocol is already part of the list view item CCMAIL: 74732-done@bugs.kde.org M +1 -2 kfilelist.cpp 1.15.2.1 --- kdelibs/kdeprint/kfilelist.cpp #1.15:1.15.2.1 @@ -257,6 +257,5 @@ void KFileList::slotOpenFile() if (item) { - KURL url; - url.setPath(item->text(2)); + KURL url( item->text( 2 ) ); new KRun(url); }