mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
0f5f656a00
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@254 af15c1b1-3010-417e-b628-4374ebc0bcbd
18 lines
312 B
Objective-C
18 lines
312 B
Objective-C
//
|
|
// UpdateButton.m
|
|
// QuakeSpasm
|
|
//
|
|
// Created by Kristian Duske on 01.08.10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "UpdateButton.h"
|
|
|
|
|
|
@implementation UpdateButton
|
|
|
|
- (void)resetCursorRects {
|
|
[self addCursorRect:[self bounds] cursor:[NSCursor pointingHandCursor]];
|
|
}
|
|
|
|
@end
|