summaryrefslogtreecommitdiffstats
path: root/knights/audio.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:08:54 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:08:54 -0600
commit35676c0c2e0844ba8429771708c8a04a3314338f (patch)
treec9c226a10fc7b83bf8e7dd35430e6b19aeb85eed /knights/audio.cpp
parent05485bbfed57bdeab67bc5683e0dd39901c61a7f (diff)
downloadknights-35676c0c2e0844ba8429771708c8a04a3314338f.tar.gz
knights-35676c0c2e0844ba8429771708c8a04a3314338f.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'knights/audio.cpp')
-rw-r--r--knights/audio.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knights/audio.cpp b/knights/audio.cpp
index ec3825b..b7c9501 100644
--- a/knights/audio.cpp
+++ b/knights/audio.cpp
@@ -113,7 +113,7 @@ void audio::setTheme( const TQString &newTheme )
a->audioMap.clear();
a->fileRef.clear();
- if( !KIO::NetAccess::download( newTheme + "theme.conf" , configFile ) )
+ if( !TDEIO::NetAccess::download( newTheme + "theme.conf" , configFile ) )
{
kdWarning() << "audio::setTheme: Can not access theme.conf from " << newTheme << endl;
return;
@@ -145,7 +145,7 @@ void audio::setTheme( const TQString &newTheme )
a->firstTime = FALSE;
delete themeConfig;
- KIO::NetAccess::removeTempFile( configFile );
+ TDEIO::NetAccess::removeTempFile( configFile );
}
void audio::prepFile( const TQString &source, const int &ref )
{
@@ -159,7 +159,7 @@ void audio::prepFile( const TQString &source, const int &ref )
dest->setAutoDelete( TRUE );
filename = dest->name();
- if( !KIO::NetAccess::download( source, filename ) )
+ if( !TDEIO::NetAccess::download( source, filename ) )
{
kdWarning() << "audio::prepFile: Can not download " << source << endl;
delete dest;