Add missing `WindowsToast::setDockBadgeLabel()`
This commit is contained in:
parent
35832cb2bb
commit
9d54904e48
|
@ -138,3 +138,8 @@ QProcess *SnorePlugin::WindowsToast::createProcess(Snore::Notification noti)
|
|||
connect(qApp, &QGuiApplication::aboutToQuit, p, &QProcess::kill);
|
||||
return p;
|
||||
}
|
||||
|
||||
void SnorePlugin::WindowsToast::setDockBadgeLabel(const QString label)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@ public Q_SLOTS:
|
|||
void slotNotify(Snore::Notification notification) override;
|
||||
void slotRegisterApplication(const Snore::Application &application) override;
|
||||
void slotCloseNotification(Snore::Notification notification) override;
|
||||
void setDockBadgeLabel(const QString label) override;
|
||||
|
||||
private:
|
||||
QString appId(const Snore::Application &application);
|
||||
|
|
Loading…
Reference in New Issue