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/node-observer.h | |
| 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/node-observer.h')
| -rw-r--r-- | src/xml/node-observer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xml/node-observer.h b/src/xml/node-observer.h index e50a41dd8..584505e4e 100644 --- a/src/xml/node-observer.h +++ b/src/xml/node-observer.h @@ -43,12 +43,12 @@ public: Node *old_prev, Node *new_prev)=0; virtual void notifyContentChanged(Node &node, - Util::shared_ptr<char> old_content, - Util::shared_ptr<char> new_content)=0; + Util::ptr_shared<char> old_content, + Util::ptr_shared<char> new_content)=0; virtual void notifyAttributeChanged(Node &node, GQuark name, - Util::shared_ptr<char> old_value, - Util::shared_ptr<char> new_value)=0; + Util::ptr_shared<char> old_value, + Util::ptr_shared<char> new_value)=0; }; } |
