From ab65998e7ad87552adda9809f82811cfe1f659f6 Mon Sep 17 00:00:00 2001 From: Bart <9132501-flyingsheep@users.noreply.gitlab.com> Date: Fri, 29 Oct 2021 16:37:56 +0200 Subject: [PATCH] LazUtils: rename a private var in Masks unit. No functional changes. --- components/lazutils/masks.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/lazutils/masks.pas b/components/lazutils/masks.pas index 5a69984c40..32640abda0 100644 --- a/components/lazutils/masks.pas +++ b/components/lazutils/masks.pas @@ -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;