From 59346f014a9694b0165f56a69c24049b54324169 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 21 Jun 2011 17:45:39 -0400 Subject: [PATCH] Rename the plugin to be more truthful --- src/libtomahawk/CMakeLists.txt | 4 ++-- .../{libnotifyplugin.cpp => fdonotifyplugin.cpp} | 8 ++++---- .../unix/{libnotifyplugin.h => fdonotifyplugin.h} | 12 ++++++------ src/libtomahawk/infosystem/infosystemworker.cpp | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) rename src/libtomahawk/infosystem/infoplugins/unix/{libnotifyplugin.cpp => fdonotifyplugin.cpp} (93%) rename src/libtomahawk/infosystem/infoplugins/unix/{libnotifyplugin.h => fdonotifyplugin.h} (91%) diff --git a/src/libtomahawk/CMakeLists.txt b/src/libtomahawk/CMakeLists.txt index f69fe4d7c..0a012d7b3 100644 --- a/src/libtomahawk/CMakeLists.txt +++ b/src/libtomahawk/CMakeLists.txt @@ -378,10 +378,10 @@ include_directories( . ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/. IF( UNIX AND NOT APPLE ) SET( libSources ${libSources} - infosystem/infoplugins/unix/libnotifyplugin.cpp ) + infosystem/infoplugins/unix/fdonotifyplugin.cpp ) SET( libHeaders ${libHeaders} - infosystem/infoplugins/unix/libnotifyplugin.h ) + infosystem/infoplugins/unix/fdonotifyplugin.h ) ENDIF( UNIX AND NOT APPLE ) IF( WIN32 ) diff --git a/src/libtomahawk/infosystem/infoplugins/unix/libnotifyplugin.cpp b/src/libtomahawk/infosystem/infoplugins/unix/fdonotifyplugin.cpp similarity index 93% rename from src/libtomahawk/infosystem/infoplugins/unix/libnotifyplugin.cpp rename to src/libtomahawk/infosystem/infoplugins/unix/fdonotifyplugin.cpp index e147f983f..d752640b1 100644 --- a/src/libtomahawk/infosystem/infoplugins/unix/libnotifyplugin.cpp +++ b/src/libtomahawk/infosystem/infoplugins/unix/fdonotifyplugin.cpp @@ -16,7 +16,7 @@ * along with Tomahawk. If not, see . */ -#include "libnotifyplugin.h" +#include "fdonotifyplugin.h" #include "utils/tomahawkutils.h" @@ -25,20 +25,20 @@ using namespace Tomahawk::InfoSystem; -LibNotifyPlugin::LibNotifyPlugin() +FdoNotifyPlugin::FdoNotifyPlugin() : InfoPlugin() { qDebug() << Q_FUNC_INFO; m_supportedPushTypes << Tomahawk::InfoSystem::InfoNotifyUser; } -LibNotifyPlugin::~LibNotifyPlugin() +FdoNotifyPlugin::~FdoNotifyPlugin() { qDebug() << Q_FUNC_INFO; } void -LibNotifyPlugin::pushInfo( const QString caller, const Tomahawk::InfoSystem::InfoType type, const QVariant data ) +FdoNotifyPlugin::pushInfo( const QString caller, const Tomahawk::InfoSystem::InfoType type, const QVariant data ) { qDebug() << Q_FUNC_INFO; if ( type != Tomahawk::InfoSystem::InfoNotifyUser || !data.canConvert< Tomahawk::InfoSystem::InfoCriteriaHash >() ) diff --git a/src/libtomahawk/infosystem/infoplugins/unix/libnotifyplugin.h b/src/libtomahawk/infosystem/infoplugins/unix/fdonotifyplugin.h similarity index 91% rename from src/libtomahawk/infosystem/infoplugins/unix/libnotifyplugin.h rename to src/libtomahawk/infosystem/infoplugins/unix/fdonotifyplugin.h index ca6535cf2..d222b251d 100644 --- a/src/libtomahawk/infosystem/infoplugins/unix/libnotifyplugin.h +++ b/src/libtomahawk/infosystem/infoplugins/unix/fdonotifyplugin.h @@ -16,8 +16,8 @@ * along with Tomahawk. If not, see . */ -#ifndef LIBNOTIFYPLUGIN_H -#define LIBNOTIFYPLUGIN_H +#ifndef FDONOTIFYPLUGIN_H +#define FDONOTIFYPLUGIN_H #include "infosystem/infosystem.h" #include "infosystem/infosystemworker.h" @@ -28,13 +28,13 @@ namespace Tomahawk namespace InfoSystem { -class LibNotifyPlugin : public InfoPlugin +class FdoNotifyPlugin : public InfoPlugin { Q_OBJECT public: - LibNotifyPlugin(); - virtual ~LibNotifyPlugin(); + FdoNotifyPlugin(); + virtual ~FdoNotifyPlugin(); virtual void namChangedSlot( QNetworkAccessManager* ) {} @@ -63,4 +63,4 @@ protected slots: } -#endif // LIBNOTIFYPLUGIN_H +#endif // FDONOTIFYPLUGIN_H diff --git a/src/libtomahawk/infosystem/infosystemworker.cpp b/src/libtomahawk/infosystem/infosystemworker.cpp index 784763c74..3dfd4414b 100644 --- a/src/libtomahawk/infosystem/infosystemworker.cpp +++ b/src/libtomahawk/infosystem/infosystemworker.cpp @@ -30,7 +30,7 @@ #include "infoplugins/mac/adiumplugin.h" #endif #ifdef Q_WS_X11 -#include "infoplugins/unix/libnotifyplugin.h" +#include "infoplugins/unix/fdonotifyplugin.h" #endif #include "lastfm/NetworkAccessManager" @@ -78,9 +78,9 @@ InfoSystemWorker::init( QWeakPointer< Tomahawk::InfoSystem::InfoSystemCache> cac registerInfoTypes( admptr, admptr.data()->supportedGetTypes(), admptr.data()->supportedPushTypes() ); #endif #ifdef Q_WS_X11 - InfoPluginPtr libnotifyptr( new LibNotifyPlugin() ); - m_plugins.append( libnotifyptr ); - registerInfoTypes( libnotifyptr, libnotifyptr.data()->supportedGetTypes(), libnotifyptr.data()->supportedPushTypes() ); + InfoPluginPtr fdonotifyptr( new FdoNotifyPlugin() ); + m_plugins.append( fdonotifyptr ); + registerInfoTypes( fdonotifyptr, fdonotifyptr.data()->supportedGetTypes(), fdonotifyptr.data()->supportedPushTypes() ); #endif Q_FOREACH( InfoPluginPtr plugin, m_plugins )