From kde-commits Sun Jan 23 22:33:06 2005 From: David Faure Date: Sun, 23 Jan 2005 22:33:06 +0000 To: kde-commits Subject: kdebase/libkonq Message-Id: <20050123223306.5D8551B8FC () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110651960625080 CVS commit by faure: Use pathOrURL to show nice paths in the "really want to move to trash" dialog, instead of file:/// urls. M +3 -3 konq_operations.cc 1.159 --- kdebase/libkonq/konq_operations.cc #1.158:1.159 @@ -250,5 +250,5 @@ bool KonqOperations::askDeleteConfirmati QStringList prettyList; for ( ; it != selectedURLs.end(); ++it ) - prettyList.append( (*it).prettyURL() ); + prettyList.append( (*it).pathOrURL() ); int result; @@ -644,5 +644,5 @@ void KonqOperations::doFileCopy() void KonqOperations::rename( QWidget * parent, const KURL & oldurl, const KURL& newurl ) { - kdDebug(1203) << "KonqOperations::rename oldurl=" << oldurl.prettyURL() << " newurl=" << newurl.prettyURL() << endl; + kdDebug(1203) << "KonqOperations::rename oldurl=" << oldurl << " newurl=" << newurl << endl; if ( oldurl == newurl ) return; @@ -742,5 +742,5 @@ void KonqOperations::rename( QWidget * p KURL newurl( oldurl ); newurl.setPath( oldurl.directory(false, true) + name ); - kdDebug(1203) << "KonqOperations::rename("<