mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Some silly crash bugs fixed, and windows compile problem fixed
This commit is contained in:
parent
f9bd536f54
commit
1b2508b0ec
@ -617,7 +617,7 @@ bool Machine::Save()
|
||||
|
||||
for (int i=0;i<threads;i++) {
|
||||
while (thread[i]->isRunning()) {
|
||||
usleep(250);
|
||||
SaveThread::msleep(250);
|
||||
QApplication::processEvents();
|
||||
}
|
||||
delete thread[i];
|
||||
|
@ -36,6 +36,7 @@ class SaveThread:public QThread
|
||||
Q_OBJECT
|
||||
public:
|
||||
SaveThread(Machine *m,QString p) { machine=m; path=p; }
|
||||
static void msleep(unsigned long msecs) { QThread::msleep(msecs); }
|
||||
virtual void run();
|
||||
protected:
|
||||
Machine *machine;
|
||||
|
@ -103,9 +103,12 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
|
||||
pref["AppName"]="SleepyHead";
|
||||
QString Version=QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number);
|
||||
if (pref.Exists("VersionString") && pref["VersionString"]!=Version) {
|
||||
if (pref.Exists("VersionString")) {
|
||||
QString V=pref["VersionString"].toString();
|
||||
if (V!=Version) {
|
||||
QMessageBox::warning(this,"New Version Warning","This is a new version of SleepyHead. If you experience a crash right after clicking Ok, you will need to manually delete the SleepApp folder (it's located in your Documents folder) and reimport your data. After this things should work normally.",QMessageBox::Ok);
|
||||
}
|
||||
}
|
||||
pref["VersionString"]=Version;
|
||||
|
||||
if (!pref.Exists("Profile")) pref["Profile"]=getUserName();
|
||||
|
@ -126,7 +126,7 @@ Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
|
||||
}
|
||||
Overview::~Overview()
|
||||
{
|
||||
if (!report) {
|
||||
if (report) {
|
||||
report->close();
|
||||
delete report;
|
||||
}
|
||||
@ -168,7 +168,7 @@ void Overview::on_printButton_clicked()
|
||||
{
|
||||
|
||||
if (!report) {
|
||||
report=new Report(this,profile,m_shared,this);
|
||||
report=new Report(this,profile,NULL,this);
|
||||
}
|
||||
|
||||
if (report) {
|
||||
|
Loading…
Reference in New Issue
Block a user