From 95d0593f9e6a0e0e8baa516326aee60f065031a7 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 2 Jul 2015 09:19:40 +0100 Subject: [PATCH] Fix typo causing #626. --- src/lib/player.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/player.cc b/src/lib/player.cc index 2eaf81780..1a008eebb 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -77,7 +77,7 @@ Player::Player (shared_ptr film, shared_ptr playlist , _always_burn_subtitles (false) { _film_changed_connection = _film->Changed.connect (bind (&Player::film_changed, this, _1)); - _playlist_changed_connection = _playlist->ContentChanged.connect (bind (&Player::playlist_changed, this)); + _playlist_changed_connection = _playlist->Changed.connect (bind (&Player::playlist_changed, this)); _playlist_content_changed_connection = _playlist->ContentChanged.connect (bind (&Player::playlist_content_changed, this, _1, _2, _3)); set_video_container_size (_film->frame_size ()); -- 2.30.2