mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 04:40:54 +02:00
IDE: fpc msg parser: check for Warning too, bug #34582
git-svn-id: trunk@59638 -
This commit is contained in:
parent
33c4e77327
commit
07abf42286
@ -2808,7 +2808,7 @@ begin
|
||||
MsgType:=mluHint;
|
||||
end else if ReadString(p,'Note:') then begin
|
||||
MsgType:=mluNote;
|
||||
end else if ReadString(p,'Warn:') then begin
|
||||
end else if ReadString(p,'Warn:') or ReadString(p,'Warning: ') then begin
|
||||
MsgType:=mluWarning;
|
||||
end else if ReadString(p,'Error:') then begin
|
||||
MsgType:=mluError;
|
||||
|
Loading…
Reference in New Issue
Block a user