diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:40:56 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:40:56 -0600 |
commit | 6afce6c4bc7ea82d8644358216a72a585bffaf0a (patch) | |
tree | 4ace829a6b7d358d7d7a7a99b74891d211b8a3d5 /src/optionseditor.cpp | |
parent | 546e1d89596af9c0bd0176fb8812bf0faa00d9de (diff) | |
download | soundkonverter-6afce6c4bc7ea82d8644358216a72a585bffaf0a.tar.gz soundkonverter-6afce6c4bc7ea82d8644358216a72a585bffaf0a.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/optionseditor.cpp')
-rwxr-xr-x | src/optionseditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/optionseditor.cpp b/src/optionseditor.cpp index c31597d..2b18cbe 100755 --- a/src/optionseditor.cpp +++ b/src/optionseditor.cpp @@ -384,7 +384,7 @@ void OptionsEditor::itemsSelected( TQValueList<FileListItem*> items ) } } else { - setCaption( i18n("%1 Files").tqarg(items.count()) ); + setCaption( i18n("%1 Files").arg(items.count()) ); TQValueList<FileListItem*>::Iterator it = items.begin(); ConversionOptions cOptions = (*it)->options; TQString title = ( (*it)->tags == 0 ) ? "" : (*it)->tags->title; |