mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-25 17:44:59 +00:00
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:
parent
248712bc64
commit
6598b9e2a4
@ -139,7 +139,7 @@ int Systemcall::startscript(Starttype how, string const & what)
|
|||||||
|
|
||||||
SystemcallPrivate::SystemcallPrivate(const std::string& of) :
|
SystemcallPrivate::SystemcallPrivate(const std::string& of) :
|
||||||
proc_(new QProcess), outindex_(0),
|
proc_(new QProcess), outindex_(0),
|
||||||
errindex_(0), showout_(false), showerr_(false), outfile(of)
|
errindex_(0), outfile(of), showout_(false), showerr_(false)
|
||||||
{
|
{
|
||||||
if (!outfile.empty()) {
|
if (!outfile.empty()) {
|
||||||
// Check whether we have to simply throw away the output.
|
// Check whether we have to simply throw away the output.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user