summaryrefslogtreecommitdiffstats
path: root/src/app/playlistFile.cpp
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-06-13 16:33:09 +0200
committergregory guy <gregory-tde@laposte.net>2020-06-13 16:33:09 +0200
commit12b478cefdf1789828dbcd677d409cf8bad654ca (patch)
treee0fd4a3b7a3d5b64ede310493a7b25624807f8b1 /src/app/playlistFile.cpp
parent2c9bc9b806f533df7b8f5349467d0f4be95314a4 (diff)
downloadcodeine-12b478cefdf1789828dbcd677d409cf8bad654ca.tar.gz
codeine-12b478cefdf1789828dbcd677d409cf8bad654ca.zip
Conversion KDE -> TDE environment.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'src/app/playlistFile.cpp')
-rw-r--r--src/app/playlistFile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app/playlistFile.cpp b/src/app/playlistFile.cpp
index 323643d..83b1f5d 100644
--- a/src/app/playlistFile.cpp
+++ b/src/app/playlistFile.cpp
@@ -7,7 +7,7 @@
#include "codeine.h"
#include "debug.h"
-#include <kio/netaccess.h>
+#include <tdeio/netaccess.h>
#include "playlistFile.h"
#include <ntqfile.h>
#include <ntqtextstream.h>
@@ -35,7 +35,7 @@ PlaylistFile::PlaylistFile( const KURL &url )
if( m_isRemoteFile ) {
path = TQString();
- if( !KIO::NetAccess::download( url, path, Codeine::mainWindow() ) ) {
+ if( !TDEIO::NetAccess::download( url, path, Codeine::mainWindow() ) ) {
m_error = i18n( "Codeine could not download the remote playlist: %1" ).arg( url.prettyURL() );
return;
}
@@ -62,7 +62,7 @@ PlaylistFile::PlaylistFile( const KURL &url )
PlaylistFile::~PlaylistFile()
{
if( m_isRemoteFile )
- KIO::NetAccess::removeTempFile( m_path );
+ TDEIO::NetAccess::removeTempFile( m_path );
}