From d7b05763d19b879cefdedac5f563945554a74aba Mon Sep 17 00:00:00 2001 From: mattias Date: Tue, 25 Apr 2017 06:31:25 +0000 Subject: [PATCH] IDE: fixed compilation, bug #31711 git-svn-id: trunk@54717 - --- ide/frames/compiler_parsing_options.pas | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ide/frames/compiler_parsing_options.pas b/ide/frames/compiler_parsing_options.pas index 57c6a5127d..9fb3b7a730 100644 --- a/ide/frames/compiler_parsing_options.pas +++ b/ide/frames/compiler_parsing_options.pas @@ -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;