summaryrefslogtreecommitdiffstats
path: root/src/option/k3bthemeoptiontab.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:28 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:28 -0600
commit83b79bb29aaa412caec6abcdb42ca21d248b3b3a (patch)
treef48e8ae855d4a0be0c3ecf912a92168a829ff8c5 /src/option/k3bthemeoptiontab.cpp
parent2a3ced9fbd85b4fdbfa9b0a91f8d22e35ceaf6b5 (diff)
downloadk3b-83b79bb29aaa412caec6abcdb42ca21d248b3b3a.tar.gz
k3b-83b79bb29aaa412caec6abcdb42ca21d248b3b3a.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/option/k3bthemeoptiontab.cpp')
-rw-r--r--src/option/k3bthemeoptiontab.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/option/k3bthemeoptiontab.cpp b/src/option/k3bthemeoptiontab.cpp
index ec4ca6c..ebb92be 100644
--- a/src/option/k3bthemeoptiontab.cpp
+++ b/src/option/k3bthemeoptiontab.cpp
@@ -140,7 +140,7 @@ void K3bThemeOptionTab::slotInstallTheme()
TQString themeTmpFile;
// themeTmpFile contains the name of the downloaded file
- if( !KIO::NetAccess::download( themeURL, themeTmpFile, this ) ) {
+ if( !TDEIO::NetAccess::download( themeURL, themeTmpFile, this ) ) {
TQString sorryText;
if (themeURL.isLocalFile())
sorryText = i18n("Unable to find the icon theme archive %1.");
@@ -196,7 +196,7 @@ void K3bThemeOptionTab::slotInstallTheme()
}
archive.close();
- KIO::NetAccess::removeTempFile(themeTmpFile);
+ TDEIO::NetAccess::removeTempFile(themeTmpFile);
readSettings();
}
@@ -227,7 +227,7 @@ void K3bThemeOptionTab::slotRemoveTheme()
readSettings();
// delete the theme data itself
- KIO::del( path, false, false );
+ TDEIO::del( path, false, false );
}
}