summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/autostart.cpp8
-rw-r--r--src/autostart.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/autostart.cpp b/src/autostart.cpp
index 4895295..89d4181 100644
--- a/src/autostart.cpp
+++ b/src/autostart.cpp
@@ -94,7 +94,7 @@ void setStartOn(int start) {
path = ksd->localtdedir()+"env/";
break;
}
- KIO::file_move(fileName, KURL( path + fileName.fileName() ));
+ TDEIO::file_move(fileName, KURL( path + fileName.fileName() ));
fileName = path + fileName.fileName();
}
@@ -111,7 +111,7 @@ typedef KGenericFactory<autostart, TQWidget> autostartFactory;
K_EXPORT_COMPONENT_FACTORY( kcm_autostart, autostartFactory("kcmautostart"))
autostart::autostart(TQWidget *parent, const char *name, const TQStringList&)
- : KCModule(parent, name), myAboutData(0)
+ : TDECModule(parent, name), myAboutData(0)
{
TQGridLayout * AutostartConfigLayout = new TQGridLayout( this, 1, 1, 11, 6, "AutostartConfigLayout");
@@ -281,7 +281,7 @@ void autostart::removeCMD() {
if (!listCMD->selectedItem())
return;
- KIO::del(((desktop *)listCMD->selectedItem())->fileName);
+ TDEIO::del(((desktop *)listCMD->selectedItem())->fileName);
listCMD->takeItem( listCMD->selectedItem() );
kdDebug() << "Deleting file" << endl;
@@ -339,7 +339,7 @@ void autostart::save()
int autostart::buttons()
{
- return KCModule::Apply|KCModule::Help;
+ return TDECModule::Apply|TDECModule::Help;
}
diff --git a/src/autostart.h b/src/autostart.h
index 34aeec0..a836951 100644
--- a/src/autostart.h
+++ b/src/autostart.h
@@ -33,7 +33,7 @@
#include <tqpushbutton.h>
#include <tqcombobox.h>
-class autostart: public KCModule
+class autostart: public TDECModule
{
Q_OBJECT