1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

Style fix.

This commit is contained in:
Teo Mrnjavac
2013-02-06 18:10:21 +01:00
parent 68d3dd6631
commit 81af9b0e78
6 changed files with 6 additions and 12 deletions

View File

@@ -33,8 +33,7 @@
#include "DllMacro.h" #include "DllMacro.h"
class DLLEXPORT DatabaseCommand_AllAlbums : public DatabaseCommand class DLLEXPORT DatabaseCommand_AllAlbums : public DatabaseCommand, public Tomahawk::AlbumsRequest
, public Tomahawk::AlbumsRequest
{ {
Q_OBJECT Q_OBJECT
public: public:

View File

@@ -32,8 +32,7 @@
#include "DllMacro.h" #include "DllMacro.h"
class DLLEXPORT DatabaseCommand_AllArtists : public DatabaseCommand class DLLEXPORT DatabaseCommand_AllArtists : public DatabaseCommand, public Tomahawk::ArtistsRequest
, public Tomahawk::ArtistsRequest
{ {
Q_OBJECT Q_OBJECT
public: public:

View File

@@ -33,8 +33,7 @@
#include "DllMacro.h" #include "DllMacro.h"
class DLLEXPORT DatabaseCommand_AllTracks : public DatabaseCommand class DLLEXPORT DatabaseCommand_AllTracks : public DatabaseCommand, public Tomahawk::TracksRequest
, public Tomahawk::TracksRequest
{ {
Q_OBJECT Q_OBJECT
public: public:

View File

@@ -23,8 +23,7 @@
#include "collection/Collection.h" #include "collection/Collection.h"
#include "resolvers/ScriptCommand.h" #include "resolvers/ScriptCommand.h"
class ScriptCommand_AllAlbums : public ScriptCommand class ScriptCommand_AllAlbums : public ScriptCommand, public Tomahawk::AlbumsRequest
, public Tomahawk::AlbumsRequest
{ {
Q_OBJECT Q_OBJECT
public: public:

View File

@@ -23,8 +23,7 @@
#include "collection/Collection.h" #include "collection/Collection.h"
#include "resolvers/ScriptCommand.h" #include "resolvers/ScriptCommand.h"
class ScriptCommand_AllArtists : public ScriptCommand class ScriptCommand_AllArtists : public ScriptCommand, public Tomahawk::ArtistsRequest
, public Tomahawk::ArtistsRequest
{ {
Q_OBJECT Q_OBJECT
public: public:

View File

@@ -23,8 +23,7 @@
#include "collection/Collection.h" #include "collection/Collection.h"
#include "resolvers/ScriptCommand.h" #include "resolvers/ScriptCommand.h"
class ScriptCommand_AllTracks : public ScriptCommand class ScriptCommand_AllTracks : public ScriptCommand, public Tomahawk::TracksRequest
, public Tomahawk::TracksRequest
{ {
Q_OBJECT Q_OBJECT
public: public: