37ce6f1eda
I didn't read the clang-format documentation properly
10 lines
313 B
C++
10 lines
313 B
C++
#include "notifications.hpp"
|
|
|
|
#include "mainwindow.hpp"
|
|
#include <QStatusBar>
|
|
|
|
void notifications::notify(QString title, QString body, QSystemTrayIcon::MessageIcon icon) {
|
|
MainWindow::inst()->tray->showMessage(title, body, icon, 5000);
|
|
MainWindow::inst()->statusBar()->showMessage(title + ": " + body);
|
|
}
|