diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 19:28:42 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-03 19:28:42 -0500 |
commit | a8e98ad9ce209af0aba35ce26ec9200761b397df (patch) | |
tree | a3af3b0761b9beae9fa06efd31d4bd173ba17370 /k9author | |
parent | d9ed8b3291e596eafed777956a062dc8816d0d3c (diff) | |
download | k9copy-a8e98ad9ce209af0aba35ce26ec9200761b397df.tar.gz k9copy-a8e98ad9ce209af0aba35ce26ec9200761b397df.zip |
Fix remaining string format errors
Diffstat (limited to 'k9author')
-rw-r--r-- | k9author/k9menu.cpp | 2 | ||||
-rw-r--r-- | k9author/k9newdvd.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/k9author/k9menu.cpp b/k9author/k9menu.cpp index 29f2b02..ea9c622 100644 --- a/k9author/k9menu.cpp +++ b/k9author/k9menu.cpp @@ -143,7 +143,7 @@ void k9Menu::convertJpegToMpeg(const TQString &_imageJpg,const TQString &_imageM if (!process->normalExit()) { tqDebug("error converting jpeg to mpeg"); } - tqDebug(process->debug().latin1()); + tqDebug("%s", process->debug().latin1()); } void k9Menu::createAudio(const TQString & _audioFile) { diff --git a/k9author/k9newdvd.cpp b/k9author/k9newdvd.cpp index a2c02e7..454099e 100644 --- a/k9author/k9newdvd.cpp +++ b/k9author/k9newdvd.cpp @@ -257,7 +257,7 @@ void k9NewDVD::createMencoderCmd(TQString &_cmd,TQString &_chapters, k9AviFile * *process << "-mpegopts" << "format=dvd" << "-vf" << "scale="+scale+",harddup" << "-srate" << "48000" << "-af" << "lavcresample=48000"; *process << "-lavcopts" << TQString("vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=%1:keyint=15:acodec=%3:abitrate=%2:aspect=16/9").arg(m_videoBitrate).arg(m_config->getPrefAudioBitrate()).arg(m_config->getPrefAudioFormat().lower()); *process << "-ofps" << fps << "-o" << fileName << "-ss" << t1 << "-endpos" << t2 << _aviFile->getFileName(); - tqDebug(process->debug()); + tqDebug("%s", process->debug().ascii()); /* if (!m_progress->execute()) { m_cancel=true; |