editing linux sources

This commit is contained in:
leetthewire 2022-04-02 07:31:54 -07:00
parent 39de79d3cd
commit a261ab4f0c
3 changed files with 41 additions and 48 deletions

View file

@ -12,7 +12,7 @@
#else
# if defined(Q_OS_LINUX)
# include "linuxsystemtraynotificationhandler.h"
# include "platforms/linux/linuxsystemtraynotificationhandler.h"
# endif
# include "systemtray_notificationhandler.h"
@ -27,7 +27,7 @@ NotificationHandler* NotificationHandler::create(QObject* parent) {
#else
# if defined(Q_OS_LINUX)
if (LinuxSystemTrayNotificationHandler::requiredCustomImpl() == true) {
if (LinuxSystemTrayNotificationHandler::requiredCustomImpl()) {
return new LinuxSystemTrayNotificationHandler(parent);
}
# endif