[vlc-commits] qt: fix init order

Thomas Guillem git at videolan.org
Fri Aug 9 16:38:35 CEST 2019


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Aug  7 15:56:10 2019 +0200| [fe7f1094269a667f2047601841e216647d772cc4] | committer: Thomas Guillem

qt: fix init order

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fe7f1094269a667f2047601841e216647d772cc4
---

 modules/gui/qt/components/player_controller.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/qt/components/player_controller.cpp b/modules/gui/qt/components/player_controller.cpp
index 9e9060d4f5..e73fc7e8ab 100644
--- a/modules/gui/qt/components/player_controller.cpp
+++ b/modules/gui/qt/components/player_controller.cpp
@@ -913,7 +913,6 @@ PlayerControllerPrivate::PlayerControllerPrivate(PlayerController *playercontrol
     , m_titleList(m_player)
     , m_chapterList(m_player)
     , m_programList(m_player)
-    , m_audioDeviceList(m_player)
     , m_zoom((vout_thread_t*)nullptr, "zoom")
     , m_aspectRatio((vout_thread_t*)nullptr, "aspect-ratio")
     , m_crop((vout_thread_t*)nullptr, "crop")
@@ -921,6 +920,7 @@ PlayerControllerPrivate::PlayerControllerPrivate(PlayerController *playercontrol
     , m_deinterlaceMode((vout_thread_t*)nullptr, "deinterlace-mode")
     , m_autoscale((vout_thread_t*)nullptr, "autoscale")
     , m_audioStereoMode((audio_output_t*)nullptr, "stereo-mode")
+    , m_audioDeviceList(m_player)
     , m_audioVisualization((audio_output_t*)nullptr, "visual")
 {
     {



More information about the vlc-commits mailing list