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. :)
22 lines
280 B
Objective-C
22 lines
280 B
Objective-C
#ifndef KeypairView_h
|
|
#define KeypairView_h
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
extern id keypairview_i;
|
|
|
|
@interface KeypairView: NSView
|
|
{
|
|
}
|
|
|
|
- (id) calcViewSize;
|
|
|
|
#define SPACING 4
|
|
#define FONTSIZE 12
|
|
#define EXTRASPC 2
|
|
|
|
#define LINEHEIGHT 16
|
|
|
|
@end
|
|
|
|
#endif // KeypairView_h
|