1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-30 04:58:40 +01:00

Use nullptr instead of 0

This commit is contained in:
Uwe L. Korn 2014-10-21 22:55:55 +02:00
parent c986506605
commit b6f92013bd

View File

@ -52,6 +52,7 @@ AudioOutput::instance()
AudioOutput::AudioOutput( QObject* parent )
: QObject( parent )
, currentState( Stopped )
, currentStream( nullptr )
, seekable( true )
, muted( false )
, m_autoDelete ( true )
@ -60,15 +61,14 @@ AudioOutput::AudioOutput( QObject* parent )
, m_totalTime( 0 )
, m_aboutToFinish( false )
, m_justSeeked( false )
, dspPluginCallback( 0 )
, vlcInstance( 0 )
, vlcPlayer( 0 )
, vlcMedia( 0 )
, dspPluginCallback( nullptr )
, vlcInstance( nullptr )
, vlcPlayer( nullptr )
, vlcMedia( nullptr )
{
tDebug() << Q_FUNC_INFO;
AudioOutput::s_instance = this;
currentStream = 0;
qRegisterMetaType<AudioOutput::AudioState>("AudioOutput::AudioState");