Searched defs:old_content (Results 1 - 5 of 5) sorted by relevance

/inkscape/src/xml/
H A Dlog-builder.cpp52 Util::ptr_shared<char> old_content,
55 _log = new Inkscape::XML::EventChgContent(&node, old_content, new_content, _log);
51 setContent(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) argument
H A Dnode-observer.h122 * @param old_content Old content of @c node
126 Util::ptr_shared<char> old_content,
129 INK_UNUSED(old_content);
125 notifyContentChanged(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) argument
H A Dsimple-document.cpp103 Util::ptr_shared<char> old_content,
107 _log_builder.setContent(node, old_content, new_content);
102 notifyContentChanged(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) argument
H A Dcomposite-node-observer.cpp72 Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content
79 iter->observer.notifyContentChanged(node, old_content, new_content);
136 void notifyContentChanged(Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content) { argument
138 vector.content_changed(&node, old_content, new_content, data);
70 notifyContentChanged( Node &node, Util::ptr_shared<char> old_content, Util::ptr_shared<char> new_content ) argument
H A Dsimple-node.cpp296 ptr_shared<char> old_content=_content; local
308 if ( _content != old_content ) {
309 _document->logger()->notifyContentChanged(*this, old_content, _content);
310 _observers.notifyContentChanged(*this, old_content, _content);
561 void content_changed(Node *node, gchar const *old_content, gchar const *new_content, void *data) { argument
562 reinterpret_cast<NodeObserver *>(data)->notifyContentChanged(*node, Util::share_unsafe((const char *)old_content), Util::share_unsafe((const char *)new_content));

Completed in 18 milliseconds