Преглед изворни кода

* Fixed IsEmptyStr

git-svn-id: trunk@9775 -
michael пре 17 година
родитељ
комит
41cce2fe42
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      rtl/objpas/strutils.pp

+ 1 - 1
rtl/objpas/strutils.pp

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