Skip to content

Commit d0bcfdb

Browse files
committed
Renamed
1 parent a4e9631 commit d0bcfdb

File tree

164 files changed

+38
-38
lines changed

Some content is hidden

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

164 files changed

+38
-38
lines changed

Renderer.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.29905.134
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Step4", "Step4\Step4.vcxproj", "{656CF298-5962-4082-83B0-03557C59B3E1}"
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Renderer", "Renderer\Renderer.vcxproj", "{656CF298-5962-4082-83B0-03557C59B3E1}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include "pch.h"
66
#include "framework.h"
7-
#include "Step4.h"
7+
#include "Renderer.h"
88
#include "ChildView.h"
99

1010
#ifdef _DEBUG
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include "pch.h"
66
#include "framework.h"
7-
#include "Step4.h"
7+
#include "Renderer.h"
88

99
#include "MainFrm.h"
1010

File renamed without changes.
File renamed without changes.
File renamed without changes.

Step4/Step4.cpp renamed to Renderer/Renderer.cpp

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

2-
// Step4.cpp : Defines the class behaviors for the application.
2+
// Renderer.cpp : Defines the class behaviors for the application.
33
//
44

55
#include "pch.h"
66
#include "framework.h"
77
#include "afxwinappex.h"
88
#include "afxdialogex.h"
9-
#include "Step4.h"
9+
#include "Renderer.h"
1010
#include "MainFrm.h"
1111

1212

@@ -15,16 +15,16 @@
1515
#endif
1616

1717

18-
// CStep4App
18+
// CRendererApp
1919

20-
BEGIN_MESSAGE_MAP(CStep4App, CWinApp)
21-
ON_COMMAND(ID_APP_ABOUT, &CStep4App::OnAppAbout)
20+
BEGIN_MESSAGE_MAP(CRendererApp, CWinApp)
21+
ON_COMMAND(ID_APP_ABOUT, &CRendererApp::OnAppAbout)
2222
END_MESSAGE_MAP()
2323

2424

25-
// CStep4App construction
25+
// CRendererApp construction
2626

27-
CStep4App::CStep4App() noexcept
27+
CRendererApp::CRendererApp() noexcept
2828
{
2929
// support Restart Manager
3030
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_ALL_ASPECTS;
@@ -37,20 +37,20 @@ CStep4App::CStep4App() noexcept
3737

3838
// TODO: replace application ID string below with unique ID string; recommended
3939
// format for string is CompanyName.ProductName.SubProduct.VersionInformation
40-
SetAppID(_T("Step4.AppID.NoVersion"));
40+
SetAppID(_T("Renderer.AppID.NoVersion"));
4141

4242
// TODO: add construction code here,
4343
// Place all significant initialization in InitInstance
4444
}
4545

46-
// The one and only CStep4App object
46+
// The one and only CRendererApp object
4747

48-
CStep4App theApp;
48+
CRendererApp theApp;
4949

5050

51-
// CStep4App initialization
51+
// CRendererApp initialization
5252

53-
BOOL CStep4App::InitInstance()
53+
BOOL CRendererApp::InitInstance()
5454
{
5555
// InitCommonControlsEx() is required on Windows XP if an application
5656
// manifest specifies use of ComCtl32.dll version 6 or later to enable
@@ -110,15 +110,15 @@ BOOL CStep4App::InitInstance()
110110
return TRUE;
111111
}
112112

113-
int CStep4App::ExitInstance()
113+
int CRendererApp::ExitInstance()
114114
{
115115
//TODO: handle additional resources you may have added
116116
AfxOleTerm(FALSE);
117117

118118
return CWinApp::ExitInstance();
119119
}
120120

121-
// CStep4App message handlers
121+
// CRendererApp message handlers
122122

123123

124124
// CAboutDlg dialog used for App About
@@ -154,13 +154,13 @@ BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
154154
END_MESSAGE_MAP()
155155

156156
// App command to run the dialog
157-
void CStep4App::OnAppAbout()
157+
void CRendererApp::OnAppAbout()
158158
{
159159
CAboutDlg aboutDlg;
160160
aboutDlg.DoModal();
161161
}
162162

163-
// CStep4App message handlers
163+
// CRendererApp message handlers
164164

165165

166166

Step4/Step4.h renamed to Renderer/Renderer.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
// Step4.h : main header file for the Step4 application
2+
// Renderer.h : main header file for the Renderer application
33
//
44
#pragma once
55

@@ -10,14 +10,14 @@
1010
#include "resource.h" // main symbols
1111

1212

13-
// CStep4App:
14-
// See Step4.cpp for the implementation of this class
13+
// CRendererApp:
14+
// See Renderer.cpp for the implementation of this class
1515
//
1616

17-
class CStep4App : public CWinApp
17+
class CRendererApp : public CWinApp
1818
{
1919
public:
20-
CStep4App() noexcept;
20+
CRendererApp() noexcept;
2121

2222

2323
// Overrides
@@ -32,4 +32,4 @@ class CStep4App : public CWinApp
3232
DECLARE_MESSAGE_MAP()
3333
};
3434

35-
extern CStep4App theApp;
35+
extern CRendererApp theApp;
Binary file not shown.

0 commit comments

Comments
 (0)