1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 17:14:00 +02:00

Fixed initialization order of class members.

This commit is contained in:
Christian Muehlhaeuser
2015-04-18 05:35:12 +02:00
parent 8a7a8bb4f0
commit 202bb2abb4

View File

@@ -51,9 +51,9 @@ AudioOutput::AudioOutput( QObject* parent )
: QObject( parent )
, m_currentState( Stopped )
, m_currentStream( nullptr )
, m_muted( false )
, m_seekable( true )
, m_autoDelete ( true )
, m_muted( false )
, m_autoDelete( true )
, m_volume( 1.0 )
, m_currentTime( 0 )
, m_totalTime( 0 )