diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2012-12-16 11:33:23 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2012-12-16 11:33:23 +0000 |
commit | 8aa64afab7f3fd153d7a881e27442a78d57ec103 (patch) | |
tree | c33fa2eae4a7732aa4f76b7ee76b89670c8b69bf /FaceTrackNoIR/tracker.cpp | |
parent | 9fdac8789acda4989a094a8ed8c9a19cdc29f7f6 (diff) |
Fixed some error(s) after testing INNO installer
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@198 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FaceTrackNoIR/tracker.cpp')
-rw-r--r-- | FaceTrackNoIR/tracker.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FaceTrackNoIR/tracker.cpp b/FaceTrackNoIR/tracker.cpp index f24ace79..251f2274 100644 --- a/FaceTrackNoIR/tracker.cpp +++ b/FaceTrackNoIR/tracker.cpp @@ -23,6 +23,7 @@ *********************************************************************************/
/*
Modifications (last one on top):
+ 20121215 - WVR: Fixed crash after message: protocol not installed correctly... by terminating the thread.
20120921 - WVR: Fixed centering when no filter is selected.
20120917 - WVR: Added Mouse-buttons to ShortKeys.
20120827 - WVR: Signal tracking = false to Curve-widget(s) when quitting run(). Also when Alternative Pitch curve is used.
@@ -320,6 +321,8 @@ void Tracker::setup() { DLL_Ok = pProtocol->checkServerInstallationOK( mainApp->winId() );
if (!DLL_Ok) {
+ // Trigger thread to stop
+ ::SetEvent(m_StopThread);
QMessageBox::information(mainApp, "FaceTrackNoIR error", "Protocol is not (correctly) installed!");
}
}
|