Searched defs:old_content (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/xml/ |
H A D | log-builder.cpp | 52 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 D | node-observer.h | 122 * @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 D | simple-document.cpp | 103 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 D | composite-node-observer.cpp | 72 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 D | simple-node.cpp | 296 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 21 milliseconds