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/mymoneyqifreader.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/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 |