summaryrefslogtreecommitdiffstats
path: root/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/wizards/newuserwizard/knewuserwizard.cpp')
-rw-r--r--kmymoney2/wizards/newuserwizard/knewuserwizard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp b/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp
index 04daf5c..e9dd204 100644
--- a/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp
+++ b/kmymoney2/wizards/newuserwizard/knewuserwizard.cpp
@@ -344,13 +344,13 @@ bool FilePage::isComplete(void) const
// if a filename is present, check that
// a) the file does not exist
// b) the directory does exist
- rc = !KIO::NetAccess::exists(m_dataFileEdit->url(), false, m_wizard);
+ rc = !TDEIO::NetAccess::exists(m_dataFileEdit->url(), false, m_wizard);
if(rc) {
TQRegExp exp("(.*)/(.*)");
rc = false;
if(exp.search(m_dataFileEdit->url()) != -1) {
if(exp.cap(2).length() > 0) {
- rc = KIO::NetAccess::exists(exp.cap(1), true, m_wizard);
+ rc = TDEIO::NetAccess::exists(exp.cap(1), true, m_wizard);
}
}
}