summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-02 20:55:11 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-02 20:55:11 +0000
commitadb7dd34ad07214198bf4c8c24d3aa0611f58a00 (patch)
treee355486d4e90a992728723456f9921292d6e6948 /src
parent81b73dcfaa36dcf82666e1b059e275a3579c1d62 (diff)
Fix probably-innocuous uninitialised variable.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_viewer.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index 79de49406..a82132358 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -43,6 +43,7 @@ public:
ThumbPanel (wxPanel* parent, shared_ptr<Film> film)
: wxPanel (parent)
, _film (film)
+ , _index (0)
, _frame_rebuild_needed (false)
, _composition_needed (false)
{}