| 333 | |
| 334 | |
| 335 | void AbstractNode::dispatchAttrModified(Attr* pAttr, MutationEvent::AttrChangeType changeType, const XMLString& prevValue, const XMLString& newValue) |
| 336 | { |
| 337 | AutoPtr<MutationEvent> event = new MutationEvent(_pOwner, MutationEvent::DOMAttrModified, this, true, false, pAttr, prevValue, newValue, pAttr->name(), changeType); |
| 338 | dispatchEvent(event.get()); |
| 339 | } |
| 340 | |
| 341 | |
| 342 | void AbstractNode::dispatchCharacterDataModified(const XMLString& prevValue, const XMLString& newValue) |