moved to xcode 4

This commit is contained in:
Jeena Paradies 2011-03-12 15:41:08 +01:00
parent 7b4adc0f63
commit 526a9ba0cc
46 changed files with 8146 additions and 1764 deletions

View file

@ -12,7 +12,7 @@
@implementation Constants
+ (NSString *)stringFromVirtualKeyCode:(NSInteger)code {
NSString *string;
NSString *string = nil;
switch (code) {
case kVK_ANSI_A:
string = @"A";
@ -210,6 +210,7 @@
string = @"9";
break;
default:
string = nil;
break;
}