summaryrefslogtreecommitdiffstats
path: root/DDHotKeyCenter.h
diff options
context:
space:
mode:
authorDave DeLong2010-02-26 14:38:59 -0700
committerDave DeLong2010-02-26 14:38:59 -0700
commit3eb84979081c9651a6def70e4b59f4bd1c918cbc (patch)
tree9749424e20cd36e97cddcd0658280cb971775736 /DDHotKeyCenter.h
parentf9c02364f1e5f14c4c2e9cde7ed0052500f75c8d (diff)
downloadDDHotKey-3eb84979081c9651a6def70e4b59f4bd1c918cbc.tar.bz2
Minor API name change to more closely follow convention
Diffstat (limited to 'DDHotKeyCenter.h')
-rw-r--r--DDHotKeyCenter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/DDHotKeyCenter.h b/DDHotKeyCenter.h
index 25a6fbd..05cfbfc 100644
--- a/DDHotKeyCenter.h
+++ b/DDHotKeyCenter.h
@@ -34,7 +34,7 @@ typedef void (^DDHotKeyTask)(NSEvent*);
The modifierFlags must be a bitwise OR of NSCommandKeyMask, NSAlternateKeyMask, NSControlKeyMask, or NSShiftKeyMask;
Returns YES if the hotkey was registered; NO otherwise.
*/
-- (BOOL) registerHotKeyWithKeyCode:(unsigned short)keyCode modifierFlags:(NSUInteger)flags block:(DDHotKeyTask)task;
+- (BOOL) registerHotKeyWithKeyCode:(unsigned short)keyCode modifierFlags:(NSUInteger)flags task:(DDHotKeyTask)task;
#endif
/**