summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-26 00:59:46 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-26 00:59:46 +0100
commit02d9138d94899fa16b4a16ebc730fd929bf72b1d (patch)
tree5c03eac0c419267853cbb37dd983cae3115d6959 /src/tools
parent560c9dac3451e6c7624fea7b20698104ad8248ed (diff)
Remove player from dvdomatic.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dvdomatic.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc
index 938a5d2a4..ae94a949a 100644
--- a/src/tools/dvdomatic.cc
+++ b/src/tools/dvdomatic.cc
@@ -23,9 +23,6 @@
#include <wx/stdpaths.h>
#include "wx/film_viewer.h"
#include "wx/film_editor.h"
-#ifndef DVDOMATIC_DISABLE_PLAYER
-#include "wx/film_player.h"
-#endif
#include "wx/job_manager_view.h"
#include "wx/config_dialog.h"
#include "wx/job_wrapper.h"
@@ -45,9 +42,6 @@ using namespace boost;
static FilmEditor* film_editor = 0;
static FilmViewer* film_viewer = 0;
-#ifndef DVDOMATIC_DISABLE_PLAYER
-static FilmPlayer* film_player = 0;
-#endif
static Film* film = 0;
static void set_menu_sensitivity ();
@@ -206,9 +200,6 @@ public:
film_editor = new FilmEditor (film, panel);
film_viewer = new FilmViewer (film, panel);
-#ifndef DVDOMATIC_DISABLE_PLAYER
- film_player = new FilmPlayer (film, panel);
-#endif
JobManagerView* job_manager_view = new JobManagerView (panel);
wxSizer* rhs_sizer = new wxBoxSizer (wxVERTICAL);
@@ -224,9 +215,6 @@ public:
/* XXX: calling these here is a bit of a hack */
film_editor->setup_visibility ();
-#ifndef DVDOMATIC_DISABLE_PLAYER
- film_player->setup_visibility ();
-#endif
film_viewer->setup_visibility ();
film_editor->FileChanged.connect (sigc::mem_fun (*this, &Frame::file_changed));