summaryrefslogtreecommitdiffstats
path: root/quanta/src/document.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/src/document.cpp')
-rw-r--r--quanta/src/document.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/src/document.cpp b/quanta/src/document.cpp
index c8a84ef4..2cec0c03 100644
--- a/quanta/src/document.cpp
+++ b/quanta/src/document.cpp
@@ -407,7 +407,7 @@ void Document::insertFile(const KURL& url)
fileName = url.path();
} else
{
- if (!KIO::NetAccess::download(url, fileName, this))
+ if (!TDEIO::NetAccess::download(url, fileName, this))
{
KMessageBox::error(this, i18n("<qt>Cannot download <b>%1</b>.</qt>").arg( url.prettyURL(0, KURL::StripFileProtocol)));
return;
@@ -2667,7 +2667,7 @@ void Document::setBackupPathEntryValue(const TQString& ev)
}
/** if the document is modified then backup it and insert an entry in quantarc */
-void Document::createBackup(KConfig* config)
+void Document::createBackup(TDEConfig* config)
{
if (isModified())
{
@@ -2715,7 +2715,7 @@ void Document::createBackup(KConfig* config)
}
}
/** if there is no more need for a backup copy then remove it */
-void Document::removeBackup(KConfig *config)
+void Document::removeBackup(TDEConfig *config)
{
TQString backupPathValueURL = KURL::fromPathOrURL(m_backupPathValue).url();