Again, whitespace.

This commit is contained in:
Bill Currie 2010-09-12 08:14:08 +09:00
parent 4d3cd613df
commit 8ffe20ee82
12 changed files with 23 additions and 12 deletions

View File

@ -18,7 +18,8 @@ void CameraLineto (vec3_t p);
extern BOOL timedrawing; extern BOOL timedrawing;
@interface CameraView:NSView { @interface CameraView:NSView
{
float xa, ya, za; float xa, ya, za;
float move; float move;

View File

@ -9,7 +9,8 @@
extern id clipper_i; extern id clipper_i;
@interface Clipper:NSObject { @interface Clipper:NSObject
{
int num; int num;
vec3_t pos[3]; vec3_t pos[3];
plane_t plane; plane_t plane;

View File

@ -3,7 +3,7 @@
#include <AppKit/AppKit.h> #include <AppKit/AppKit.h>
@ interface DictList:NSMutableArray @interface DictList:NSMutableArray
{ {
} }

View File

@ -18,7 +18,8 @@ typedef enum {
extern id inspcontrol_i; extern id inspcontrol_i;
@interface InspectorControl:NSObject { @interface InspectorControl:NSObject
{
id inspectorView_i; // inspector view id inspectorView_i; // inspector view
id inspectorSubview_i; // inspector view's current subview id inspectorSubview_i; // inspector view's current subview
// (gets replaced) // (gets replaced)

View File

@ -9,7 +9,8 @@
extern id map_i; extern id map_i;
@interface Map:NSMutableArray { @interface Map:NSMutableArray
{
id currentEntity; id currentEntity;
id oldselection; // temp when loading a new map id oldselection; // temp when loading a new map
float minz, maxz; float minz, maxz;

View File

@ -3,7 +3,8 @@
#include <AppKit/AppKit.h> #include <AppKit/AppKit.h>
@ interface PopScrollView:NSScrollView { @interface PopScrollView:NSScrollView
{
id button1, button2; id button1, button2;
} }

View File

@ -10,7 +10,8 @@ extern float lightaxis[3];
// these are personal preferences saved in NeXT defaults, not project // these are personal preferences saved in NeXT defaults, not project
// parameters saved in the quake.qe_project file // parameters saved in the quake.qe_project file
@interface Preferences:NSObject { @interface Preferences:NSObject
{
id bspSound_i; // actual sound object id bspSound_i; // actual sound object
// internal state // internal state

View File

@ -21,7 +21,8 @@
extern id project_i; extern id project_i;
@interface Project:NSObject { @interface Project:NSObject
{
id projectInfo; // dictionary storage of project info id projectInfo; // dictionary storage of project info
id basepathinfo_i; // outlet to base path info textfield id basepathinfo_i; // outlet to base path info textfield

View File

@ -16,7 +16,8 @@ void NopSound (void);
void qprintf (char *fmt, ...); // prints text to cmd_out_i void qprintf (char *fmt, ...); // prints text to cmd_out_i
@interface QuakeEd:NSWindow { @interface QuakeEd:NSWindow
{
BOOL dirty; BOOL dirty;
char filename[1024]; // full path with .map extension char filename[1024]; // full path with .map extension

View File

@ -47,7 +47,8 @@ winding_t *CopyWinding (winding_t * w);
winding_t *NewWinding (int points); winding_t *NewWinding (int points);
@interface SetBrush:NSObject { @interface SetBrush:NSObject
{
BOOL regioned; // not active BOOL regioned; // not active
BOOL selected; BOOL selected;

View File

@ -31,7 +31,8 @@
#include <AppKit/AppKit.h> #include <AppKit/AppKit.h>
@ interface Storage:NSObject { @interface Storage:NSObject
{
@public void *dataPtr; /* data of the Storage object */ @public void *dataPtr; /* data of the Storage object */
const char *description; /* Element description */ const char *description; /* Element description */
NSUInteger numElements; /* Actual number of elements */ NSUInteger numElements; /* Actual number of elements */

View File

@ -3,7 +3,8 @@
#include <AppKit/AppKit.h> #include <AppKit/AppKit.h>
@ interface TextureView:NSView { @interface TextureView:NSView
{
id parent_i; id parent_i;
int deselectIndex; int deselectIndex;
} }