Remove showNotification function

This commit is contained in:
Loren Burkholder 2021-01-19 18:47:18 -05:00
parent e2d89e093a
commit b04a7fbef6
2 changed files with 0 additions and 13 deletions

View File

@ -47,7 +47,6 @@ public:
private:
QDBusInterface dbus;
uint showNotification(const QString summary, const QString text, const QImage image);
void closeNotification(uint id);
// notification ID to (room ID, event ID)

View File

@ -86,18 +86,6 @@ NotificationsManager::postNotification(const QString &roomid,
});
}
uint
NotificationsManager::showNotification(const QString summary,
const QString text,
const QImage image)
{
Q_UNUSED(summary)
Q_UNUSED(text)
Q_UNUSED(image)
return 0;
}
void
NotificationsManager::closeNotification(uint id)
{