mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-07 04:57:36 +01:00
MaskEdit: use Default intrinsic instead of FillChar.
git-svn-id: trunk@64865 -
This commit is contained in:
parent
5d98b3c2f6
commit
e86f37adb5
@ -521,10 +521,8 @@ end;
|
|||||||
|
|
||||||
procedure TCustomMaskEdit.ClearInternalMask(out AMask: TInternalMask; out ALengthIndicator: Integer);
|
procedure TCustomMaskEdit.ClearInternalMask(out AMask: TInternalMask; out ALengthIndicator: Integer);
|
||||||
begin
|
begin
|
||||||
{$PUSH}{$HINTS OFF}
|
AMask := Default(TInternalMask);
|
||||||
FillChar(AMask, SizeOf(TInternalMask), 0);
|
|
||||||
ALengthIndicator := 0;
|
ALengthIndicator := 0;
|
||||||
{$POP}
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user