mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 12:40:35 +00:00
0e5cd14829
Add return-type information to all methods, split up lines properly where I could find them, and ran the whole thing through uncrustify. Looks purty now. :)
17 lines
229 B
Objective-C
17 lines
229 B
Objective-C
#ifndef ZScrollView_h
|
|
#define ZScrollView_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@interface ZScrollView: NSScrollView
|
|
{
|
|
id button1;
|
|
}
|
|
|
|
- (id) initWithFrame: (NSRect)frameRect
|
|
button1: b1;
|
|
|
|
- (id) tile;
|
|
|
|
@end
|
|
#endif // ZScrollView_h
|