aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_edit.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-08-31 18:02:12 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-08-31 18:02:12 -0700
commitd86d9727f6802a5f642e550db13e97a9a2ea8a29 (patch)
tree3deb40fe10ed7ded33ca205ea0f55738dfcdc323 /toolsrc/src/commands_edit.cpp
parentf1867a8e899748673b2696de4b837f3e9d94bd69 (diff)
downloadvcpkg-d86d9727f6802a5f642e550db13e97a9a2ea8a29.tar.gz
vcpkg-d86d9727f6802a5f642e550db13e97a9a2ea8a29.zip
Function naming convention
Diffstat (limited to 'toolsrc/src/commands_edit.cpp')
-rw-r--r--toolsrc/src/commands_edit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_edit.cpp b/toolsrc/src/commands_edit.cpp
index f71d4d44c..c9886d82e 100644
--- a/toolsrc/src/commands_edit.cpp
+++ b/toolsrc/src/commands_edit.cpp
@@ -49,7 +49,7 @@ namespace vcpkg::Commands::Edit
const std::vector<fs::path> from_path = Files::find_from_PATH(L"EDITOR");
candidate_paths.insert(candidate_paths.end(), from_path.cbegin(), from_path.cend());
candidate_paths.push_back(System::get_ProgramFiles_platform_bitness() / "Microsoft VS Code" / "Code.exe");
- candidate_paths.push_back(System::get_ProgramFiles_32_bit() / "Microsoft VS Code" / "Code.exe");
+ candidate_paths.push_back(System::get_program_files_32_bit() / "Microsoft VS Code" / "Code.exe");
const std::vector<fs::path> from_registry = find_from_registry();
candidate_paths.insert(candidate_paths.end(), from_registry.cbegin(), from_registry.cend());