From kde-commits Mon Feb 23 16:41:10 2004 From: Michael Goffioul Date: Mon, 23 Feb 2004 16:41:10 +0000 To: kde-commits Subject: KDE_3_2_BRANCH: kdelibs/kdeprint Message-Id: <20040223164110.BEFC19959 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=107755447802341 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); }