mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-04 02:41:19 +00:00
fix invalid syntax
This commit is contained in:
parent
90a892d304
commit
3264b5974e
@ -473,3 +473,10 @@ void UnshieldThread::run()
|
|||||||
extract();
|
extract();
|
||||||
emit close();
|
emit close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UnshieldThread::UnshieldThread()
|
||||||
|
{
|
||||||
|
mMorrowindDone = false;
|
||||||
|
mTribunalDone = false;
|
||||||
|
mBloodmoonDone = false;
|
||||||
|
}
|
||||||
|
@ -28,6 +28,8 @@ class UnshieldThread : public QThread
|
|||||||
|
|
||||||
std::string GetMWEsmPath();
|
std::string GetMWEsmPath();
|
||||||
|
|
||||||
|
UnshieldThread();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
void extract_cab(const boost::filesystem::path& cab, const boost::filesystem::path& output_dir, bool extract_ini = false);
|
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 mTribunalPath;
|
||||||
boost::filesystem::path mBloodmoonPath;
|
boost::filesystem::path mBloodmoonPath;
|
||||||
|
|
||||||
bool mMorrowindDone = false;
|
bool mMorrowindDone;
|
||||||
bool mTribunalDone = false;
|
bool mTribunalDone;
|
||||||
bool mBloodmoonDone = false;
|
bool mBloodmoonDone;
|
||||||
|
|
||||||
boost::filesystem::path mOutputPath;
|
boost::filesystem::path mOutputPath;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user