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

Make filePath non-virtual as never overloaded but used in a lot of constructors

This commit is contained in:
Uwe L. Korn
2014-09-12 11:35:38 +01:00
parent 3abe856965
commit 8269d69a48

View File

@@ -89,7 +89,7 @@ public:
: m_commandQueue( new ScriptCommandQueue( this ) )
{ m_filePath = filePath; }
virtual QString filePath() const { return m_filePath; }
QString filePath() const { return m_filePath; }
virtual QPixmap icon() const { return QPixmap(); }
virtual void setIcon( const QPixmap& ) {}