diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2007-02-21 22:43:29 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2007-02-21 22:43:29 +0000 |
commit | faf69388f0f2e505cb2204cfd30bfd110c042922 (patch) | |
tree | 724cc541ac98e95a325a3e23243741edd7ab604b /src/pugixml.hpp | |
parent | b0461a939a61b2b7a9d263baaaf905c3f3394a1a (diff) |
Fixed find_element
git-svn-id: http://pugixml.googlecode.com/svn/trunk@72 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 323994d..91e7a5b 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -1723,7 +1723,7 @@ namespace pugi if (node.first_child()) { - xml_node found = node.find_element(pred); + xml_node found = node.find_node(pred); if (found) return found; } } |