Skip to content

Commit

Permalink
remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
uluyol committed Dec 21, 2015
1 parent 9d74f53 commit 2764256
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion view.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
items:(ItemList)itemList
drawCtx:(DrawCtx *)drawCtx
promptStr:(CFStringRef)promptStr;
- (void)keyUp:(NSEvent *)event;
- (void)keyDown:(NSEvent *)event;

@end
Expand Down
5 changes: 0 additions & 5 deletions view.m
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ - (id)initWithFrame:(NSRect)frame
return self;
}

- (void)keyUp:(NSEvent *)event {
NSLog(@"Key released: %@", event);
}

- (void)keyDown:(NSEvent *)event {
Item *newSel = selected_ + 1;
NSString *curString;
Expand Down Expand Up @@ -146,7 +142,6 @@ - (void)keyDown:(NSEvent *)event {
break;
}
default:
NSLog(@"Key pressed: %@", event);
CFStringAppend(curText_, (CFStringRef)event.characters);
ItemListReset(&filtered_);
ItemListFilter(&filtered_, items_, curText_);
Expand Down

0 comments on commit 2764256

Please sign in to comment.