From 8ffe20ee822d11d34920d8c7641f021489175592 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 12 Sep 2010 08:14:08 +0900 Subject: [PATCH] Again, whitespace. --- tools/Forge/Bundles/MapEdit/CameraView.h | 3 ++- tools/Forge/Bundles/MapEdit/Clipper.h | 3 ++- tools/Forge/Bundles/MapEdit/DictList.h | 2 +- tools/Forge/Bundles/MapEdit/InspectorControl.h | 3 ++- tools/Forge/Bundles/MapEdit/Map.h | 3 ++- tools/Forge/Bundles/MapEdit/PopScrollView.h | 3 ++- tools/Forge/Bundles/MapEdit/Preferences.h | 3 ++- tools/Forge/Bundles/MapEdit/Project.h | 3 ++- tools/Forge/Bundles/MapEdit/QuakeEd.h | 3 ++- tools/Forge/Bundles/MapEdit/SetBrush.h | 3 ++- tools/Forge/Bundles/MapEdit/Storage.h | 3 ++- tools/Forge/Bundles/MapEdit/TextureView.h | 3 ++- 12 files changed, 23 insertions(+), 12 deletions(-) diff --git a/tools/Forge/Bundles/MapEdit/CameraView.h b/tools/Forge/Bundles/MapEdit/CameraView.h index 67de8d874..7f7367e61 100644 --- a/tools/Forge/Bundles/MapEdit/CameraView.h +++ b/tools/Forge/Bundles/MapEdit/CameraView.h @@ -18,7 +18,8 @@ void CameraLineto (vec3_t p); extern BOOL timedrawing; -@interface CameraView:NSView { +@interface CameraView:NSView +{ float xa, ya, za; float move; diff --git a/tools/Forge/Bundles/MapEdit/Clipper.h b/tools/Forge/Bundles/MapEdit/Clipper.h index edc29950b..c98bcdefc 100644 --- a/tools/Forge/Bundles/MapEdit/Clipper.h +++ b/tools/Forge/Bundles/MapEdit/Clipper.h @@ -9,7 +9,8 @@ extern id clipper_i; -@interface Clipper:NSObject { +@interface Clipper:NSObject +{ int num; vec3_t pos[3]; plane_t plane; diff --git a/tools/Forge/Bundles/MapEdit/DictList.h b/tools/Forge/Bundles/MapEdit/DictList.h index b1d15a86d..0b2c80aa9 100644 --- a/tools/Forge/Bundles/MapEdit/DictList.h +++ b/tools/Forge/Bundles/MapEdit/DictList.h @@ -3,7 +3,7 @@ #include -@ interface DictList:NSMutableArray +@interface DictList:NSMutableArray { } diff --git a/tools/Forge/Bundles/MapEdit/InspectorControl.h b/tools/Forge/Bundles/MapEdit/InspectorControl.h index 3db0e9689..e30ae0f9c 100644 --- a/tools/Forge/Bundles/MapEdit/InspectorControl.h +++ b/tools/Forge/Bundles/MapEdit/InspectorControl.h @@ -18,7 +18,8 @@ typedef enum { extern id inspcontrol_i; -@interface InspectorControl:NSObject { +@interface InspectorControl:NSObject +{ id inspectorView_i; // inspector view id inspectorSubview_i; // inspector view's current subview // (gets replaced) diff --git a/tools/Forge/Bundles/MapEdit/Map.h b/tools/Forge/Bundles/MapEdit/Map.h index cfcb9cd9e..876f5afe3 100644 --- a/tools/Forge/Bundles/MapEdit/Map.h +++ b/tools/Forge/Bundles/MapEdit/Map.h @@ -9,7 +9,8 @@ extern id map_i; -@interface Map:NSMutableArray { +@interface Map:NSMutableArray +{ id currentEntity; id oldselection; // temp when loading a new map float minz, maxz; diff --git a/tools/Forge/Bundles/MapEdit/PopScrollView.h b/tools/Forge/Bundles/MapEdit/PopScrollView.h index 5275f90d5..233a7abfe 100644 --- a/tools/Forge/Bundles/MapEdit/PopScrollView.h +++ b/tools/Forge/Bundles/MapEdit/PopScrollView.h @@ -3,7 +3,8 @@ #include -@ interface PopScrollView:NSScrollView { +@interface PopScrollView:NSScrollView +{ id button1, button2; } diff --git a/tools/Forge/Bundles/MapEdit/Preferences.h b/tools/Forge/Bundles/MapEdit/Preferences.h index bfb6fdaa1..1d3d646b6 100644 --- a/tools/Forge/Bundles/MapEdit/Preferences.h +++ b/tools/Forge/Bundles/MapEdit/Preferences.h @@ -10,7 +10,8 @@ extern float lightaxis[3]; // these are personal preferences saved in NeXT defaults, not project // parameters saved in the quake.qe_project file -@interface Preferences:NSObject { +@interface Preferences:NSObject +{ id bspSound_i; // actual sound object // internal state diff --git a/tools/Forge/Bundles/MapEdit/Project.h b/tools/Forge/Bundles/MapEdit/Project.h index 68578fc46..42bcb3aad 100644 --- a/tools/Forge/Bundles/MapEdit/Project.h +++ b/tools/Forge/Bundles/MapEdit/Project.h @@ -21,7 +21,8 @@ extern id project_i; -@interface Project:NSObject { +@interface Project:NSObject +{ id projectInfo; // dictionary storage of project info id basepathinfo_i; // outlet to base path info textfield diff --git a/tools/Forge/Bundles/MapEdit/QuakeEd.h b/tools/Forge/Bundles/MapEdit/QuakeEd.h index 39d21420e..c2751b9ab 100644 --- a/tools/Forge/Bundles/MapEdit/QuakeEd.h +++ b/tools/Forge/Bundles/MapEdit/QuakeEd.h @@ -16,7 +16,8 @@ void NopSound (void); void qprintf (char *fmt, ...); // prints text to cmd_out_i -@interface QuakeEd:NSWindow { +@interface QuakeEd:NSWindow +{ BOOL dirty; char filename[1024]; // full path with .map extension diff --git a/tools/Forge/Bundles/MapEdit/SetBrush.h b/tools/Forge/Bundles/MapEdit/SetBrush.h index 3ac684157..6a4bf85bb 100644 --- a/tools/Forge/Bundles/MapEdit/SetBrush.h +++ b/tools/Forge/Bundles/MapEdit/SetBrush.h @@ -47,7 +47,8 @@ winding_t *CopyWinding (winding_t * w); winding_t *NewWinding (int points); -@interface SetBrush:NSObject { +@interface SetBrush:NSObject +{ BOOL regioned; // not active BOOL selected; diff --git a/tools/Forge/Bundles/MapEdit/Storage.h b/tools/Forge/Bundles/MapEdit/Storage.h index 228efcbf6..4dda151e6 100644 --- a/tools/Forge/Bundles/MapEdit/Storage.h +++ b/tools/Forge/Bundles/MapEdit/Storage.h @@ -31,7 +31,8 @@ #include -@ interface Storage:NSObject { +@interface Storage:NSObject +{ @public void *dataPtr; /* data of the Storage object */ const char *description; /* Element description */ NSUInteger numElements; /* Actual number of elements */ diff --git a/tools/Forge/Bundles/MapEdit/TextureView.h b/tools/Forge/Bundles/MapEdit/TextureView.h index 7dd35ef5b..46bbc0389 100644 --- a/tools/Forge/Bundles/MapEdit/TextureView.h +++ b/tools/Forge/Bundles/MapEdit/TextureView.h @@ -3,7 +3,8 @@ #include -@ interface TextureView:NSView { +@interface TextureView:NSView +{ id parent_i; int deselectIndex; }