1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00

Remove supportedMimeTypes

This commit is contained in:
Uwe L. Korn
2014-10-22 11:07:36 +02:00
parent 7f93604dbe
commit a9e247d3d0
2 changed files with 0 additions and 17 deletions

View File

@@ -211,21 +211,6 @@ AudioEngine::~AudioEngine()
}
QStringList
AudioEngine::supportedMimeTypes() const
{
Q_D( const AudioEngine );
if ( d->supportedMimeTypes.isEmpty() )
{
d->supportedMimeTypes << "audio/*";
d->supportedMimeTypes << "audio/basic";
}
return d->supportedMimeTypes;
}
void
AudioEngine::playPause()
{

View File

@@ -40,8 +40,6 @@ private:
bool expectStop;
bool waitingOnNewTrack;
mutable QStringList supportedMimeTypes;
AudioState state;
QQueue< AudioState > stateQueue;
QTimer stateQueueTimer;