diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:52 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:52 -0600 |
| commit | 1e42ec29323d1016df59b8b571d16fefe3d4e6f1 (patch) | |
| tree | 3cdfd52c475c581a2e1fe682e0954305a21acea2 /k9author/k9avidecode.cpp | |
| parent | 445633c8ffa0b5219c036b130230fdc6d97e9894 (diff) | |
| download | k9copy-1e42ec29323d1016df59b8b571d16fefe3d4e6f1.tar.gz k9copy-1e42ec29323d1016df59b8b571d16fefe3d4e6f1.zip | |
Remove additional unneeded tq method conversions
Diffstat (limited to 'k9author/k9avidecode.cpp')
| -rw-r--r-- | k9author/k9avidecode.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/k9author/k9avidecode.cpp b/k9author/k9avidecode.cpp index 1ac2f4e..d4d2cdb 100644 --- a/k9author/k9avidecode.cpp +++ b/k9author/k9avidecode.cpp @@ -54,11 +54,11 @@ k9AviDecode::k9AviDecode(TQObject *parent, const char *name) FormatHandle=dlopen("libavformat.so",RTLD_LAZY | RTLD_GLOBAL); } if (!CodecHandle) { - m_error =i18n("Cannot open then library %1").tqarg("libavcodec"); + m_error =i18n("Cannot open then library %1").arg("libavcodec"); return; } if (!FormatHandle) { - m_error =i18n("Cannot open then library %1").tqarg("libavformat"); + m_error =i18n("Cannot open then library %1").arg("libavformat"); return; } m_error=""; @@ -111,7 +111,7 @@ bool k9AviDecode::open(const TQString & _fileName) { // Open video file if (av_open_input_file(&m_FormatCtx, _fileName.utf8(), NULL, 0, NULL)!=0) { - m_error=i18n("Couldn't open the file %1").tqarg(_fileName); + m_error=i18n("Couldn't open the file %1").arg(_fileName); return false; // Couldn't open file} } // Retrieve stream information |
