summaryrefslogtreecommitdiffstats
path: root/kplato
diff options
context:
space:
mode:
Diffstat (limited to 'kplato')
-rw-r--r--kplato/kptconfig.cc4
-rw-r--r--kplato/kptreportview.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/kplato/kptconfig.cc b/kplato/kptconfig.cc
index 442fc7e8..969f46ad 100644
--- a/kplato/kptconfig.cc
+++ b/kplato/kptconfig.cc
@@ -38,7 +38,7 @@ Config::~Config()
void Config::load() {
//kdDebug()<<k_funcinfo<<endl;
- KConfig *config = Factory::global()->config();
+ TDEConfig *config = Factory::global()->config();
/* if( config->hasGroup("Behavior"))
{
@@ -66,7 +66,7 @@ void Config::save() {
if (!m_readWrite)
return;
- KConfig *config = Factory::global()->config();
+ TDEConfig *config = Factory::global()->config();
// config->setGroup( "Behavior" );
// config->writeEntry("CalculationMode",m_behavior.calculationMode);
diff --git a/kplato/kptreportview.cc b/kplato/kptreportview.cc
index 97d15dd5..f88c0c20 100644
--- a/kplato/kptreportview.cc
+++ b/kplato/kptreportview.cc
@@ -662,7 +662,7 @@ void ReportView::getTemplateFile(const TQString &tpl) {
}
else
{
- if (KIO::NetAccess::download(url,localtpl,this))
+ if (TDEIO::NetAccess::download(url,localtpl,this))
isTemp = true;
else
KMessageBox::sorry(this,i18n("Unable to download template file: %1").arg(url.prettyURL()));
@@ -672,7 +672,7 @@ void ReportView::getTemplateFile(const TQString &tpl) {
{
openTemplateFile(localtpl);
if (isTemp)
- KIO::NetAccess::removeTempFile(localtpl);
+ TDEIO::NetAccess::removeTempFile(localtpl);
}
}