git-svn-id: trunk@3568 -
@@ -959,6 +959,11 @@ function TDOMNodeList.GetCount: LongWord;
var
child: TDOMNode;
begin
+ if not UseFilter then
+ begin
+ Result := Count;
+ exit;
+ end;
Result := 0;
child := node.FirstChild;
while Assigned(child) do