1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 00:09:47 +01: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"
class DLLEXPORT DatabaseCommand_AllAlbums : public DatabaseCommand
, public Tomahawk::AlbumsRequest
class DLLEXPORT DatabaseCommand_AllAlbums : public DatabaseCommand, public Tomahawk::AlbumsRequest
{
Q_OBJECT
public:

View File

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

View File

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

View File

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

View File

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

View File

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