diff options
Diffstat (limited to 'SwifTools/Notifier/GrowlNotifierDelegate.mm')
-rw-r--r-- | SwifTools/Notifier/GrowlNotifierDelegate.mm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/SwifTools/Notifier/GrowlNotifierDelegate.mm b/SwifTools/Notifier/GrowlNotifierDelegate.mm index 1d934ad..77df3ab 100644 --- a/SwifTools/Notifier/GrowlNotifierDelegate.mm +++ b/SwifTools/Notifier/GrowlNotifierDelegate.mm @@ -1,35 +1,35 @@ /* * Copyright (c) 2011 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #import "GrowlNotifierDelegate.h" #include <SwifTools/Notifier/GrowlNotifier.h> @implementation GrowlNotifierDelegate @synthesize registrationDictionary; @synthesize name; @synthesize notifier; using namespace Swift; - (NSString *) applicationNameForGrowl { - return name; + return name; } - (NSDictionary*) registrationDictionaryForGrowl { - return registrationDictionary; + return registrationDictionary; } - (void) growlNotificationWasClicked: (id) clickContext { - notifier->handleNotificationClicked(clickContext); + notifier->handleNotificationClicked(clickContext); } - (void) growlNotificationTimedOut: (id) clickContext { - notifier->handleNotificationTimedOut(clickContext); + notifier->handleNotificationTimedOut(clickContext); } @end |