cosmetic: initialize members in the order they were declared
authorvdrfan <vdrfan-nospam-@xbmc.org>
Mon, 9 Jul 2012 07:53:10 +0000 (09:53 +0200)
committervdrfan <vdrfan-nospam-@xbmc.org>
Mon, 9 Jul 2012 07:53:10 +0000 (09:53 +0200)
xbmc/cores/paplayer/PAPlayer.cpp

index c49863b..157024d 100644 (file)
@@ -51,11 +51,11 @@ PAPlayer::PAPlayer(IPlayerCallback& callback) :
   m_isPlaying          (false),
   m_isPaused           (false),
   m_isFinished         (false),
+  m_defaultCrossfadeMS (0),
+  m_upcomingCrossfadeMS(0),
   m_currentStream      (NULL ),
   m_audioCallback      (NULL ),
-  m_FileItem           (new CFileItem()),
-  m_defaultCrossfadeMS (0),
-  m_upcomingCrossfadeMS(0)
+  m_FileItem           (new CFileItem())
 {
 }