/trunk/Scribus/scribus/scprintengine_pdf.cpp |
---|
54,7 → 54,7 |
{ |
cmd += options.printerCommand; |
cmd += " "; |
cmd += fileName; |
cmd += "\"" + fileName + "\""; |
system(cmd.data()); |
} |
else |
66,7 → 66,8 |
if (options.copies > 1) |
cmd += " -#" + cc.setNum(options.copies); |
cmd += options.printerOptions; |
cmd += " " + fileName; |
cmd += " "; |
cmd += "\"" + fileName + "\""; |
system(cmd.data()); |
} |
// Disabled that for now, as kprinter won't work otherwise |
/trunk/Scribus/scribus/scprintengine_ps.cpp |
---|
61,7 → 61,7 |
{ |
cmd += options.printerCommand; |
cmd += " "; |
cmd += filename; |
cmd += "\"" + filename + "\""; |
system(cmd.data()); |
} |
else |
73,7 → 73,8 |
if (options.copies > 1) |
cmd += " -#" + cc.setNum(options.copies); |
cmd += options.printerOptions; |
cmd += " " + filename; |
cmd += " "; |
cmd += "\"" + filename + "\""; |
system(cmd.data()); |
} |
// Disabled that for now, as kprinter won't work otherwise |