summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2013-10-22 02:51:19 +0200
committerStanislaw Halik <sthalik@misaki.pl>2013-10-22 02:51:19 +0200
commit1ad91f92226facb3306003f19407f45b727c3973 (patch)
treee011c91939fccf634c2ed87e71cc857f991a5223
parent576f6d7448c7666d140d613253a8a57d0d8edf4b (diff)
hopefully fix msvc2010 build
Signed-off-by: Stanislaw Halik <sthalik@misaki.pl>
-rw-r--r--ftnoir_tracker_aruco/ar_video_widget.h2
-rw-r--r--ftnoir_tracker_ht/ht_video_widget.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/ftnoir_tracker_aruco/ar_video_widget.h b/ftnoir_tracker_aruco/ar_video_widget.h
index 3a1574cd..d16cb017 100644
--- a/ftnoir_tracker_aruco/ar_video_widget.h
+++ b/ftnoir_tracker_aruco/ar_video_widget.h
@@ -23,7 +23,7 @@ class ArucoVideoWidget : public QWidget
Q_OBJECT
public:
- ArucoVideoWidget(QWidget *parent) : QWidget(parent), width(0), height(0), fb{0} {
+ ArucoVideoWidget(QWidget *parent) : QWidget(parent), width(0), height(0), fb() {
connect(&timer, SIGNAL(timeout()), this, SLOT(update_and_repaint()));
timer.start(60);
}
diff --git a/ftnoir_tracker_ht/ht_video_widget.h b/ftnoir_tracker_ht/ht_video_widget.h
index 78000afa..33f21226 100644
--- a/ftnoir_tracker_ht/ht_video_widget.h
+++ b/ftnoir_tracker_ht/ht_video_widget.h
@@ -23,7 +23,7 @@ class HTVideoWidget : public QWidget
Q_OBJECT
public:
- HTVideoWidget(QWidget *parent) : QWidget(parent), width(0), height(0), fb{0} {
+ HTVideoWidget(QWidget *parent) : QWidget(parent), width(0), height(0), fb() {
connect(&timer, SIGNAL(timeout()), this, SLOT(update_and_repaint()));
timer.start(60);
}