From f1228d6594f59b240fd41477f55289930d469cac Mon Sep 17 00:00:00 2001 From: Jonathan Rahn Date: Mon, 6 Jan 2014 13:59:26 +0100 Subject: Silence compiler warning "No previous prototype for function..." and added an explicit typecast, update README with a hint to the view's height --- MASShortcut.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MASShortcut.m') diff --git a/MASShortcut.m b/MASShortcut.m index f03be0e..4e9888d 100644 --- a/MASShortcut.m +++ b/MASShortcut.m @@ -189,7 +189,7 @@ NSString *const MASShortcutModifierFlags = @"ModifierFlags"; UniCharCount length = 0; UniChar chars[256] = { 0 }; UInt32 deadKeyState = 0; - error = UCKeyTranslate(layoutData, self.keyCode, kUCKeyActionDisplay, 0, // No modifiers + error = UCKeyTranslate(layoutData, (UInt16)self.keyCode, kUCKeyActionDisplay, 0, // No modifiers LMGetKbdType(), kUCKeyTranslateNoDeadKeysMask, &deadKeyState, sizeof(chars) / sizeof(UniChar), &length, chars); keystroke = ((error == noErr) && length ? [NSString stringWithCharacters:chars length:length] : @""); -- cgit v1.2.3