From 249e2b5f08d6212f11b2d799e92a8e258f62c271 Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 26 Feb 2021 20:39:27 +0000 Subject: [PATCH] Fix Compile git-svn-id: trunk@64670 - --- components/lazutils/masks.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazutils/masks.pas b/components/lazutils/masks.pas index 3f74241dd9..797ee3f45b 100644 --- a/components/lazutils/masks.pas +++ b/components/lazutils/masks.pas @@ -1094,7 +1094,7 @@ end; constructor TMaskList.CreateSysNative(const AValue: String; ASeparator: Char; CaseSensitive: Boolean); begin {$IFDEF Windows} - CreateWindows(AValue, ASeparator, CaseSensitive)); + CreateWindows(AValue, ASeparator, CaseSensitive); {$ELSE} Create(AValue, ASeparator, CaseSensitive); {$ENDIF}