mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-18 23:09:42 +01:00
C++11 style fixes
This commit is contained in:
parent
acdf5b9635
commit
1e43033cdc
@ -39,10 +39,10 @@ public:
|
||||
explicit DatabaseCommand_Resolve( const Tomahawk::query_ptr& query );
|
||||
virtual ~DatabaseCommand_Resolve();
|
||||
|
||||
virtual QString commandname() const { return "dbresolve"; }
|
||||
virtual bool doesMutates() const { return false; }
|
||||
QString commandname() const override { return "dbresolve"; }
|
||||
bool doesMutates() const override { return false; }
|
||||
|
||||
virtual void exec( DatabaseImpl *lib );
|
||||
void exec( DatabaseImpl *lib ) override;
|
||||
|
||||
signals:
|
||||
void results( Tomahawk::QID qid, QList<Tomahawk::result_ptr> results );
|
||||
|
Loading…
x
Reference in New Issue
Block a user