diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-22 02:51:19 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-22 02:51:19 +0200 |
commit | 1ad91f92226facb3306003f19407f45b727c3973 (patch) | |
tree | e011c91939fccf634c2ed87e71cc857f991a5223 /ftnoir_tracker_ht/ht_video_widget.h | |
parent | 576f6d7448c7666d140d613253a8a57d0d8edf4b (diff) |
hopefully fix msvc2010 build
Signed-off-by: Stanislaw Halik <sthalik@misaki.pl>
Diffstat (limited to 'ftnoir_tracker_ht/ht_video_widget.h')
-rw-r--r-- | ftnoir_tracker_ht/ht_video_widget.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |