X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/f5837543befd727c75d9c6a99cd5d5bfec234d10..d9b45efb2f32e03155afc21b2846b9e381049be0:/KeyCombo.m diff --git a/KeyCombo.m b/KeyCombo.m index 5248197..edebd68 100755 --- a/KeyCombo.m +++ b/KeyCombo.m @@ -99,7 +99,7 @@ - (NSString *)userDisplayRep { if ( ! [self isValid] ) { - return @"None"; + return @""; } else { return [NSString stringWithFormat: @"%@%@", [KeyCombo _stringForModifiers: mModifiers], @@ -112,7 +112,7 @@ static long modToChar[4][2] = { { cmdKey, 0x23180000 }, { optionKey, 0x23250000 }, - { controlKey, 0x005E0000 }, + { controlKey, 0x23030000 }, { shiftKey, 0x21e70000 } }; @@ -187,7 +187,7 @@ if (data) { combo = [[NSUnarchiver unarchiveObjectWithData:data] retain]; } else { - combo = [[KeyCombo alloc] init]; + combo = nil; } return combo;