mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-20 15:59:42 +01:00
Removed obviously dead code.
This commit is contained in:
parent
e90e86005c
commit
65cccb7b55
@ -35,7 +35,6 @@ using namespace Tomahawk;
|
||||
QNR_IODeviceStream::QNR_IODeviceStream( const QSharedPointer<QNetworkReply>& reply, QObject* parent )
|
||||
: MediaStream( parent )
|
||||
, m_networkReply( reply )
|
||||
, m_timer( new QTimer( this ) )
|
||||
{
|
||||
m_type = MediaStream::Stream;
|
||||
|
||||
@ -66,9 +65,6 @@ QNR_IODeviceStream::QNR_IODeviceStream( const QSharedPointer<QNetworkReply>& rep
|
||||
m_data = m_networkReply->readAll();
|
||||
connect( m_networkReply.data(), SIGNAL( readyRead() ), SLOT( readyRead() ) );
|
||||
}
|
||||
|
||||
m_timer->setInterval( 0 );
|
||||
connect( m_timer, SIGNAL( timeout() ), SLOT( moreData() ) );
|
||||
}
|
||||
|
||||
|
||||
|
@ -56,7 +56,6 @@ private:
|
||||
QMutex m_mutex;
|
||||
QByteArray m_data;
|
||||
QSharedPointer<QNetworkReply> m_networkReply;
|
||||
QTimer* m_timer;
|
||||
};
|
||||
|
||||
} // namespace Tomahawk
|
||||
|
Loading…
x
Reference in New Issue
Block a user