浏览代码

* 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;