X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=xml-tree-builder.cpp;h=19ce5dcebad230b02addcecce75ee7066abedb61;hb=a6ceb9a;hp=0b7effc4576429a6eef4502443fdbe354644d760;hpb=9b8afc78da8be3f210cf204b732d4c84ca5080d5;p=SXSI%2FXMLTree.git diff --git a/xml-tree-builder.cpp b/xml-tree-builder.cpp index 0b7effc..19ce5dc 100644 --- a/xml-tree-builder.cpp +++ b/xml-tree-builder.cpp @@ -94,7 +94,7 @@ void xml_tree_builder::open_tag(std::string tag) int32_t id = register_tag(tag); tags->push_back(id); par->push_back(true); - if (!disable_text_index) text_positions->push_back(false); + if (!disable_text_index) text_positions->set_le(text_positions->size(), false); } void xml_tree_builder::close_tag(std::string) @@ -102,7 +102,7 @@ void xml_tree_builder::close_tag(std::string) xml_tree::tag_t t = xml_tree::CLOSE_TAG_ID; tags->push_back(t); par->push_back(false); - if (!disable_text_index) text_positions->push_back(false); + if (!disable_text_index) text_positions->set_le(text_positions->size(), false); } void xml_tree_builder::text(std::string s) @@ -110,7 +110,7 @@ void xml_tree_builder::text(std::string s) if (!disable_text_index){ if (s.empty()) s = "\001"; tc_builder->InsertText((const unsigned char *) s.c_str()); - text_positions->set(text_positions->size() - 1, true); + text_positions->set_le(text_positions->size() - 1, true); } }