summaryrefslogtreecommitdiff
path: root/src/wx/film_viewer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-11-11 22:49:34 +0100
committerCarl Hetherington <cth@carlh.net>2021-11-11 22:51:31 +0100
commitcfbe9d2f44e380efed7a61b5b5c7a2fec7794915 (patch)
tree7d1933b5205c2f27616ff2ad3f4e0d0b477a2cd2 /src/wx/film_viewer.cc
parent6f2844fee27f6ebb15ea772ea2cbfc7bdf988102 (diff)
Remove player activity logging. Fixes #2122.
If I remember right this was for swaroop and I suspect nobody else is really interested.
Diffstat (limited to 'src/wx/film_viewer.cc')
-rw-r--r--src/wx/film_viewer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc
index e678c6aa3..2c90b8609 100644
--- a/src/wx/film_viewer.cc
+++ b/src/wx/film_viewer.cc
@@ -371,7 +371,7 @@ FilmViewer::start ()
/* Calling start() below may directly result in Stopped being emitted, and if that
* happens we want it to come after the Started signal, so do that first.
*/
- Started (position());
+ Started ();
_video_view->start ();
}
@@ -390,7 +390,7 @@ FilmViewer::stop ()
_playing = false;
_video_view->stop ();
- Stopped (position());
+ Stopped ();
_video_view->rethrow ();
return true;