diff options
Diffstat (limited to 'kmymoney2/converter/mymoneyqifreader.cpp')
-rw-r--r-- | kmymoney2/converter/mymoneyqifreader.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmymoney2/converter/mymoneyqifreader.cpp b/kmymoney2/converter/mymoneyqifreader.cpp index bcb9091..2e7266b 100644 --- a/kmymoney2/converter/mymoneyqifreader.cpp +++ b/kmymoney2/converter/mymoneyqifreader.cpp @@ -402,10 +402,10 @@ bool MyMoneyQifReader::startImport(void) m_filename = TQString(); m_data.clear(); - if(!KIO::NetAccess::download(m_url, m_filename, NULL)) { + if(!TDEIO::NetAccess::download(m_url, m_filename, NULL)) { KMessageBox::detailedError(0, i18n("Error while loading file '%1'!").arg(m_url.prettyURL()), - KIO::NetAccess::lastErrorString(), + TDEIO::NetAccess::lastErrorString(), i18n("File access error")); return false; } @@ -459,7 +459,7 @@ bool MyMoneyQifReader::finishImport(void) m_file = 0; // remove the Don't ask again entries - KConfig* config = TDEGlobal::config(); + TDEConfig* config = TDEGlobal::config(); config->setGroup(TQString::fromLatin1("Notification Messages")); TQStringList::ConstIterator it; @@ -479,7 +479,7 @@ bool MyMoneyQifReader::finishImport(void) m_file = 0; // remove the Don't ask again entries - KConfig* config = TDEGlobal::config(); + TDEConfig* config = TDEGlobal::config(); config->setGroup(TQString::fromLatin1("Notification Messages")); TQStringList::ConstIterator it; @@ -500,7 +500,7 @@ bool MyMoneyQifReader::finishImport(void) // 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(m_filename); + TDEIO::NetAccess::removeTempFile(m_filename); #if 0 // Add the transaction entries |