mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-11 05:20:14 -04:00
fix uninitialized fields in CSMDoc::Operation class
This commit is contained in:
parent
deb6452e0d
commit
a799353f60
@ -27,7 +27,9 @@ void CSMDoc::Operation::prepareStages()
|
|||||||
}
|
}
|
||||||
|
|
||||||
CSMDoc::Operation::Operation (int type, bool ordered, bool finalAlways)
|
CSMDoc::Operation::Operation (int type, bool ordered, bool finalAlways)
|
||||||
: mType (type), mOrdered (ordered), mFinalAlways (finalAlways)
|
: mType (type), mStages(std::vector<std::pair<Stage *, int> >()), mCurrentStage(mStages.begin()),
|
||||||
|
mCurrentStep(0), mCurrentStepTotal(0), mTotalSteps(0), mOrdered (ordered),
|
||||||
|
mFinalAlways (finalAlways), mError(false)
|
||||||
{
|
{
|
||||||
connect (this, SIGNAL (finished()), this, SLOT (operationDone()));
|
connect (this, SIGNAL (finished()), this, SLOT (operationDone()));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user