X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/2ff799f0c1a9e168c782f52a13d3e1d1dcd54014..4fd67e1daa2d896637d9236e81da77dccaab844e:/XMLNode.cpp diff --git a/XMLNode.cpp b/XMLNode.cpp index 036dde4..4c59288 100644 --- a/XMLNode.cpp +++ b/XMLNode.cpp @@ -555,6 +555,19 @@ const XMLNode::attribute_entry* XMLNode::getAttribute(const String16& ns, return NULL; } +XMLNode::attribute_entry* XMLNode::editAttribute(const String16& ns, + const String16& name) +{ + for (size_t i=0; ins == ns && ae->name == name) { + return ae; + } + } + + return NULL; +} + const String16& XMLNode::getCData() const { return mChars;