CVS commit by montanaro: Fixes for kdelibs 3.2 M +1 -1 netaccess.cpp 1.6 M +4 -2 netaccess.h 1.4 --- kdenox/konq-embed/dropin/kio/netaccess.cpp #1.5:1.6 @@ -26,5 +26,5 @@ using namespace KIO; -bool NetAccess::download( const KURL &url, QString &target ) +bool NetAccess::download( const KURL &url, QString &target, QWidget * ) { if ( !url.isLocalFile() ) --- kdenox/konq-embed/dropin/kio/netaccess.h #1.3:1.4 @@ -13,10 +13,12 @@ namespace KIO { public: - static bool stat( const KURL &src, KIO::UDSEntry &entry ) + static bool stat( + const KURL &src, KIO::UDSEntry &entry, QWidget *window = 0 ) //FW, ML XXX Make this compile //{ return ::stat( QFile::encodeName( src.path() ), &entry ) != -1; } { return false; } - static bool download( const KURL &src, QString &target ); + static bool download( + const KURL &src, QString &target, QWidget *window = 0 ); static void removeTempFile( const QString & );