Fix compiling on macOS High Sierra (#665)

* mac docs update relating to qt 

give a little more detailed installation guide for the qt installation

* Fix compiling on clang, now compiles on macOS High Sierra
This commit is contained in:
Daniel Pasch
2018-08-13 20:10:32 +02:00
committed by fourtf
parent 2448f6f538
commit c4e3bf1a8c
4 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -316,7 +316,7 @@ void BaseWindow::mousePressEvent(QMouseEvent *event)
};
if (!recursiveCheckMouseTracking(widget)) {
Log("Start moving");
log("Start moving");
this->moving = true;
}
}
@@ -331,7 +331,7 @@ void BaseWindow::mouseReleaseEvent(QMouseEvent *event)
#ifndef Q_OS_WIN
if (this->flags_ & FramelessDraggable) {
if (this->moving) {
Log("Stop moving");
log("Stop moving");
this->moving = false;
}
}