diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:34:38 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-07-29 19:24:39 +0200 |
commit | 2d29e200b6e2e416090d85eac13a3788c3f142a7 (patch) | |
tree | dca9426fddfbf8a905f01cbdcff7d7ed31a6cac9 /src/editor.cpp | |
parent | 87b7ae7ab924e13579d5a30e6c1544cd2f8a8cfb (diff) | |
download | abakus-2d29e200b6e2e416090d85eac13a3788c3f142a7.tar.gz abakus-2d29e200b6e2e416090d85eac13a3788c3f142a7.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit c9113d74fbb7e1e6b063915a0f6ac4a8a080b631)
Diffstat (limited to 'src/editor.cpp')
-rw-r--r-- | src/editor.cpp | 4 |
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(); |