Skip to content

Commit

Permalink
Fixed initialization order of class members.
Browse files Browse the repository at this point in the history
  • Loading branch information
muesli committed Apr 18, 2015
1 parent 8a7a8bb commit 202bb2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libtomahawk/audio/AudioOutput.cpp
Expand Up @@ -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 )
Expand Down

0 comments on commit 202bb2a

Please sign in to comment.