mirror of https://gitlab.com/basile.b/dexed.git
symbolic string <CPFS> works with unsaved/temp projects
This commit is contained in:
parent
37cd89717c
commit
1c6a71b203
|
@ -190,7 +190,9 @@ type
|
|||
fFileMru: TMruFileList;
|
||||
fLibMan: TLibraryManager;
|
||||
fPrInpWidg: TCEProcInputWidget;
|
||||
{$IFDEF WIN32}
|
||||
fCdbWidg: TCECdbWidget;
|
||||
{$ENDIF}
|
||||
fTools: TCETools;
|
||||
|
||||
fRunProc: TAsyncProcess;
|
||||
|
@ -1931,14 +1933,13 @@ begin
|
|||
'CPFS', 'CurrentProjectFiles':
|
||||
begin
|
||||
if fProject <> nil then
|
||||
if fileExists(fProject.fileName) then
|
||||
for j := 0 to fProject.Sources.Count-1 do
|
||||
begin
|
||||
result += fProject.getAbsoluteSourceName(j);
|
||||
if fProject.Sources.Count > 1 then
|
||||
if j <> fProject.Sources.Count-1 then
|
||||
result += LineEnding;
|
||||
end;
|
||||
for j := 0 to fProject.Sources.Count-1 do
|
||||
begin
|
||||
result += fProject.getAbsoluteSourceName(j);
|
||||
if fProject.Sources.Count > 1 then
|
||||
if j <> fProject.Sources.Count-1 then
|
||||
result += LineEnding;
|
||||
end;
|
||||
end;
|
||||
'CPN', 'CurrentProjectName':
|
||||
begin
|
||||
|
|
Loading…
Reference in New Issue