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

Fix Mac compilation

This commit is contained in:
Jeff Mitchell
2011-07-06 22:50:11 -04:00
parent dd311d99c4
commit d7950472bc

View File

@@ -74,6 +74,7 @@ AdiumPlugin::AdiumPlugin()
this, SLOT( clearStatus() ) ); this, SLOT( clearStatus() ) );
} }
AdiumPlugin::~AdiumPlugin() AdiumPlugin::~AdiumPlugin()
{ {
qDebug() << Q_FUNC_INFO; qDebug() << Q_FUNC_INFO;
@@ -81,6 +82,7 @@ AdiumPlugin::~AdiumPlugin()
setStatus( "" ); setStatus( "" );
} }
void void
AdiumPlugin::clearStatus() AdiumPlugin::clearStatus()
{ {
@@ -88,6 +90,7 @@ AdiumPlugin::clearStatus()
setStatus( "" ); setStatus( "" );
} }
void void
AdiumPlugin::settingsChanged() AdiumPlugin::settingsChanged()
{ {
@@ -96,18 +99,6 @@ AdiumPlugin::settingsChanged()
setStatus( "" ); setStatus( "" );
} }
void
AdiumPlugin::getInfo( const QString caller, const InfoType type, const QVariant data, QVariantMap customData )
{
switch (type)
{
default:
{
emit info(caller, Tomahawk::InfoSystem::InfoNoInfo, QVariant(), QVariant(), customData);
return;
}
}
}
void void
AdiumPlugin::pushInfo( const QString caller, const Tomahawk::InfoSystem::InfoType type, const QVariant input ) AdiumPlugin::pushInfo( const QString caller, const Tomahawk::InfoSystem::InfoType type, const QVariant input )