summaryrefslogtreecommitdiffstats
path: root/src/evaluator.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:29:00 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:29:00 -0600
commitb877728731c783fbd7370935a6733c78c25d5ce2 (patch)
tree93c019e65513df453864f3434bff0da826213ffd /src/evaluator.cpp
parentd4eecf4afe4ddf66f4d00e1bcdab14f8d21655fb (diff)
downloadabakus-b877728731c783fbd7370935a6733c78c25d5ce2.tar.gz
abakus-b877728731c783fbd7370935a6733c78c25d5ce2.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/evaluator.cpp')
-rw-r--r--src/evaluator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evaluator.cpp b/src/evaluator.cpp
index 0bea1f3..92e64d4 100644
--- a/src/evaluator.cpp
+++ b/src/evaluator.cpp
@@ -140,7 +140,7 @@ static Token::Op matchOperator( const TQString& text )
if( text.length() == 1 )
{
TQChar p = text[0];
- switch( p.tqunicode() )
+ switch( p.unicode() )
{
case '+': result = Token::Plus; break;
case '-': result = Token::Minus; break;