iOS build fixes

This commit is contained in:
pokamest 2021-11-30 12:53:12 -08:00
parent bf8b3c3b2f
commit 9e0fd7d51e
3 changed files with 12 additions and 7 deletions

View file

@ -5,7 +5,7 @@
#ifndef IOSNOTIFICATIONHANDLER_H
#define IOSNOTIFICATIONHANDLER_H
#include "notificationhandler.h"
#include "ui/notificationhandler.h"
#include <QObject>
@ -17,11 +17,12 @@ class IOSNotificationHandler final : public NotificationHandler {
~IOSNotificationHandler();
protected:
void notify(const QString& title, const QString& message,
int timerSec) override;
void notify(Message type, const QString& title, const QString& message,
int timerMsec) override;
private:
void* m_delegate = nullptr;
};
#endif // IOSNOTIFICATIONHANDLER_H