Fix 'format not a string literal' error

Clean up warning
(cherry picked from commit 3bfc84b0fc)
v3.5.13-sru
Timothy Pearson 12 years ago committed by Slávek Banko
parent 2d89a38c08
commit 3d6be0807e

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

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

Loading…
Cancel
Save