summaryrefslogtreecommitdiffstats
path: root/kmymoney2/kmymoneyutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/kmymoneyutils.cpp')
-rw-r--r--kmymoney2/kmymoneyutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kmymoney2/kmymoneyutils.cpp b/kmymoney2/kmymoneyutils.cpp
index ae7a883..c73a5ce 100644
--- a/kmymoney2/kmymoneyutils.cpp
+++ b/kmymoney2/kmymoneyutils.cpp
@@ -236,7 +236,7 @@ bool KMyMoneyUtils::appendCorrectFileExt(TQString& str, const TQString& strExtTo
TQString strExt, strTemp;
strTemp = str.left(nLoc + 1);
strExt = str.right(str.length() - (nLoc + 1));
- if(strExt.find(strExtToUse, 0, FALSE) == -1) {
+ if(strExt.find(strExtToUse, 0, false) == -1) {
// if the extension given contains a period, we remove our's
if(strExtToUse.find('.') != -1)
strTemp = strTemp.left(strTemp.length()-1);