1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00

fix invalid syntax

This commit is contained in:
Tom Mason 2013-08-18 00:29:46 +01:00
parent 90a892d304
commit 3264b5974e
2 changed files with 12 additions and 3 deletions

View File

@ -473,3 +473,10 @@ void UnshieldThread::run()
extract();
emit close();
}
UnshieldThread::UnshieldThread()
{
mMorrowindDone = false;
mTribunalDone = false;
mBloodmoonDone = false;
}

View File

@ -28,6 +28,8 @@ class UnshieldThread : public QThread
std::string GetMWEsmPath();
UnshieldThread();
private:
void extract_cab(const boost::filesystem::path& cab, const boost::filesystem::path& output_dir, bool extract_ini = false);
@ -37,9 +39,9 @@ class UnshieldThread : public QThread
boost::filesystem::path mTribunalPath;
boost::filesystem::path mBloodmoonPath;
bool mMorrowindDone = false;
bool mTribunalDone = false;
bool mBloodmoonDone = false;
bool mMorrowindDone;
bool mTribunalDone;
bool mBloodmoonDone;
boost::filesystem::path mOutputPath;