diff options
Diffstat (limited to 'kicker-applets/math/parser.cpp')
-rw-r--r-- | kicker-applets/math/parser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kicker-applets/math/parser.cpp b/kicker-applets/math/parser.cpp index d8592a2..e1dee3e 100644 --- a/kicker-applets/math/parser.cpp +++ b/kicker-applets/math/parser.cpp @@ -243,9 +243,9 @@ int Parser::addfkt(TQString str) err=0; errpos=1; str.remove(" " ); - const int p1=str.tqfind('('); - int p2=str.tqfind(','); - const int p3=str.tqfind(")="); + const int p1=str.find('('); + int p2=str.find(','); + const int p3=str.find(")="); //insert '*' when it is needed for(int i=p1+3; i < (int) str.length();i++) |