summaryrefslogtreecommitdiffstats
path: root/libk3b/jobs/k3baudiocuefilewritingjob.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:35:48 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-23 15:43:45 +0200
commitfeae001a0240fdca57cc68779f59f88e6af49335 (patch)
treee8c1ef6b2ca3f23c77647b98373ed1750eac267b /libk3b/jobs/k3baudiocuefilewritingjob.cpp
parentbe2dabe8503655c1f6b8049955c499e4f47a51d7 (diff)
downloadk3b-feae001a0240fdca57cc68779f59f88e6af49335.tar.gz
k3b-feae001a0240fdca57cc68779f59f88e6af49335.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 5183781c5dddd8447b308c24b2d7f9257bd0bcad)
Diffstat (limited to 'libk3b/jobs/k3baudiocuefilewritingjob.cpp')
-rw-r--r--libk3b/jobs/k3baudiocuefilewritingjob.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libk3b/jobs/k3baudiocuefilewritingjob.cpp b/libk3b/jobs/k3baudiocuefilewritingjob.cpp
index 65fa3e7..c0c07d5 100644
--- a/libk3b/jobs/k3baudiocuefilewritingjob.cpp
+++ b/libk3b/jobs/k3baudiocuefilewritingjob.cpp
@@ -252,19 +252,19 @@ void K3bAudioCueFileWritingJob::importCueInProject()
// now analyze the source
emit newTask( i18n("Analysing the audio file") );
- emit newSubTask( i18n("Analysing %1").tqarg( parser.imageFilename() ) );
+ emit newSubTask( i18n("Analysing %1").arg( parser.imageFilename() ) );
// start the analyser thread
m_analyserThread->setDecoder( m_decoder );
m_analyserJob->start();
}
else {
- emit infoMessage( i18n("Unable to handle '%1' due to an unsupported format.").tqarg( m_cueFile ), ERROR );
+ emit infoMessage( i18n("Unable to handle '%1' due to an unsupported format.").arg( m_cueFile ), ERROR );
jobFinished(false);
}
}
else {
- emit infoMessage( i18n("No valid audio cue file: '%1'").tqarg( m_cueFile ), ERROR );
+ emit infoMessage( i18n("No valid audio cue file: '%1'").arg( m_cueFile ), ERROR );
jobFinished(false);
}
}