1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 09:34:53 +02:00

Remove unneeded bits

This commit is contained in:
Jeff Mitchell
2011-06-22 17:56:42 -04:00
parent 69f459682a
commit a25d4719c9
2 changed files with 0 additions and 7 deletions

View File

@@ -48,7 +48,6 @@ using namespace Tomahawk::InfoSystem;
FdoNotifyPlugin::FdoNotifyPlugin() FdoNotifyPlugin::FdoNotifyPlugin()
: InfoPlugin() : InfoPlugin()
, m_arg()
{ {
qDebug() << Q_FUNC_INFO; qDebug() << Q_FUNC_INFO;
m_supportedPushTypes << Tomahawk::InfoSystem::InfoNotifyUser; m_supportedPushTypes << Tomahawk::InfoSystem::InfoNotifyUser;

View File

@@ -20,9 +20,6 @@
#define FDONOTIFYPLUGIN_H #define FDONOTIFYPLUGIN_H
#include "infosystem/infosystem.h" #include "infosystem/infosystem.h"
#include "infosystem/infosystemworker.h"
#include <QtDBus/QDBusArgument>
namespace Tomahawk namespace Tomahawk
{ {
@@ -59,9 +56,6 @@ protected slots:
Q_UNUSED( input ); Q_UNUSED( input );
Q_UNUSED( customData ); Q_UNUSED( customData );
} }
private:
QDBusArgument m_arg;
}; };
} }