From 3c5631f74d1c75204f950140331e10f739082ee9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:33:36 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kuickshow/src/imagewindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kuickshow/src/imagewindow.cpp') diff --git a/kuickshow/src/imagewindow.cpp b/kuickshow/src/imagewindow.cpp index 6b71a758..558e4c71 100644 --- a/kuickshow/src/imagewindow.cpp +++ b/kuickshow/src/imagewindow.cpp @@ -839,10 +839,10 @@ void ImageWindow::dropEvent( TQDropEvent *e ) if ( KURLDrag::decode( e, list ) && !list.isEmpty()) { TQString tmpFile; const KURL &url = list.first(); - if (KIO::NetAccess::download( url, tmpFile, this ) ) + if (TDEIO::NetAccess::download( url, tmpFile, this ) ) { loadImage( tmpFile ); - KIO::NetAccess::removeTempFile( tmpFile ); + TDEIO::NetAccess::removeTempFile( tmpFile ); } updateWidget(); e->accept(); @@ -1006,7 +1006,7 @@ bool ImageWindow::saveImage( const KURL& dest, bool keepOriginalSize ) { if ( isFullscreen() ) toggleFullscreen(); // otherwise upload window would block us invisibly - success = KIO::NetAccess::upload( saveFile, dest, const_cast( this ) ); + success = TDEIO::NetAccess::upload( saveFile, dest, const_cast( this ) ); } Imlib_kill_image( id, saveIm ); -- cgit v1.2.1