You've already forked lazarus-ccr
Be case insensitive while parsing Pascal Code, log warning on XDS generation, fix AV (TPasUnresolvedTypeRef handling)
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3823 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@@ -20,13 +20,17 @@ uses
|
||||
|
||||
type
|
||||
|
||||
TMessageType = ( mtInfo, mtError );
|
||||
TMessageType = ( mtInfo, mtWarning, mtError );
|
||||
|
||||
const
|
||||
MessageTypeNames : array[TMessageType] of string = ( 'Information', 'Error' );
|
||||
MessageTypeNames : array[TMessageType] of string = (
|
||||
'Information', 'Warning', 'Error'
|
||||
);
|
||||
|
||||
type
|
||||
|
||||
TOnLogMessageEvent = procedure (const AMsgType : TMessageType; const AMsg : string) of object;
|
||||
|
||||
ILogger = interface
|
||||
['{158C90B5-BAC3-40A1-B471-C9327692A3BF}']
|
||||
procedure Log(const AMsgType : TMessageType; const AMsg : string);overload;
|
||||
|
||||
Reference in New Issue
Block a user