gcc complains because of inicialization order

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32327 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-12-04 11:06:29 +00:00
parent 248712bc64
commit 6598b9e2a4

View File

@ -139,7 +139,7 @@ int Systemcall::startscript(Starttype how, string const & what)
SystemcallPrivate::SystemcallPrivate(const std::string& of) :
proc_(new QProcess), outindex_(0),
errindex_(0), showout_(false), showerr_(false), outfile(of)
errindex_(0), outfile(of), showout_(false), showerr_(false)
{
if (!outfile.empty()) {
// Check whether we have to simply throw away the output.