From 5183781c5dddd8447b308c24b2d7f9257bd0bcad Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:35:48 -0600 Subject: Remove additional unneeded tq method conversions --- src/projects/k3baudiotrackaddingdialog.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/projects/k3baudiotrackaddingdialog.cpp') diff --git a/src/projects/k3baudiotrackaddingdialog.cpp b/src/projects/k3baudiotrackaddingdialog.cpp index 5e5ca7e..42fe2ce 100644 --- a/src/projects/k3baudiotrackaddingdialog.cpp +++ b/src/projects/k3baudiotrackaddingdialog.cpp @@ -104,7 +104,7 @@ int K3bAudioTrackAddingDialog::addUrls( const KURL::List& urls, dlg.m_trackAfter = afterTrack; dlg.m_parentTrack = parentTrack; dlg.m_sourceAfter = afterSource; - dlg.m_infoLabel->setText( i18n("Adding files to project \"%1\"...").tqarg(doc->URL().fileName()) ); + dlg.m_infoLabel->setText( i18n("Adding files to project \"%1\"...").arg(doc->URL().fileName()) ); dlg.m_busyWidget->showBusy(true); TQTimer::singleShot( 0, &dlg, TQT_SLOT(slotAddUrls()) ); @@ -113,23 +113,23 @@ int K3bAudioTrackAddingDialog::addUrls( const KURL::List& urls, TQString message; if( !dlg.m_unreadableFiles.isEmpty() ) message += TQString("

%1:
%2") - .tqarg( i18n("Insufficient permissions to read the following files") ) - .tqarg( dlg.m_unreadableFiles.join( "
" ) ); + .arg( i18n("Insufficient permissions to read the following files") ) + .arg( dlg.m_unreadableFiles.join( "
" ) ); if( !dlg.m_notFoundFiles.isEmpty() ) message += TQString("

%1:
%2") - .tqarg( i18n("Unable to find the following files") ) - .tqarg( dlg.m_notFoundFiles.join( "
" ) ); + .arg( i18n("Unable to find the following files") ) + .arg( dlg.m_notFoundFiles.join( "
" ) ); if( !dlg.m_nonLocalFiles.isEmpty() ) message += TQString("

%1:
%2") - .tqarg( i18n("No non-local files supported") ) - .tqarg( dlg.m_unreadableFiles.join( "
" ) ); + .arg( i18n("No non-local files supported") ) + .arg( dlg.m_unreadableFiles.join( "
" ) ); if( !dlg.m_unsupportedFiles.isEmpty() ) message += TQString("

%1:
%2
%3") - .tqarg( i18n("Unable to handle the following files due to an unsupported format" ) ) - .tqarg( i18n("You may manually convert these audio files to wave using another " + .arg( i18n("Unable to handle the following files due to an unsupported format" ) ) + .arg( i18n("You may manually convert these audio files to wave using another " "application supporting the audio format and then add the wave files " "to the K3b project.") ) - .tqarg( dlg.m_unsupportedFiles.join( "
" ) ); + .arg( dlg.m_unsupportedFiles.join( "
" ) ); if( !message.isEmpty() ) KMessageBox::detailedSorry( parent, i18n("Problems while adding files to the project."), message ); @@ -162,7 +162,7 @@ void K3bAudioTrackAddingDialog::slotAddUrls() } } - m_infoLabel->setText( i18n("Analysing file '%1'...").tqarg( url.fileName() ) ); + m_infoLabel->setText( i18n("Analysing file '%1'...").arg( url.fileName() ) ); if( !url.isLocalFile() ) { valid = false; -- cgit v1.2.3