diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:08:33 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:08:33 -0600 |
commit | 6078e14f28ec3b34cc2041cbd8628a1d8420512c (patch) | |
tree | c1fc7025048f77334cf5e4d9c76b7ba5ecc12ba7 /kmymoney2/converter/mymoneytemplate.cpp | |
parent | 6c1d52c8248adb9189c944a28efde52330e99b66 (diff) | |
download | kmymoney-6078e14f28ec3b34cc2041cbd8628a1d8420512c.tar.gz kmymoney-6078e14f28ec3b34cc2041cbd8628a1d8420512c.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kmymoney2/converter/mymoneytemplate.cpp')
-rw-r--r-- | kmymoney2/converter/mymoneytemplate.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/converter/mymoneytemplate.cpp b/kmymoney2/converter/mymoneytemplate.cpp index 553e682..191474f 100644 --- a/kmymoney2/converter/mymoneytemplate.cpp +++ b/kmymoney2/converter/mymoneytemplate.cpp @@ -67,11 +67,11 @@ bool MyMoneyTemplate::loadTemplate(const KURL& url) } else { bool rc; - rc = KIO::NetAccess::download(url, filename, tqApp->mainWidget()); + rc = TDEIO::NetAccess::download(url, filename, tqApp->mainWidget()); if(!rc) { KMessageBox::detailedError(tqApp->mainWidget(), i18n("Error while loading file '%1'!").arg(url.url()), - KIO::NetAccess::lastErrorString(), + TDEIO::NetAccess::lastErrorString(), i18n("File access error")); return false; } @@ -105,7 +105,7 @@ bool MyMoneyTemplate::loadTemplate(const KURL& url) // if a temporary file was constructed by NetAccess::download, // then it will be removed with the next call. Otherwise, it // stays untouched on the local filesystem - KIO::NetAccess::removeTempFile(filename); + TDEIO::NetAccess::removeTempFile(filename); return rc; } @@ -403,7 +403,7 @@ bool MyMoneyTemplate::saveTemplate(const KURL& url) } else { KTempFile tmpfile; saveToLocalFile(tmpfile.file()); - if(!KIO::NetAccess::upload(tmpfile.name(), url, NULL)) + if(!TDEIO::NetAccess::upload(tmpfile.name(), url, NULL)) throw new MYMONEYEXCEPTION(i18n("Unable to upload to '%1'").arg(url.url())); tmpfile.unlink(); } |