Remove unused helper function

This was from before requiring Lion.
This commit is contained in:
Allan Odgaard
2012-09-10 20:21:22 +02:00
parent 80a0efb563
commit 20c6a9640d
2 changed files with 0 additions and 6 deletions

View File

@@ -4,4 +4,3 @@
PUBLIC extern NSString* const OakCursorDidHideNotification;
PUBLIC BOOL OakIsAlternateKeyOrMouseEvent (NSUInteger flags = NSAlternateKeyMask, NSEvent* anEvent = [NSApp currentEvent]);
PUBLIC void SetLionScrollerKnobStyle (NSScrollView* scrollView, NSScrollerKnobStyle style);

View File

@@ -17,8 +17,3 @@ BOOL OakIsAlternateKeyOrMouseEvent (NSUInteger flags, NSEvent* anEvent)
{
return ([anEvent type] == NSLeftMouseUp || [anEvent type] == NSKeyDown) && (([anEvent modifierFlags] & flags) == flags);
}
void SetLionScrollerKnobStyle (NSScrollView* scrollView, NSScrollerKnobStyle style)
{
[scrollView setScrollerKnobStyle:style];
}