summaryrefslogtreecommitdiffstats
path: root/kmymoney2/mymoney/mymoneyutils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmymoney2/mymoney/mymoneyutils.cpp')
-rw-r--r--kmymoney2/mymoney/mymoneyutils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kmymoney2/mymoney/mymoneyutils.cpp b/kmymoney2/mymoney/mymoneyutils.cpp
index b55c485..08ffff4 100644
--- a/kmymoney2/mymoney/mymoneyutils.cpp
+++ b/kmymoney2/mymoney/mymoneyutils.cpp
@@ -189,7 +189,7 @@ void operator delete(void *p) throw()
{
if(enable==true) {
CheckMemoryTable::Iterator it;
- it = chkmem.table.tqfind(p);
+ it = chkmem.table.find(p);
if(it != chkmem.table.end()) {
chkmem.table.remove(it);
}
@@ -201,7 +201,7 @@ void operator delete [] (void *p) throw()
{
if(enable==true) {
CheckMemoryTable::Iterator it;
- it = chkmem.table.tqfind(p);
+ it = chkmem.table.find(p);
if(it != chkmem.table.end()) {
chkmem.table.remove(it);
}
@@ -217,7 +217,7 @@ TQString MyMoneyUtils::getFileExtension(TQString strFileName)
if(!strFileName.isEmpty())
{
//find last . delminator
- int nLoc = strFileName.tqfindRev('.');
+ int nLoc = strFileName.findRev('.');
if(nLoc != -1)
{
strTemp = strFileName.right(strFileName.length() - (nLoc + 1));
@@ -331,7 +331,7 @@ unsigned long extractId(const TQString& txt)
int pos;
unsigned long rc = 0;
- pos = txt.tqfind(TQRegExp("\\d+"), 0);
+ pos = txt.find(TQRegExp("\\d+"), 0);
if(pos != -1) {
rc = atol(txt.mid(pos));
}