IDE: fixed compilation, bug #31711

git-svn-id: trunk@54717 -
This commit is contained in:
mattias 2017-04-25 06:31:25 +00:00
parent 95545633e7
commit d7b05763d1

View File

@ -34,12 +34,14 @@ implementation
const
// CompilerMode names to be shown after -M...
CompilerModesPretty: array[TCompilerMode] of shortstring = (
'fpc', 'Delphi', 'DelphiUnicode', 'gpc', 'tp', 'ObjFPC', 'MacPas', 'iso'
'fpc', 'Delphi', 'DelphiUnicode', 'gpc', 'tp', 'ObjFPC', 'MacPas', 'iso',
'ExtPas'
);
// CompilerMode descriptions.
CompilerModesDescr: array[TCompilerMode] of shortstring = (
'Free Pascal', 'Delphi', 'Delphi Unicode', 'GNU Pascal', 'Turbo Pascal',
'Object Pascal', 'Mac Pascal', 'ISO/IEC 7185 Pascal'
'Object Pascal', 'Mac Pascal', 'ISO/IEC 7185 Pascal',
'Extended Pascal, ISO 10206'
);
function SyntaxModeToCaption(const ModeStr: string): string;