소스 검색

* 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;
   while Result and (i<=l) do
     begin
-    Result:=Not (S[i] in EmptyChars);
+    Result:=(S[i] in EmptyChars);
     Inc(i);
     end;
 end;