mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 10:19:36 +02:00
LazUtils: rename a private var in Masks unit. No functional changes.
This commit is contained in:
parent
fcbc9cbb65
commit
ab65998e7a
@ -38,11 +38,11 @@ type
|
||||
mecInvalidUTF8Sequence
|
||||
);
|
||||
protected
|
||||
cCode: TMaskExceptionCode;
|
||||
FCode: TMaskExceptionCode;
|
||||
public
|
||||
constructor Create(const msg: string; aCode: TMaskExceptionCode);
|
||||
constructor CreateFmt(const msg: string; args: array of const; aCode: TMaskExceptionCode);
|
||||
property Code: TMaskExceptionCode read cCode;
|
||||
property Code: TMaskExceptionCode read FCode;
|
||||
end;
|
||||
|
||||
TMaskFailCause = (
|
||||
@ -547,7 +547,7 @@ end;
|
||||
constructor EMaskError.CreateFmt(const msg: string; args: array of const;
|
||||
aCode: TMaskExceptionCode);
|
||||
begin
|
||||
cCode:=aCode;
|
||||
FCode:=aCode;
|
||||
Inherited CreateFmt(msg,args);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user