Skip to content

Commit 15374e8

Browse files
committed
Remove unintentionally indented end braces.
1 parent 0c35330 commit 15374e8

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

Core/Tools/W3DView/ScreenCursor.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ ScreenCursorClass::ScreenCursorClass (const ScreenCursorClass &src)
7878
RenderObjClass (src)
7979
{
8080
Initialize ();
81-
}
81+
}
8282

8383

8484
///////////////////////////////////////////////////////////////////
@@ -90,7 +90,7 @@ ScreenCursorClass::~ScreenCursorClass (void)
9090
{
9191
REF_PTR_RELEASE (m_pTexture);
9292
REF_PTR_RELEASE (m_pVertMaterial);
93-
}
93+
}
9494

9595

9696
///////////////////////////////////////////////////////////////////
@@ -138,7 +138,7 @@ ScreenCursorClass::Initialize (void)
138138
m_UVs[2].Y = 1.0F;
139139
m_UVs[3].X = 1.0F;
140140
m_UVs[3].Y = 1.0F;
141-
}
141+
}
142142

143143

144144
///////////////////////////////////////////////////////////////////
@@ -238,7 +238,7 @@ ScreenCursorClass::On_Frame_Update (void)
238238
m_Verticies[3].X = x_max;
239239
m_Verticies[3].Y = y_max;
240240
m_Verticies[3].Z = z_pos;
241-
}
241+
}
242242

243243

244244
///////////////////////////////////////////////////////////////////

Core/Tools/W3DView/SphereGeneralPropPage.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ void
270270
SphereGeneralPropPageClass::OnChangeFilenameEdit (void)
271271
{
272272
SetModified ();
273-
}
273+
}
274274

275275

276276
/////////////////////////////////////////////////////////////
@@ -282,7 +282,7 @@ void
282282
SphereGeneralPropPageClass::OnChangeNameEdit (void)
283283
{
284284
SetModified ();
285-
}
285+
}
286286

287287

288288
/////////////////////////////////////////////////////////////
@@ -321,7 +321,7 @@ void
321321
SphereGeneralPropPageClass::OnChangeLifetimeEdit (void)
322322
{
323323
SetModified ();
324-
}
324+
}
325325

326326

327327
/////////////////////////////////////////////////////////////
@@ -333,7 +333,7 @@ void
333333
SphereGeneralPropPageClass::OnSelchangeShaderCombo (void)
334334
{
335335
SetModified ();
336-
}
336+
}
337337

338338

339339
/////////////////////////////////////////////////////////////

Core/Tools/W3DView/SpherePropertySheet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,5 +277,5 @@ SpherePropertySheetClass::Create_New_Object (void)
277277
// Display the new object
278278
//
279279
::GetCurrentDocument ()->DisplayObject (m_RenderObj);
280-
}
280+
}
281281

Core/Tools/W3DView/W3DViewDoc.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2329,7 +2329,7 @@ CW3DViewDoc::Update_Aggregate_Prototype (RenderObjClass &render_obj)
23292329
// Add this prototype to the asset manager
23302330
WW3DAssetManager::Get_Instance ()->Remove_Prototype (pdefinition->Get_Name ());
23312331
WW3DAssetManager::Get_Instance ()->Add_Prototype (pprototype);
2332-
}
2332+
}
23332333

23342334

23352335
///////////////////////////////////////////////////////////////
@@ -2347,7 +2347,7 @@ CW3DViewDoc::Update_LOD_Prototype (HLodClass &hlod)
23472347
// Add this prototype to the asset manager
23482348
WW3DAssetManager::Get_Instance ()->Remove_Prototype (pdefinition->Get_Name ());
23492349
WW3DAssetManager::Get_Instance ()->Add_Prototype (pprototype);
2350-
}
2350+
}
23512351

23522352

23532353
///////////////////////////////////////////////////////////////
@@ -2522,7 +2522,7 @@ CW3DViewDoc::Show_Cursor (bool onoff)
25222522
}
25232523

25242524
m_pCursor->Set_Hidden (!onoff);
2525-
}
2525+
}
25262526

25272527

25282528
///////////////////////////////////////////////////////////////
@@ -2546,7 +2546,7 @@ void
25462546
CW3DViewDoc::Set_Cursor (LPCTSTR resource_name)
25472547
{
25482548
m_pCursor->Set_Texture (::Load_RC_Texture (resource_name));
2549-
}
2549+
}
25502550

25512551

25522552
///////////////////////////////////////////////////////////////
@@ -2623,7 +2623,7 @@ CW3DViewDoc::Update_Particle_Count (void)
26232623
{
26242624
int particles = Count_Particles ();
26252625
((CMainFrame *)::AfxGetMainWnd ())->Update_Particle_Count (particles);
2626-
}
2626+
}
26272627

26282628

26292629
///////////////////////////////////////////////////////////////

Generals/Code/Libraries/Source/WWVegas/WW3D2/dx8wrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2854,7 +2854,7 @@ DX8Wrapper::Set_Render_Target(IDirect3DSurface8 *render_target)
28542854
}
28552855

28562856
IsRenderToTexture = false;
2857-
}
2857+
}
28582858

28592859

28602860
IDirect3DSwapChain8 *

Generals/Code/Libraries/Source/WWVegas/WW3D2/hmorphanim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bool TimeCodedMorphKeysClass::Save_W3D(ChunkSaveClass & csave)
9191
void TimeCodedMorphKeysClass::Add_Key (uint32 morph_frame, uint32 pose_frame)
9292
{
9393
Keys.Add (MorphKeyStruct (morph_frame, pose_frame));
94-
}
94+
}
9595

9696
void TimeCodedMorphKeysClass::Get_Morph_Info(float morph_frame,int * pose_frame0,int * pose_frame1,float * fraction)
9797
{

Generals/Code/Libraries/Source/WWVegas/WW3D2/meshmdl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ MeshModelClass::MeshModelClass(const MeshModelClass & that) :
9595
CurMatDesc = DefMatDesc;
9696

9797
clone_materials(that);
98-
}
98+
}
9999

100100
MeshModelClass::~MeshModelClass(void)
101101
{

GeneralsMD/Code/Libraries/Source/WWVegas/WW3D2/hmorphanim.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bool TimeCodedMorphKeysClass::Save_W3D(ChunkSaveClass & csave)
9191
void TimeCodedMorphKeysClass::Add_Key (uint32 morph_frame, uint32 pose_frame)
9292
{
9393
Keys.Add (MorphKeyStruct (morph_frame, pose_frame));
94-
}
94+
}
9595

9696
void TimeCodedMorphKeysClass::Get_Morph_Info(float morph_frame,int * pose_frame0,int * pose_frame1,float * fraction)
9797
{

GeneralsMD/Code/Libraries/Source/WWVegas/WW3D2/meshmdl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ MeshModelClass::MeshModelClass(const MeshModelClass & that) :
9999
CurMatDesc = DefMatDesc;
100100

101101
clone_materials(that);
102-
}
102+
}
103103

104104
MeshModelClass::~MeshModelClass(void)
105105
{

0 commit comments

Comments
 (0)