From 8269d69a48026cd45bf3216a42d513203fad15ce Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Fri, 12 Sep 2014 11:35:38 +0100 Subject: [PATCH] Make filePath non-virtual as never overloaded but used in a lot of constructors --- src/libtomahawk/resolvers/ExternalResolver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/resolvers/ExternalResolver.h b/src/libtomahawk/resolvers/ExternalResolver.h index 0aafe38b2..2cee70750 100644 --- a/src/libtomahawk/resolvers/ExternalResolver.h +++ b/src/libtomahawk/resolvers/ExternalResolver.h @@ -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& ) {}