diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:39:24 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:39:24 -0600 |
commit | f9ced3b3f13f3136ef63c33ef163042010d6e80b (patch) | |
tree | 293ce93dfb0dcfd79f83674116d7b3bc56f29af2 /quanta/src/document.cpp | |
parent | 29df04c24350cc76a41e2410d1c92445f9338b98 (diff) | |
download | tdewebdev-f9ced3b3f13f3136ef63c33ef163042010d6e80b.tar.gz tdewebdev-f9ced3b3f13f3136ef63c33ef163042010d6e80b.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'quanta/src/document.cpp')
-rw-r--r-- | quanta/src/document.cpp | 6 |
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(); |