summaryrefslogtreecommitdiffstats
path: root/kmymoney2/kmymoneyutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/kmymoneyutils.cpp')
-rw-r--r--kmymoney2/kmymoneyutils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/kmymoneyutils.cpp b/kmymoney2/kmymoneyutils.cpp
index 4516413..c2e41ca 100644
--- a/kmymoney2/kmymoneyutils.cpp
+++ b/kmymoney2/kmymoneyutils.cpp
@@ -281,7 +281,7 @@ TQString KMyMoneyUtils::findResource(const char* type, const TQString& filename)
// check that the placeholder is present
if(!filename.find("%1")) {
- qWarning("%%1 not found in '%s'", filename.latin1());
+ tqWarning("%%1 not found in '%s'", filename.latin1());
return filename;
}
@@ -293,7 +293,7 @@ TQString KMyMoneyUtils::findResource(const char* type, const TQString& filename)
rc = KGlobal::dirs()->findResource(type, mask.arg(language));
}
if(rc.isEmpty()) {
- // qDebug(TQString("html/home_%1.html not found").arg(country).latin1());
+ // tqDebug(TQString("html/home_%1.html not found").arg(country).latin1());
rc = KGlobal::dirs()->findResource(type, mask.arg(country));
}
if(rc.isEmpty()) {
@@ -301,7 +301,7 @@ TQString KMyMoneyUtils::findResource(const char* type, const TQString& filename)
}
if(rc.isEmpty()) {
- qWarning("No resource found for (%s,%s)", type, filename.latin1());
+ tqWarning("No resource found for (%s,%s)", type, filename.latin1());
}
return rc;
}
@@ -432,7 +432,7 @@ MyMoneyTransaction KMyMoneyUtils::scheduledTransaction(const MyMoneySchedule& sc
calculateAutoLoan(schedule, t, TQMap<TQString, MyMoneyMoney>());
}
} catch (MyMoneyException* e) {
- qDebug("Unable to load schedule details for '%s' during transaction match: %s", schedule.name().data(), e->what().data());
+ tqDebug("Unable to load schedule details for '%s' during transaction match: %s", schedule.name().data(), e->what().data());
delete e;
}