Skip to content

Commit b0d0726

Browse files
committed
Fix full program name used by portable edition
The full program name is now always "DelphiDabbler CodeSnip", regardless of the edition. Previously the name was "DelphiDabbler CodeSnip-p" on the portable edition. Fixes #130
1 parent 6d33c8d commit b0d0726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/UAppInfo.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ TAppInfo = class(TNoConstructObject)
3636
const ProgramName = 'CodeSnip-p';
3737
{$ENDIF}
3838
{Name of program}
39-
const FullProgramName = CompanyName + ' ' + ProgramName;
39+
const FullProgramName = CompanyName + ' CodeSnip';
4040
{Full name of program, including company name}
4141
const ProgramID = 'codesnip';
4242
{Machine readable identifier of program}

0 commit comments

Comments
 (0)