Explorar o código

* Fixed IsEmptyStr

git-svn-id: trunk@9775 -
michael %!s(int64=17) %!d(string=hai) anos
pai
achega
41cce2fe42
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      rtl/objpas/strutils.pp

+ 1 - 1
rtl/objpas/strutils.pp

@@ -908,7 +908,7 @@ begin
   Result:=True;
   while Result and (i<=l) do
     begin
-    Result:=Not (S[i] in EmptyChars);
+    Result:=(S[i] in EmptyChars);
     Inc(i);
     end;
 end;