| 298 | } |
| 299 | |
| 300 | void GM_Manager::showNotification(const QString &message, const QString &title) |
| 301 | { |
| 302 | QIcon icon(QSL(":gm/data/icon.svg")); |
| 303 | |
| 304 | mApp->desktopNotifications()->showNotification(icon.pixmap(48), title.isEmpty() ? tr("GreaseMonkey") : title, message); |
| 305 | } |
| 306 | |
| 307 | void GM_Manager::load() |
| 308 | { |
no test coverage detected