SVN commit 927091 by chehrlic: QFile::exists() needs a QString, not a QByteArray M +1 -1 copyjob.cpp --- branches/KDE/4.2/kdelibs/kio/kio/copyjob.cpp #927090:927091 @@ -1637,7 +1637,7 @@ kDebug(7007) << "KTemporaryFile using" << _tmp << "as intermediary"; if ( KDE_rename( _src, _tmp ) == 0 ) { - if ( !QFile::exists( _dest ) && KDE_rename( _tmp, _dest ) == 0 ) + if ( !QFile::exists( dest.path() ) && KDE_rename( _tmp, _dest ) == 0 ) { kDebug(7007) << "Success."; err = 0;