summaryrefslogtreecommitdiffstats
path: root/noatun/modules/htmlexport
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/modules/htmlexport')
-rw-r--r--noatun/modules/htmlexport/htmlexport.cpp8
-rw-r--r--noatun/modules/htmlexport/htmlexport.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/noatun/modules/htmlexport/htmlexport.cpp b/noatun/modules/htmlexport/htmlexport.cpp
index 19097212..ab6c9194 100644
--- a/noatun/modules/htmlexport/htmlexport.cpp
+++ b/noatun/modules/htmlexport/htmlexport.cpp
@@ -129,7 +129,7 @@ void HTMLExport::slotExport()
file.close();
// tempfile -> userdefined file
- KIO::NetAccess::upload(temp.name(), url, 0);
+ TDEIO::NetAccess::upload(temp.name(), url, 0);
}
TQString HTMLExport::htmlEscape(const TQString &source) {
@@ -176,7 +176,7 @@ Prefs::Prefs(TQObject *parent)
{
// Init Config
- KConfig *config = TDEGlobal::config();
+ TDEConfig *config = TDEGlobal::config();
config->setGroup("HTMLExport");
// Set default values
@@ -275,7 +275,7 @@ Prefs::Prefs(TQObject *parent)
void Prefs::save()
{
- KConfig *config = TDEGlobal::config();
+ TDEConfig *config = TDEGlobal::config();
TQString bgRealURL = bgPicPath->url();
@@ -295,7 +295,7 @@ void Prefs::save()
void Prefs::reopen()
{
- KConfig *config = TDEGlobal::config();
+ TDEConfig *config = TDEGlobal::config();
headColorSelect->setColor(config->readColorEntry( "headColor" ) );
hoverColorSelect->setColor( config->readColorEntry( "hoverColor" ) );
bgColorSelect->setColor( config->readColorEntry( "bgColor" ) );
diff --git a/noatun/modules/htmlexport/htmlexport.h b/noatun/modules/htmlexport/htmlexport.h
index acadeabd..9e710547 100644
--- a/noatun/modules/htmlexport/htmlexport.h
+++ b/noatun/modules/htmlexport/htmlexport.h
@@ -44,7 +44,7 @@ public:
private:
TQString htmlEscape(const TQString &source);
TQString getColorByEntry(TQString s);
- KConfig *config;
+ TDEConfig *config;
KAction *mAction;
private slots: