Rename propsheet/TerminalPage to propsheet/TerminalPropsheetPage (#5882)

My workflow is to use Sublime's <kbd>Ctrl+P</kbd> shortcut to navigate to files by name. However, the propsheet version of the files _always_ comes up before the `TerminalApp` one does. This results in me having to close the file and re-open the right one.

This PR renames the propsheet one, so it's unambiguous which one I'm opening.

It's really the most trivial nit.
This commit is contained in:
Mike Griese 2020-05-13 20:49:20 -05:00 committed by GitHub
parent 1422714af6
commit 2453e8e1ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 23 additions and 23 deletions

View file

@ -2,7 +2,7 @@
// Licensed under the MIT license.
#include "precomp.h"
#include "TerminalPage.h"
#include "TerminalPropsheetPage.h"
#include "OptionsPage.h" // For InitializeCursorSize
#include "ColorControl.h"
#include <functional>

View file

@ -26,7 +26,7 @@ Revision History:
#include "OptionsPage.h"
#include "LayoutPage.h"
#include "ColorsPage.h"
#include "TerminalPage.h"
#include "TerminalPropsheetPage.h"
#include "ColorControl.h"
//

View file

@ -6,7 +6,7 @@
<RootNamespace>propsheet</RootNamespace>
<ProjectName>Propsheet.DLL</ProjectName>
<TargetName>console</TargetName>
<ConfigurationType>DynamicLibrary</ConfigurationType>
<ConfigurationType>DynamicLibrary</ConfigurationType>
</PropertyGroup>
<Import Project="..\common.build.pre.props" />
<ItemGroup>
@ -23,7 +23,7 @@
<ClCompile Include="LayoutPage.cpp" />
<ClCompile Include="ColorsPage.cpp" />
<ClCompile Include="ColorControl.cpp" />
<ClCompile Include="TerminalPage.cpp" />
<ClCompile Include="TerminalPropsheetPage.cpp" />
<ClCompile Include="registry.cpp" />
<ClCompile Include="util.cpp" />
<ClCompile Include="precomp.cpp">
@ -41,7 +41,7 @@
<ClInclude Include="LayoutPage.h" />
<ClInclude Include="ColorsPage.h" />
<ClInclude Include="ColorControl.h" />
<ClInclude Include="TerminalPage.h" />
<ClInclude Include="TerminalPropsheetPage.h" />
<ClInclude Include="menu.h" />
<ClInclude Include="precomp.h" />
</ItemGroup>

View file

@ -50,24 +50,24 @@ PRECOMPILED_PCH = precomp.pch
PRECOMPILED_OBJ = precomp.obj
SOURCES = \
dll.cpp \
util.cpp \
console.cpp \
globals.cpp \
fontdlg.cpp \
OptionsPage.cpp \
ColorsPage.cpp \
ColorControl.cpp \
ColorsPage.cpp \
LayoutPage.cpp \
TerminalPage.cpp \
init.cpp \
misc.cpp \
preview.cpp \
registry.cpp \
dbcs.cpp \
strid.mc \
PropSheetHandler.cpp \
dll.cpp \
util.cpp \
console.cpp \
globals.cpp \
fontdlg.cpp \
OptionsPage.cpp \
ColorsPage.cpp \
ColorControl.cpp \
ColorsPage.cpp \
LayoutPage.cpp \
TerminalPropsheetPage.cpp \
init.cpp \
misc.cpp \
preview.cpp \
registry.cpp \
dbcs.cpp \
strid.mc \
PropSheetHandler.cpp \
console.rc
INCLUDES = \