diff options
| author | MenTaLguY <mental@rydia.net> | 2006-03-15 03:22:23 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-03-15 03:22:23 +0000 |
| commit | 7663e55d418b5ea8765421c9570dba40f6bd97fd (patch) | |
| tree | 74e9eef28e3553010bb121dc4eba4cb5b59d05ff /src/xml/event.cpp | |
| parent | differentiate _hreffed and _listening flags for color, fill, and stroke paint... (diff) | |
| download | inkscape-7663e55d418b5ea8765421c9570dba40f6bd97fd.tar.gz inkscape-7663e55d418b5ea8765421c9570dba40f6bd97fd.zip | |
shared_ptr -> ptr_shared
(bzr r240)
Diffstat (limited to 'src/xml/event.cpp')
| -rw-r--r-- | src/xml/event.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/xml/event.cpp b/src/xml/event.cpp index dd7167874..d91dd681f 100644 --- a/src/xml/event.cpp +++ b/src/xml/event.cpp @@ -114,15 +114,15 @@ public: } void notifyAttributeChanged(Node &node, GQuark name, - Inkscape::Util::shared_ptr<char> old_value, - Inkscape::Util::shared_ptr<char> new_value) + Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> new_value) { node.setAttribute(g_quark_to_string(name), new_value); } void notifyContentChanged(Node &node, - Inkscape::Util::shared_ptr<char> old_value, - Inkscape::Util::shared_ptr<char> new_value) + Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> new_value) { node.setContent(new_value); } @@ -458,8 +458,8 @@ public: } void notifyAttributeChanged(Node &node, GQuark name, - Inkscape::Util::shared_ptr<char> old_value, - Inkscape::Util::shared_ptr<char> new_value) + Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> new_value) { if (new_value) { g_warning("Event: Set attribute %s to \"%s\" on %s", g_quark_to_string(name), new_value.pointer(), node_to_string(node).c_str()); @@ -469,8 +469,8 @@ public: } void notifyContentChanged(Node &node, - Inkscape::Util::shared_ptr<char> old_value, - Inkscape::Util::shared_ptr<char> new_value) + Inkscape::Util::ptr_shared<char> old_value, + Inkscape::Util::ptr_shared<char> new_value) { if (new_value) { g_warning("Event: Set content of %s to \"%s\"", node_to_string(node).c_str(), new_value.pointer()); |
