diff options
| -rwxr-xr-x | release | 1 | ||||
| -rw-r--r-- | src/lib/log.h | 1 | ||||
| -rw-r--r-- | src/wx/film_viewer.cc | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -81,3 +81,4 @@ if (raw_input() != "y"): sys.exit(1) command("git commit -a -m \"Bump version\"") +command("cp DVD-o-matic*.exe dvdomatic-*.tar.bz2 /home/carl/public_html/carlh.net/software/dvdomatic") diff --git a/src/lib/log.h b/src/lib/log.h index 2e5d69a08..298b425cd 100644 --- a/src/lib/log.h +++ b/src/lib/log.h @@ -34,6 +34,7 @@ class Log { public: Log (); + virtual ~Log () {} enum Level { STANDARD = 0, 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) {} |
