make osx backend work?

This commit is contained in:
Patrick von Reth 2015-07-15 12:43:15 +02:00
parent f67d4a5201
commit 52bb577885
2 changed files with 9 additions and 1 deletions

View File

@ -32,8 +32,10 @@ public:
~OSXNotificationCenter();
public Q_SLOTS:
void slotInitialize() override;
void slotNotify(Snore::Notification notification) override;
private Q_SLOTS:
void load() override;
};
#endif // OSXNOTIFICATIONCENTER_H

View File

@ -107,3 +107,9 @@ void OSXNotificationCenter::slotNotify(Snore::Notification notification)
slotNotificationDisplayed(notification);
}
void OSXNotificationCenter::load()
{
emit loadedStateChanged(true);
}