mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +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. :)
18 lines
261 B
Objective-C
18 lines
261 B
Objective-C
#ifndef PopScrollView_h
|
|
#define PopScrollView_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
@interface PopScrollView: NSScrollView
|
|
{
|
|
id button1, button2;
|
|
}
|
|
|
|
- (id) initWithFrame: (NSRect)frameRect
|
|
button1: b1
|
|
button2: b2;
|
|
|
|
- (id) tile;
|
|
|
|
@end
|
|
#endif // PopScrollView_h
|