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 --- plugins/audiooutput/alsa/k3balsaoutputplugin.cpp | 20 ++++++++++---------- plugins/decoder/flac/k3bflacdecoder.cpp | 4 ++-- plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp | 2 +- plugins/decoder/mp3/k3bmaddecoder.cpp | 4 ++-- plugins/decoder/ogg/k3boggvorbisdecoder.cpp | 8 ++++---- plugins/decoder/wave/k3bwavedecoder.cpp | 4 ++-- plugins/encoder/external/k3bexternalencoder.cpp | 4 ++-- .../lame/base_k3blameencodersettingswidget.ui | 8 ++++---- plugins/encoder/lame/k3blameencoder.cpp | 18 +++++++++--------- .../ogg/base_k3boggvorbisencodersettingswidget.ui | 4 ++-- plugins/encoder/ogg/k3boggvorbisencoder.cpp | 2 +- .../k3baudiometainforenamerplugin.cpp | 6 +++--- 12 files changed, 42 insertions(+), 42 deletions(-) (limited to 'plugins') diff --git a/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp b/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp index 3e97cda..192c337 100644 --- a/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp +++ b/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp @@ -109,7 +109,7 @@ bool K3bAlsaOutputPlugin::recoverFromError( int err ) if( err == -EPIPE ) { err = snd_pcm_prepare( d->pcm_playback ); if( err < 0 ) { - d->lastErrorMessage = i18n("Internal Alsa problem: %1").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Internal Alsa problem: %1").arg(snd_strerror(err)); return false; } } @@ -121,7 +121,7 @@ bool K3bAlsaOutputPlugin::recoverFromError( int err ) // unable to wake up pcm device, restart it err = snd_pcm_prepare( d->pcm_playback ); if( err < 0 ) { - d->lastErrorMessage = i18n("Internal Alsa problem: %1").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Internal Alsa problem: %1").arg(snd_strerror(err)); return false; } } @@ -153,7 +153,7 @@ bool K3bAlsaOutputPlugin::init() int err = snd_pcm_open( &d->pcm_playback, alsaDevice.local8Bit(), SND_PCM_STREAM_PLAYBACK, 0 ); if( err < 0 ) { - d->lastErrorMessage = i18n("Could not open alsa audio device '%1' (%2).").tqarg(alsaDevice).tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not open alsa audio device '%1' (%2).").arg(alsaDevice).arg(snd_strerror(err)); d->error = true; return false; } @@ -174,20 +174,20 @@ bool K3bAlsaOutputPlugin::setupHwParams() int err = 0; if( ( err = snd_pcm_hw_params_malloc( &hw_params ) ) < 0 ) { - d->lastErrorMessage = i18n("Could not allocate hardware parameter structure (%1)").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not allocate hardware parameter structure (%1)").arg(snd_strerror(err)); d->error = true; return false; } if( (err = snd_pcm_hw_params_any( d->pcm_playback, hw_params )) < 0) { - d->lastErrorMessage = i18n("Could not initialize hardware parameter structure (%1).").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not initialize hardware parameter structure (%1).").arg(snd_strerror(err)); snd_pcm_hw_params_free( hw_params ); d->error = true; return false; } if( (err = snd_pcm_hw_params_set_access( d->pcm_playback, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED)) < 0) { - d->lastErrorMessage = i18n("Could not set access type (%1).").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not set access type (%1).").arg(snd_strerror(err)); snd_pcm_hw_params_free( hw_params ); d->error = true; return false; @@ -195,7 +195,7 @@ bool K3bAlsaOutputPlugin::setupHwParams() if( (err = snd_pcm_hw_params_set_format( d->pcm_playback, hw_params, SND_PCM_FORMAT_S16_BE)) < 0) { if( (err = snd_pcm_hw_params_set_format( d->pcm_playback, hw_params, SND_PCM_FORMAT_S16_LE)) < 0) { - d->lastErrorMessage = i18n("Could not set sample format (%1).").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not set sample format (%1).").arg(snd_strerror(err)); snd_pcm_hw_params_free( hw_params ); d->error = true; return false; @@ -208,7 +208,7 @@ bool K3bAlsaOutputPlugin::setupHwParams() d->sampleRate = 44100; if( (err = snd_pcm_hw_params_set_rate_near( d->pcm_playback, hw_params, &d->sampleRate, 0)) < 0) { - d->lastErrorMessage = i18n("Could not set sample rate (%1).").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not set sample rate (%1).").arg(snd_strerror(err)); snd_pcm_hw_params_free( hw_params ); d->error = true; return false; @@ -217,14 +217,14 @@ bool K3bAlsaOutputPlugin::setupHwParams() kdDebug() << "(K3bAlsaOutputPlugin) samplerate set to " << d->sampleRate << endl; if( (err = snd_pcm_hw_params_set_channels( d->pcm_playback, hw_params, 2)) < 0) { - d->lastErrorMessage = i18n("Could not set channel count (%1).").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not set channel count (%1).").arg(snd_strerror(err)); snd_pcm_hw_params_free( hw_params ); d->error = true; return false; } if( (err = snd_pcm_hw_params( d->pcm_playback, hw_params )) < 0) { - d->lastErrorMessage = i18n("Could not set parameters (%1).").tqarg(snd_strerror(err)); + d->lastErrorMessage = i18n("Could not set parameters (%1).").arg(snd_strerror(err)); snd_pcm_hw_params_free( hw_params ); d->error = true; return false; diff --git a/plugins/decoder/flac/k3bflacdecoder.cpp b/plugins/decoder/flac/k3bflacdecoder.cpp index 40a61c9..7177071 100644 --- a/plugins/decoder/flac/k3bflacdecoder.cpp +++ b/plugins/decoder/flac/k3bflacdecoder.cpp @@ -394,9 +394,9 @@ TQString K3bFLACDecoder::technicalInfo( const TQString& info ) const else if( info == i18n("Channels") ) return TQString::number(d->channels); else if( info == i18n("Sampling Rate") ) - return i18n("%1 Hz").tqarg(d->rate); + return i18n("%1 Hz").arg(d->rate); else if( info == i18n("Sample Size") ) - return i18n("%1 bits").tqarg(d->bitsPerSample); + return i18n("%1 bits").arg(d->bitsPerSample); } return TQString(); diff --git a/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp b/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp index 8532da9..8103b44 100644 --- a/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp +++ b/plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp @@ -125,7 +125,7 @@ bool K3bLibsndfileDecoder::analyseFileInternal( K3b::Msf& frames, int& samplerat addMetaInfo( META_COMMENT, sf_get_string(d->sndfile, SF_STR_COMMENT) ); addTechnicalInfo( i18n("Channels"), TQString::number(d->sndinfo.channels) ); - addTechnicalInfo( i18n("Sampling Rate"), i18n("%1 Hz").tqarg(d->sndinfo.samplerate) ); + addTechnicalInfo( i18n("Sampling Rate"), i18n("%1 Hz").arg(d->sndinfo.samplerate) ); frames = (unsigned long)ceil(d->sndinfo.frames / d->sndinfo.samplerate * 75.0); samplerate = d->sndinfo.samplerate; diff --git a/plugins/decoder/mp3/k3bmaddecoder.cpp b/plugins/decoder/mp3/k3bmaddecoder.cpp index 9fe9b15..951caa2 100644 --- a/plugins/decoder/mp3/k3bmaddecoder.cpp +++ b/plugins/decoder/mp3/k3bmaddecoder.cpp @@ -415,12 +415,12 @@ TQString K3bMadDecoder::technicalInfo( const TQString& name ) const } } else if( name == i18n("Sampling Rate") ) - return i18n("%1 Hz").tqarg(d->firstHeader.samplerate); + return i18n("%1 Hz").arg(d->firstHeader.samplerate); else if( name == i18n("Bitrate") ) { if( d->vbr ) return i18n("VBR"); else - return i18n("%1 bps").tqarg(d->firstHeader.bitrate); + return i18n("%1 bps").arg(d->firstHeader.bitrate); } else if( name == i18n("Layer") ){ switch( d->firstHeader.layer ) { diff --git a/plugins/decoder/ogg/k3boggvorbisdecoder.cpp b/plugins/decoder/ogg/k3boggvorbisdecoder.cpp index b48a85d..717c1a2 100644 --- a/plugins/decoder/ogg/k3boggvorbisdecoder.cpp +++ b/plugins/decoder/ogg/k3boggvorbisdecoder.cpp @@ -120,13 +120,13 @@ bool K3bOggVorbisDecoder::analyseFileInternal( K3b::Msf& frames, int& samplerate // add technical infos addTechnicalInfo( i18n("Version"), TQString::number(d->vInfo->version) ); addTechnicalInfo( i18n("Channels"), TQString::number(d->vInfo->channels) ); - addTechnicalInfo( i18n("Sampling Rate"), i18n("%1 Hz").tqarg(d->vInfo->rate) ); + addTechnicalInfo( i18n("Sampling Rate"), i18n("%1 Hz").arg(d->vInfo->rate) ); if( d->vInfo->bitrate_upper > 0 ) - addTechnicalInfo( i18n("Bitrate Upper"), i18n( "%1 bps" ).tqarg(d->vInfo->bitrate_upper) ); + addTechnicalInfo( i18n("Bitrate Upper"), i18n( "%1 bps" ).arg(d->vInfo->bitrate_upper) ); if( d->vInfo->bitrate_nominal > 0 ) - addTechnicalInfo( i18n("Bitrate Nominal"), i18n( "%1 bps" ).tqarg(d->vInfo->bitrate_nominal) ); + addTechnicalInfo( i18n("Bitrate Nominal"), i18n( "%1 bps" ).arg(d->vInfo->bitrate_nominal) ); if( d->vInfo->bitrate_lower > 0 ) - addTechnicalInfo( i18n("Bitrate Lower"), i18n( "%1 bps" ).tqarg(d->vInfo->bitrate_lower) ); + addTechnicalInfo( i18n("Bitrate Lower"), i18n( "%1 bps" ).arg(d->vInfo->bitrate_lower) ); frames = K3b::Msf::fromSeconds(seconds); samplerate = d->vInfo->rate; diff --git a/plugins/decoder/wave/k3bwavedecoder.cpp b/plugins/decoder/wave/k3bwavedecoder.cpp index 1c0fd57..28f873a 100644 --- a/plugins/decoder/wave/k3bwavedecoder.cpp +++ b/plugins/decoder/wave/k3bwavedecoder.cpp @@ -350,9 +350,9 @@ TQString K3bWaveDecoder::technicalInfo( const TQString& name ) const if( name == i18n("Channels") ) return TQString::number(d->channels); else if( name == i18n("Sampling Rate") ) - return i18n("%1 Hz").tqarg(d->sampleRate); + return i18n("%1 Hz").arg(d->sampleRate); else if( name == i18n("Sample Size") ) - return i18n("%1 bits").tqarg(d->sampleSize); + return i18n("%1 bits").arg(d->sampleSize); else return TQString(); } diff --git a/plugins/encoder/external/k3bexternalencoder.cpp b/plugins/encoder/external/k3bexternalencoder.cpp index 7f54bf9..2290012 100644 --- a/plugins/encoder/external/k3bexternalencoder.cpp +++ b/plugins/encoder/external/k3bexternalencoder.cpp @@ -242,7 +242,7 @@ bool K3bExternalEncoder::initEncoderInternal( const TQString& extension ) kdDebug() << s << flush << endl; // set one general error message - setLastError( i18n("Command failed: %1").tqarg( s ) ); + setLastError( i18n("Command failed: %1").arg( s ) ); if( d->process->start( KProcess::NotifyOnExit, KProcess::All ) ) { if( d->cmd.writeWaveHeader ) @@ -253,7 +253,7 @@ bool K3bExternalEncoder::initEncoderInternal( const TQString& extension ) else { TQString commandName = d->cmd.command.section( TQRegExp("\\s+"), 0 ); if( !KStandardDirs::findExe( commandName ).isEmpty() ) - setLastError( i18n("Could not find program '%1'").tqarg(commandName) ); + setLastError( i18n("Could not find program '%1'").arg(commandName) ); return false; } diff --git a/plugins/encoder/lame/base_k3blameencodersettingswidget.ui b/plugins/encoder/lame/base_k3blameencodersettingswidget.ui index 98b0617..ec10059 100644 --- a/plugins/encoder/lame/base_k3blameencodersettingswidget.ui +++ b/plugins/encoder/lame/base_k3blameencodersettingswidget.ui @@ -77,7 +77,7 @@ textLabel1 - + AlignVCenter|AlignRight @@ -143,7 +143,7 @@ high quality - + AlignVCenter|AlignRight @@ -229,7 +229,7 @@ textLabel2 - + AlignVCenter|AlignRight @@ -360,7 +360,7 @@ high quality - + AlignVCenter|AlignRight diff --git a/plugins/encoder/lame/k3blameencoder.cpp b/plugins/encoder/lame/k3blameencoder.cpp index 8946f19..3db51c7 100644 --- a/plugins/encoder/lame/k3blameencoder.cpp +++ b/plugins/encoder/lame/k3blameencoder.cpp @@ -411,13 +411,13 @@ K3bLameEncoderSettingsWidget::K3bLameEncoderSettingsWidget( TQWidget* parent, co m_manualSettingsDlg->setMainWidget( m_brW ); for( int i = 0; s_lame_bitrates[i]; ++i ) - m_brW->m_comboMaximumBitrate->insertItem( i18n("%1 kbps" ).tqarg(s_lame_bitrates[i]) ); + m_brW->m_comboMaximumBitrate->insertItem( i18n("%1 kbps" ).arg(s_lame_bitrates[i]) ); for( int i = 0; s_lame_bitrates[i]; ++i ) - m_brW->m_comboMinimumBitrate->insertItem( i18n("%1 kbps" ).tqarg(s_lame_bitrates[i]) ); + m_brW->m_comboMinimumBitrate->insertItem( i18n("%1 kbps" ).arg(s_lame_bitrates[i]) ); for( int i = 0; s_lame_bitrates[i]; ++i ) - m_brW->m_comboConstantBitrate->insertItem( i18n("%1 kbps" ).tqarg(s_lame_bitrates[i]) ); + m_brW->m_comboConstantBitrate->insertItem( i18n("%1 kbps" ).arg(s_lame_bitrates[i]) ); TQHBoxLayout* lay = new TQHBoxLayout( this ); @@ -469,11 +469,11 @@ void K3bLameEncoderSettingsWidget::updateManualSettingsLabel() { if( m_brW->m_radioConstantBitrate->isChecked() ) m_w->m_labelManualSettings->setText( i18n("Constant Bitrate: %1 kbps (%2)") - .tqarg(s_lame_bitrates[m_brW->m_comboConstantBitrate->currentItem()]) - .tqarg(i18n(s_lame_mode_strings[m_brW->m_comboMode->currentItem()])) ); + .arg(s_lame_bitrates[m_brW->m_comboConstantBitrate->currentItem()]) + .arg(i18n(s_lame_mode_strings[m_brW->m_comboMode->currentItem()])) ); else m_w->m_labelManualSettings->setText( i18n("Variable Bitrate (%1)") - .tqarg(i18n(s_lame_mode_strings[m_brW->m_comboMode->currentItem()])) ); + .arg(i18n(s_lame_mode_strings[m_brW->m_comboMode->currentItem()])) ); } @@ -507,9 +507,9 @@ void K3bLameEncoderSettingsWidget::loadConfig() else m_brW->m_radioConstantBitrate->setChecked( true ); - m_brW->m_comboConstantBitrate->setCurrentItem( i18n("%1 kbps").tqarg(c->readNumEntry( "Constant Bitrate", 128 )) ); - m_brW->m_comboMaximumBitrate->setCurrentItem( i18n("%1 kbps").tqarg(c->readNumEntry( "Maximum Bitrate", 224 )) ); - m_brW->m_comboMinimumBitrate->setCurrentItem( i18n("%1 kbps").tqarg(c->readNumEntry( "Minimum Bitrate", 32 )) ); + m_brW->m_comboConstantBitrate->setCurrentItem( i18n("%1 kbps").arg(c->readNumEntry( "Constant Bitrate", 128 )) ); + m_brW->m_comboMaximumBitrate->setCurrentItem( i18n("%1 kbps").arg(c->readNumEntry( "Maximum Bitrate", 224 )) ); + m_brW->m_comboMinimumBitrate->setCurrentItem( i18n("%1 kbps").arg(c->readNumEntry( "Minimum Bitrate", 32 )) ); m_brW->m_spinAverageBitrate->setValue( c->readNumEntry( "Average Bitrate", 128) ); m_brW->m_checkBitrateMaximum->setChecked( c->readBoolEntry( "Use Maximum Bitrate", false ) ); diff --git a/plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui b/plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui index a801b0f..227e3bf 100644 --- a/plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui +++ b/plugins/encoder/ogg/base_k3boggvorbisencodersettingswidget.ui @@ -68,7 +68,7 @@ textLabel1 - + AlignVCenter|AlignRight @@ -148,7 +148,7 @@ high quality - + AlignVCenter|AlignRight diff --git a/plugins/encoder/ogg/k3boggvorbisencoder.cpp b/plugins/encoder/ogg/k3boggvorbisencoder.cpp index 7878497..29ad94f 100644 --- a/plugins/encoder/ogg/k3boggvorbisencoder.cpp +++ b/plugins/encoder/ogg/k3boggvorbisencoder.cpp @@ -470,7 +470,7 @@ K3bOggVorbisEncoderSettingsWidget::~K3bOggVorbisEncoderSettingsWidget() void K3bOggVorbisEncoderSettingsWidget::slotQualityLevelChanged( int val ) { w->m_labelQualityLevel->setText( TQString::number(val) + " " - + i18n("(targetted VBR of %1)").tqarg(s_rough_average_quality_level_bitrates[val+1]) ); + + i18n("(targetted VBR of %1)").arg(s_rough_average_quality_level_bitrates[val+1]) ); } diff --git a/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp b/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp index 5211b36..f30f802 100644 --- a/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp +++ b/plugins/project/audiometainforenamer/k3baudiometainforenamerplugin.cpp @@ -203,7 +203,7 @@ void K3bAudioMetainfoRenamerPluginWidget::scanDir( K3bDirItem* dir, TQListViewIt d->dirItemDict.insert( dir, viewRoot ); - for( TQPtrListIterator it( dir->tqchildren() ); it.current(); ++it ) { + for( TQPtrListIterator it( dir->children() ); it.current(); ++it ) { K3bDataItem* item = it.current(); if( item->isFile() ) { @@ -334,9 +334,9 @@ TQString K3bAudioMetainfoRenamerPluginWidget::createNewName( K3bFileItem* item ) kdDebug() << "(K3bAudioMetainfoRenamerPluginWidget) file with name " << newName << extension << " already exists" << endl; int i = 1; - while( existsOtherItemWithSameName( item, newName + TQString( " (%1)").tqarg(i) + extension ) ) + while( existsOtherItemWithSameName( item, newName + TQString( " (%1)").arg(i) + extension ) ) i++; - newName.append( TQString( " (%1)").tqarg(i) ); + newName.append( TQString( " (%1)").arg(i) ); } // append extension -- cgit v1.2.3