summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRyan Schmidt <git@ryandesign.com>2023-03-30 11:53:37 -0500
committerGitHub <noreply@github.com>2023-03-30 11:53:37 -0500
commit7018d05f4d8bf546613bcdc252426d89f48ff94b (patch)
tree0a21cf2e4a34c2d6bc1c4c92dc0ed8c080d4f7a8 /src
parentTranslated using Weblate (Turkish) (diff)
downloadnheko-7018d05f4d8bf546613bcdc252426d89f48ff94b.tar.xz
Fix build on case-sensitive filesystems
Diffstat (limited to 'src')
-rw-r--r--src/notifications/MacNotificationDelegate.mm4
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