Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion jcl/source/common/JclIDEUtils.pas
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,7 @@ TBDSVersionInfo = record

CppPathsKeyName = 'CppPaths';
CppPathsV5UpperKeyName = 'C++\Paths';
CppPathsV9UpperKeyName = 'C++\Paths\Win32';
CppBrowsingPathValueName = 'BrowsingPath';
CppSearchPathValueName = 'SearchPath';
CppLibraryPathValueName = 'LibraryPath';
Expand Down Expand Up @@ -3689,7 +3690,12 @@ class function TJclBDSInstallation.GetCommonProjectsDirectory(const RootDir: str
function TJclBDSInstallation.GetCppPathsKeyName: string;
begin
if IDEVersionNumber >= 5 then
Result := CppPathsV5UpperKeyName
begin
if IDEVersionNumber >= 9 then
Result := CppPathsV9UpperKeyName
else
Result := CppPathsV5UpperKeyName
end
else
Result := CppPathsKeyName;
end;
Expand Down