summaryrefslogtreecommitdiff
path: root/src/wx/playlist_controls.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-03-16 00:44:31 +0100
committerCarl Hetherington <cth@carlh.net>2020-03-16 00:46:34 +0100
commit19760ad4cf6d348416444e515b5e709be565f81e (patch)
tree55c889deb559ce325fd436bdfb8b97170a15e14c /src/wx/playlist_controls.cc
parent3e3e8433842820ce6380e8f5c1917ae1a28e2e57 (diff)
Move stress testing code into a separate class and always build it.
Fix stress script generation to always reload a DCP rather than expecting it to be available after it has finished playback.
Diffstat (limited to 'src/wx/playlist_controls.cc')
-rw-r--r--src/wx/playlist_controls.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wx/playlist_controls.cc b/src/wx/playlist_controls.cc
index edc4485e6..72ec7ad1f 100644
--- a/src/wx/playlist_controls.cc
+++ b/src/wx/playlist_controls.cc
@@ -52,7 +52,6 @@ PlaylistControls::PlaylistControls (wxWindow* parent, shared_ptr<FilmViewer> vie
, _stop_button (new Button(this, _("Stop")))
, _next_button (new Button(this, "Next"))
, _previous_button (new Button(this, "Previous"))
- , _timer (this)
{
_button_sizer->Add (_previous_button, 0, wxEXPAND);
_button_sizer->Add (_play_button, 0, wxEXPAND);
@@ -455,7 +454,6 @@ PlaylistControls::viewer_finished ()
}
}
-#ifdef DCPOMATIC_PLAYER_STRESS_TEST
void
PlaylistControls::play ()
{
@@ -467,4 +465,3 @@ PlaylistControls::stop ()
{
stop_clicked ();
}
-#endif