3132a545c9324b32df3f96991c826b1a7e59e844
[MenuTunes.git] / MenuTunes.m
1 #import "MenuTunes.h"
2 #import "HotKeyCenter.h"
3
4 @implementation MTApplication
5
6 - (void)sendEvent:(NSEvent *)event
7 {
8         [[HotKeyCenter sharedCenter] sendEvent:event];
9         [super sendEvent:event];
10 }
11
12 @end