Fix 'format not a string literal' error

Clean up warning
pull/1/head
Timothy Pearson 12 years ago
parent 4e97f447be
commit 3bfc84b0fc

@ -112,7 +112,7 @@ void k9BurnDVD::mkisoSizeStdout(KProcess *proc, char *buffer, int buflen) {
; ;
} }
const TQString &k9BurnDVD::getImageSize() { const TQString k9BurnDVD::getImageSize() {
TQString c; TQString c;
c="mkisofs"; c="mkisofs";
proc2=new k9Process; proc2=new k9Process;
@ -215,8 +215,8 @@ void k9BurnDVD::burnWithGenisoimage() {
if ( KMessageBox::warningContinueCancel ( 0,i18n("Insert a recordable DVD"), i18n("DVD burning"))!=KMessageBox::Continue) if ( KMessageBox::warningContinueCancel ( 0,i18n("Insert a recordable DVD"), i18n("DVD burning"))!=KMessageBox::Continue)
cancelled=true; cancelled=true;
} }
tqDebug(proc->debug()); tqDebug("%s", proc->debug());
} }
if (!cancelled) { if (!cancelled) {
@ -239,7 +239,7 @@ void k9BurnDVD::burnWithGenisoimage() {
} }
} }
} }
} }
} }
} }

@ -71,7 +71,7 @@ private:
void getWodimCmd(k9Process *proc); void getWodimCmd(k9Process *proc);
void burnWithK3b(); void burnWithK3b();
const TQString &getImageSize(); const TQString getImageSize();
TQString imageSize; TQString imageSize;
TQString m_speed; TQString m_speed;
private slots: // Private slots private slots: // Private slots

Loading…
Cancel
Save