summaryrefslogtreecommitdiffstats
path: root/src/editor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/editor.cpp')
-rw-r--r--src/editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editor.cpp b/src/editor.cpp
index 3535c02..b9c8d00 100644
--- a/src/editor.cpp
+++ b/src/editor.cpp
@@ -527,7 +527,7 @@ void Editor::triggerAutoComplete()
if(choice.isEmpty())
choice = ValueManager::instance()->value(*it).toString();
- vchoices.append( TQString("%1:%2").tqarg( *it, choice ) );
+ vchoices.append( TQString("%1:%2").arg( *it, choice ) );
}
vchoices.sort();
@@ -627,7 +627,7 @@ void Editor::autoCalc()
Abakus::number_t result = parseString(str.latin1());
if( Result::lastResult()->type() == Result::Value )
{
- TQString ss = TQString("Result: <b>%2</b>").tqarg(result.toString());
+ TQString ss = TQString("Result: <b>%2</b>").arg(result.toString());
d->autoCalcLabel->setText( ss );
d->autoCalcLabel->adjustSize();