diff options
author | Ryan Schmidt <git@ryandesign.com> | 2023-03-30 11:53:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 11:53:37 -0500 |
commit | 7018d05f4d8bf546613bcdc252426d89f48ff94b (patch) | |
tree | 0a21cf2e4a34c2d6bc1c4c92dc0ed8c080d4f7a8 /src | |
parent | Translated using Weblate (Turkish) (diff) | |
download | nheko-7018d05f4d8bf546613bcdc252426d89f48ff94b.tar.xz |
Fix build on case-sensitive filesystems
Diffstat (limited to 'src')
-rw-r--r-- | src/notifications/MacNotificationDelegate.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/notifications/MacNotificationDelegate.mm b/src/notifications/MacNotificationDelegate.mm index 9047efe3..ddc5816c 100644 --- a/src/notifications/MacNotificationDelegate.mm +++ b/src/notifications/MacNotificationDelegate.mm @@ -5,7 +5,7 @@ #import "notifications/MacNotificationDelegate.h" -#include <QString.h> +#include <QString> #include "ChatPage.h" @@ -44,4 +44,4 @@ completionHandler(UNAuthorizationOptionAlert | UNAuthorizationOptionBadge | UNAuthorizationOptionSound); } -@end \ No newline at end of file +@end |