diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:48 -0600 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-23 15:43:45 +0200 |
| commit | feae001a0240fdca57cc68779f59f88e6af49335 (patch) | |
| tree | e8c1ef6b2ca3f23c77647b98373ed1750eac267b /plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp | |
| parent | be2dabe8503655c1f6b8049955c499e4f47a51d7 (diff) | |
| download | k3b-feae001a0240fdca57cc68779f59f88e6af49335.tar.gz k3b-feae001a0240fdca57cc68779f59f88e6af49335.zip | |
Remove additional unneeded tq method conversions
(cherry picked from commit 5183781c5dddd8447b308c24b2d7f9257bd0bcad)
Diffstat (limited to 'plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp')
| -rw-r--r-- | plugins/decoder/libsndfile/k3blibsndfiledecoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
