summaryrefslogtreecommitdiffstats
path: root/src/editor.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit551fb6d0d8c5d2ed90363a1017816d252b03d9bd (patch)
tree80f1396a23fdc417726dcf1d8b4b3aba82588068 /src/editor.cpp
parent1b7882c63e0e5e7926595444122726270617279b (diff)
downloadabakus-551fb6d0d8c5d2ed90363a1017816d252b03d9bd.tar.gz
abakus-551fb6d0d8c5d2ed90363a1017816d252b03d9bd.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/abakus@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/editor.cpp')
-rw-r--r--src/editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editor.cpp b/src/editor.cpp
index ec83878..caadb5e 100644
--- a/src/editor.cpp
+++ b/src/editor.cpp
@@ -596,7 +596,7 @@ void Editor::autoCalc()
// If we're using set for a function don't try.
TQRegExp setFn("\\s*set.*\\(.*=");
- if( str.tqfind(setFn) != -1 )
+ if( str.find(setFn) != -1 )
return;
// strip off assignment operator, e.g. "x=1+2" becomes "1+2" only