1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-19 15:37:01 +01:00

Add Q_UNUSED to setCurrentTrack in PlaylistInterface.

This commit is contained in:
Christopher Reichert 2012-07-16 19:12:09 -05:00
parent 1f0c70e071
commit 0b860abffb

View File

@ -66,7 +66,7 @@ public:
virtual PlaylistModes::LatchMode latchMode() const { return m_latchMode; }
virtual void setLatchMode( PlaylistModes::LatchMode latchMode ) { m_latchMode = latchMode; }
virtual bool setCurrentTrack( unsigned int albumpos ) { return false; }
virtual bool setCurrentTrack( unsigned int albumpos ) { Q_UNUSED( albumpos ); return false; }
virtual void reset() {}