Skip to content

Commit

Permalink
Rename propsheet/TerminalPage to propsheet/TerminalPropsheetPage (m…
Browse files Browse the repository at this point in the history
…icrosoft#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.
  • Loading branch information
zadjii-msft authored May 14, 2020
1 parent 1422714 commit 2453e8e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/propsheet/console.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Revision History:
#include "OptionsPage.h"
#include "LayoutPage.h"
#include "ColorsPage.h"
#include "TerminalPage.h"
#include "TerminalPropsheetPage.h"
#include "ColorControl.h"

//
Expand Down
6 changes: 3 additions & 3 deletions src/propsheet/propsheet.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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">
Expand All @@ -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>
Expand Down
36 changes: 18 additions & 18 deletions src/propsheet/sources
Original file line number Diff line number Diff line change
Expand Up @@ -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 = \
Expand Down

0 comments on commit 2453e8e

Please sign in to comment.