1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

Fix indent

This commit is contained in:
hugolm84 2011-09-06 14:21:14 +02:00 committed by Leo Franchi
parent de982f8b50
commit 869640b2e2

View File

@ -23,11 +23,11 @@
#include "query.h"
#include "infosystem/infosystem.h"
#include <QObject>
#include <QStringList>
#include <QMimeData>
class DLLEXPORT DropJob : public QObject
{
Q_OBJECT
@ -58,8 +58,8 @@ public:
enum DropAction {
Append = 0x0,
Create = 0x1
Append = 0x00,
Create = 0x01
};
Q_DECLARE_FLAGS(DropActions, DropAction)
@ -85,9 +85,7 @@ signals:
private slots:
void expandedUrls( QStringList );
void onTracksAdded( const QList<Tomahawk::query_ptr>& );
void infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData requestData, QVariant output );
private: