mirror of https://gitlab.com/basile.b/dexed.git
fix, missing sym string expansion, project couldnt be executed anymore if containing a sym string.
This commit is contained in:
parent
b914ae5970
commit
c67abe2ac9
|
@ -1,7 +1,7 @@
|
||||||
inherited CEMessagesWidget: TCEMessagesWidget
|
inherited CEMessagesWidget: TCEMessagesWidget
|
||||||
Left = 1135
|
Left = 694
|
||||||
Height = 172
|
Height = 172
|
||||||
Top = 183
|
Top = 198
|
||||||
Width = 739
|
Width = 739
|
||||||
Caption = 'Messages'
|
Caption = 'Messages'
|
||||||
ClientHeight = 172
|
ClientHeight = 172
|
||||||
|
@ -49,7 +49,6 @@ inherited CEMessagesWidget: TCEMessagesWidget
|
||||||
Width = 735
|
Width = 735
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
BorderSpacing.Around = 2
|
BorderSpacing.Around = 2
|
||||||
BorderWidth = 150
|
|
||||||
ButtonHeight = 24
|
ButtonHeight = 24
|
||||||
ButtonWidth = 100
|
ButtonWidth = 100
|
||||||
Flat = False
|
Flat = False
|
||||||
|
|
|
@ -310,6 +310,7 @@ end;
|
||||||
function TCEProject.outputFilename: string;
|
function TCEProject.outputFilename: string;
|
||||||
begin
|
begin
|
||||||
result := currentConfiguration.pathsOptions.outputFilename;
|
result := currentConfiguration.pathsOptions.outputFilename;
|
||||||
|
result := CEMainForm.expandSymbolicString(result);
|
||||||
if result <> '' then
|
if result <> '' then
|
||||||
begin
|
begin
|
||||||
if not fileExists(result) then
|
if not fileExists(result) then
|
||||||
|
|
Loading…
Reference in New Issue