diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-04-27 16:54:54 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-04-27 16:54:54 +0200 |
commit | 9cc964b09e2b6076ad759485022dfdc48a22d9e1 (patch) | |
tree | 7f631eb6ec56ca0cfb560a8de9a09439f89f05c1 /ftnoir_tracker_ht/ftnoir_tracker_ht.cpp | |
parent | c6f2c4c1f6fce0d91ec975ea19b25b52d9bd13d4 (diff) |
Avoid crashes in video frame
Diffstat (limited to 'ftnoir_tracker_ht/ftnoir_tracker_ht.cpp')
-rw-r--r-- | ftnoir_tracker_ht/ftnoir_tracker_ht.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp b/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp index d88699a9..c1755862 100644 --- a/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp +++ b/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp @@ -207,7 +207,7 @@ void Tracker::StartTracker(QFrame* videoframe) #else subprocess.start(QCoreApplication::applicationDirPath() + "/tracker-ht/headtracker-ftnoir"); #endif - connect(&timer, SIGNAL(timeout()), this, SLOT(paint_widget()), Qt::QueuedConnection); + connect(&timer, SIGNAL(timeout()), this, SLOT(paint_widget())); timer.start(40); } |