diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:10:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:10:32 -0600 |
commit | 3fe437def8063926892bddf2dcc733861308836d (patch) | |
tree | 021d66ad023a32bc8ea0074a1ab3d01316aff8b0 /kplato | |
parent | 5b8ab149469c8e186ee8b05d90c0103ae722dd85 (diff) | |
download | koffice-3fe437def8063926892bddf2dcc733861308836d.tar.gz koffice-3fe437def8063926892bddf2dcc733861308836d.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kplato')
-rw-r--r-- | kplato/kptconfig.cc | 4 | ||||
-rw-r--r-- | kplato/kptreportview.cc | 4 |
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); } } |