summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit1b7882c63e0e5e7926595444122726270617279b (patch)
tree5dffe8e2325668bcff3b27b12a90b9ac769036f8
parentf773fcd681308ba8c29165c85c10082693b5cf04 (diff)
downloadabakus-1b7882c6.tar.gz
abakus-1b7882c6.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/abakus@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--src/evaluator.cpp2
-rw-r--r--src/mainwindow.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/evaluator.cpp b/src/evaluator.cpp
index 68a21a6..71998cf 100644
--- a/src/evaluator.cpp
+++ b/src/evaluator.cpp
@@ -234,7 +234,7 @@ TQString Evaluator::autoFix( const TQString& expr )
if( expr[c] >= TQChar(32) )
result.append( expr[c] );
- // automagically close all tqparenthesis
+ // automagically close all parenthesis
Tokens tokens = Evaluator::scan( result );
for( unsigned i=0; i<tokens.count(); i++ )
if( tokens[i].asOperator() == Token::LeftPar ) par++;
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 60e77bd..8ae3fc4 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -241,7 +241,7 @@ void MainWindow::slotReturnPressed()
if(FunctionManager::instance()->isFunction(str))
str += " ans";
- // Add right tqparentheses as needed to balance out the expression.
+ // Add right parentheses as needed to balance out the expression.
int parenLevel = getParenthesesLevel(str);
for(int i = 0; i < parenLevel; ++i)
str += ')';