aboutsummaryrefslogtreecommitdiff
path: root/src/qt/macnotificationhandler.h
diff options
context:
space:
mode:
authorJonas Schnelli <dev@jonasschnelli.ch>2017-09-07 10:11:44 -0700
committerJonas Schnelli <dev@jonasschnelli.ch>2017-09-07 10:11:44 -0700
commitf151f5f50f05727cfd3445d8f678a8a2ac6c8409 (patch)
tree239a483f3438367024768a3dfd23d6f7100f1363 /src/qt/macnotificationhandler.h
parenta3624ddb1a3b4a1ced39dfe75b1bcbb52de4fbb0 (diff)
downloadbitcoin-f151f5f50f05727cfd3445d8f678a8a2ac6c8409.tar.xz
[macOS] remove Growl support, remove unused code
Diffstat (limited to 'src/qt/macnotificationhandler.h')
-rw-r--r--src/qt/macnotificationhandler.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/qt/macnotificationhandler.h b/src/qt/macnotificationhandler.h
index d4749b3d5f..3a005c3c46 100644
--- a/src/qt/macnotificationhandler.h
+++ b/src/qt/macnotificationhandler.h
@@ -7,20 +7,17 @@
#include <QObject>
-/** Macintosh-specific notification handler (supports UserNotificationCenter and Growl).
+/** Macintosh-specific notification handler (supports UserNotificationCenter).
*/
class MacNotificationHandler : public QObject
{
Q_OBJECT
public:
- /** shows a 10.8+ UserNotification in the UserNotificationCenter
+ /** shows a macOS 10.8+ UserNotification in the UserNotificationCenter
*/
void showNotification(const QString &title, const QString &text);
- /** executes AppleScript */
- void sendAppleScript(const QString &script);
-
/** check if OS can handle UserNotifications */
bool hasUserNotificationCenterSupport(void);
static MacNotificationHandler *instance();