fix invalid syntax

actorid
Tom Mason 12 years ago
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…
Cancel
Save