Skip to content

Commit 0720a4e

Browse files
authored
[CORE] Fix compiler warnings for incorrect include file names in W3DView (#1040)
1 parent ec2c22e commit 0720a4e

File tree

110 files changed

+493
-494
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+493
-494
lines changed

Core/Tools/W3DView/AddToLineupDialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
// AddToLineupDialog.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
23-
#include "w3dview.h"
22+
#include "StdAfx.h"
23+
#include "W3DView.h"
2424
#include "AddToLineupDialog.h"
2525

2626
#include "ViewerScene.h"

Core/Tools/W3DView/AdvancedAnimSheet.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
// AdvancedAnimSheet.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
23-
#include "w3dview.h"
24-
#include "W3dViewDoc.h"
22+
#include "StdAfx.h"
23+
#include "W3DView.h"
24+
#include "W3DViewDoc.h"
2525
#include "AdvancedAnimSheet.h"
2626

27-
#include "AssetMgr.h"
28-
#include "HAnim.h"
29-
#include "HTree.h"
27+
#include "assetmgr.h"
28+
#include "hanim.h"
29+
#include "htree.h"
3030
#include "Utils.h"
3131

3232

Core/Tools/W3DView/AggregateNameDialog.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
3232

3333

34-
#include "StdAfx.H"
35-
#include "W3DView.H"
36-
#include "AggregateNameDialog.H"
37-
#include "W3D_File.H"
34+
#include "StdAfx.h"
35+
#include "W3DView.h"
36+
#include "AggregateNameDialog.h"
37+
#include "w3d_file.h"
3838

3939

4040
#ifdef RTS_DEBUG

Core/Tools/W3DView/AmbientLightDialog.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
// AmbientLightDialog.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
22+
#include "StdAfx.h"
2323

2424
#include "W3DView.h"
2525
#include "AmbientLightDialog.h"
26-
#include "MainFrm.H"
27-
#include "W3DViewDoc.H"
28-
#include "ViewerScene.H"
29-
#include "Utils.H"
26+
#include "MainFrm.h"
27+
#include "W3DViewDoc.h"
28+
#include "ViewerScene.h"
29+
#include "Utils.h"
3030

3131
#ifdef RTS_DEBUG
3232
#define new DEBUG_NEW

Core/Tools/W3DView/AnimMixingPage.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
// AnimMixingPage.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
23-
#include "w3dview.h"
24-
#include "W3dViewDoc.h"
22+
#include "StdAfx.h"
23+
#include "W3DView.h"
24+
#include "W3DViewDoc.h"
2525
#include "AdvancedAnimSheet.h"
2626
#include "AnimMixingPage.h"
2727

28-
#include "RendObj.h"
29-
#include "HTree.h"
30-
#include "HAnim.h"
28+
#include "rendobj.h"
29+
#include "htree.h"
30+
#include "hanim.h"
3131
#include "Utils.h"
32-
#include "AssetMgr.h"
32+
#include "assetmgr.h"
3333

3434
#ifdef RTS_DEBUG
3535
#define new DEBUG_NEW

Core/Tools/W3DView/AnimReportPage.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
// AnimReportPage.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
23-
#include "w3dview.h"
22+
#include "StdAfx.h"
23+
#include "W3DView.h"
2424
#include "W3DViewDoc.h"
2525
#include "AdvancedAnimSheet.h"
2626
#include "AnimReportPage.h"
2727

2828

29-
#include "HAnim.h"
30-
#include "HTree.h"
29+
#include "hanim.h"
30+
#include "htree.h"
3131
#include "Utils.h"
3232

3333

Core/Tools/W3DView/AnimatedSoundOptionsDialog.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
// AnimatedSoundOptionsDialog.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
23-
#include "w3dview.h"
24-
#include "globals.h"
25-
#include "animatedsoundoptionsdialog.h"
22+
#include "StdAfx.h"
23+
#include "W3DView.h"
24+
#include "Globals.h"
25+
#include "AnimatedSoundOptionsDialog.h"
2626
#include "ffactory.h"
2727
#include "animatedsoundmgr.h"
2828
#include "wwsaveload.h"
2929
#include "definitionmgr.h"
30-
#include "wwfile.h"
30+
#include "WWFILE.H"
3131
#include "chunkio.h"
3232
#include "wwdebug.h"
33-
#include "restrictedfiledialog.h"
34-
#include "utils.h"
33+
#include "RestrictedFileDialog.h"
34+
#include "Utils.h"
3535

3636

3737
#ifdef RTS_DEBUG

Core/Tools/W3DView/AnimationPropPage.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
// AnimationPropPage.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
23-
#include "w3dview.h"
22+
#include "StdAfx.h"
23+
#include "W3DView.h"
2424
#include "AnimationPropPage.h"
25-
#include "RendObj.H"
26-
#include "AssetMgr.H"
27-
#include "Mesh.H"
28-
#include "W3DViewDoc.H"
29-
#include "Utils.H"
25+
#include "rendobj.h"
26+
#include "assetmgr.h"
27+
#include "mesh.h"
28+
#include "W3DViewDoc.h"
29+
#include "Utils.h"
3030

3131

3232
#ifdef RTS_DEBUG

Core/Tools/W3DView/AnimationSpeed.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
// AnimationSpeed.cpp : implementation file
2020
//
2121

22-
#include "stdafx.h"
22+
#include "StdAfx.h"
2323
#include "W3DView.h"
2424
#include "AnimationSpeed.h"
25-
#include "MainFrm.H"
26-
#include "GraphicView.H"
27-
#include "Utils.H"
28-
#include "W3DViewDoc.H"
25+
#include "MainFrm.h"
26+
#include "GraphicView.h"
27+
#include "Utils.h"
28+
#include "W3DViewDoc.h"
2929

3030
#ifdef RTS_DEBUG
3131
#define new DEBUG_NEW

Core/Tools/W3DView/AssetInfo.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
3636

3737

38-
#include "StdAfx.H"
39-
#include "AssetInfo.H"
38+
#include "StdAfx.h"
39+
#include "AssetInfo.h"
4040
//#include "HModel.H"
41-
#include "AssetMgr.H"
42-
#include "HTree.H"
41+
#include "assetmgr.h"
42+
#include "htree.h"
4343

4444
/////////////////////////////////////////////////////////////////
4545
//

0 commit comments

Comments
 (0)