From 1ad91f92226facb3306003f19407f45b727c3973 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 22 Oct 2013 02:51:19 +0200 Subject: hopefully fix msvc2010 build Signed-off-by: Stanislaw Halik --- ftnoir_tracker_aruco/ar_video_widget.h | 2 +- ftnoir_tracker_ht/ht_video_widget.h | 2 +- 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); } -- cgit v1.2.3