From d23a9c4fe240d7df04ea5c1018770ecee302ef94 Mon Sep 17 00:00:00 2001 From: Patrick von Reth Date: Sun, 12 Jan 2014 01:42:47 +0100 Subject: [PATCH] compile with new snore api --- src/infoplugins/generic/snorenotify/SnoreNotifyPlugin.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/infoplugins/generic/snorenotify/SnoreNotifyPlugin.cpp b/src/infoplugins/generic/snorenotify/SnoreNotifyPlugin.cpp index c312811df..27e1c9e7c 100644 --- a/src/infoplugins/generic/snorenotify/SnoreNotifyPlugin.cpp +++ b/src/infoplugins/generic/snorenotify/SnoreNotifyPlugin.cpp @@ -76,8 +76,7 @@ SnoreNotifyPlugin::SnoreNotifyPlugin() addAlert( InfoNowStopped, tr( "Playback Stopped" ) ); addAlert( InfoInboxReceived, tr( "You received a Song recomondation" ) ); - m_snore->addApplication( m_application ); - m_snore->applicationIsInitialized( m_application ); + m_snore->registerApplication( m_application ); connect( m_snore, SIGNAL( actionInvoked( Snore::Notification ) ), this, SLOT( slotActionInvoked( Snore::Notification ) ) ); } @@ -87,7 +86,7 @@ SnoreNotifyPlugin::~SnoreNotifyPlugin() { tDebug( LOGVERBOSE ) << Q_FUNC_INFO; - m_snore->removeApplication(m_application->name()); + m_snore->deregisterApplication( m_application ); foreach( Snore::Alert* alert, m_alerts ) { alert->deleteLater();