On Wed, Dec 12, 2007 at 10:05:45AM +0100, Juergen Spitzmueller wrote: > Enrico Forestieri wrote: > > > Secondly, cmd is a command whose arguments are > > quoted for being processed by a shell, but this is not so. Hence > > when calling > > > > latex 'newfile1.tex' > > > > latex is passed the filename 'newfile1.tex' *literally*, and of course > > only newfile1.tex exists. On Windows it works because double quotes > > are used and the API functions expect the quotes. > > However, removing the quotes does not solve the problem.
It should work using the start() overload with the QStringList argument list and, of course, newfile1.tex passed in this argument list. What exactly did you try? Andre'