Browse Source

rtl: fixed sysutils

mattias 5 years ago
parent
commit
4d995df2f7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl/sysutils.pas

+ 1 - 1
packages/rtl/sysutils.pas

@@ -5310,7 +5310,7 @@ end;
 
 
 class function TStringHelper.IsNullOrWhiteSpace(const AValue: string): Boolean;
 class function TStringHelper.IsNullOrWhiteSpace(const AValue: string): Boolean;
 begin
 begin
-  Result:=system.Length(Trim(AValue))=0;
+  Result:=system.Length(sysutils.Trim(AValue))=0;
 end;
 end;