diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:55:10 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:55:10 -0600 |
commit | 746abe84406ed1ec1a8dc68f29ce0ab8322ccc80 (patch) | |
tree | 34a73ef7b8771de54099eeffb941117e49a8865e /kig/modes/label.cc | |
parent | 999f961ff5278b84c8ffd8a91addb9343e589cf0 (diff) | |
download | tdeedu-746abe84406ed1ec1a8dc68f29ce0ab8322ccc80.tar.gz tdeedu-746abe84406ed1ec1a8dc68f29ce0ab8322ccc80.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kig/modes/label.cc')
-rw-r--r-- | kig/modes/label.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kig/modes/label.cc b/kig/modes/label.cc index 48f729bf..c92dccf8 100644 --- a/kig/modes/label.cc +++ b/kig/modes/label.cc @@ -376,7 +376,7 @@ void TextLabelModeBase::updateLinksLabel() } else // otherwise, we show a stub... - linktext = i18n( "argument %1" ).tqarg( count + 1 ); + linktext = i18n( "argument %1" ).arg( count + 1 ); d->wiz->myCustomWidget1->addLink( linktext, buf ); // set pos and prevpos to the next char after the last match, so @@ -406,7 +406,7 @@ void TextLabelModeBase::linkClicked( int i ) d->mwawd = ReallySelectingArgs; d->mwaaws = i; - mdoc.emitStatusBarText( i18n( "Selecting argument %1" ).tqarg( i + 1 ) ); + mdoc.emitStatusBarText( i18n( "Selecting argument %1" ).arg( i + 1 ) ); } void TextLabelModeBase::redrawScreen( KigWidget* w ) |