diff -r 969092730d34 -r edb9dc8273d9 smf/inc/smfplugins/smfmusic/smfmusiceventsplugin.h --- a/smf/inc/smfplugins/smfmusic/smfmusiceventsplugin.h Thu Apr 15 15:40:08 2010 +0530 +++ b/smf/inc/smfplugins/smfmusic/smfmusiceventsplugin.h Thu Apr 22 15:18:37 2010 +0530 @@ -23,12 +23,13 @@ #define SMFMUSICEVENTSPLUGIN_H_ #include -#include +//#include #include #include +#include // Qt mobility class // Forward declaration -class SmfPluginManagerUtil; +class SmfPluginUtil; using namespace QtMobility; @@ -43,16 +44,15 @@ */ class SmfMusicEventsPlugin : public SmfPluginBase { - Q_OBJECT public: /** * Constructor with default argument - * @param aUtil The SmfPluginManagerUtil instance. The plugins can + * @param aUtil The SmfPluginUtil instance. The plugins can * call the method getAuthKeys() of this class, with its pluginID to * get the OAuth keys, keys are returned only if this plugin is * authorised by Smf framework */ - SmfMusicEventsPlugin( SmfPluginManagerUtil* aUtil ); + SmfMusicEventsPlugin( SmfPluginUtil* aUtil ); /** * Destructor @@ -68,7 +68,7 @@ * @return SmfPluginError Plugin error if any, else SmfPluginErrNone */ virtual SmfPluginError events( SmfPluginRequestData &aRequest, - const QtMobility::QContactGeolocation &aLocation, + const QGeoPositionInfo &aLocation, const int aPageNum = SMF_FIRST_PAGE, const int aItemsPerPage = SMF_ITEMS_PER_PAGE ) = 0; @@ -81,7 +81,7 @@ * @return SmfPluginError Plugin error if any, else SmfPluginErrNone */ virtual SmfPluginError venues( SmfPluginRequestData &aRequest, - const QtMobility::QContactGeolocation &aLocation, + const QGeoPositionInfo &aLocation, const int aPageNum = SMF_FIRST_PAGE, const int aItemsPerPage = SMF_ITEMS_PER_PAGE ) = 0;