summaryrefslogtreecommitdiffstats
path: root/src/xml/attribute-record.h
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-03-15 03:22:23 +0000
committermental <mental@users.sourceforge.net>2006-03-15 03:22:23 +0000
commit7663e55d418b5ea8765421c9570dba40f6bd97fd (patch)
tree74e9eef28e3553010bb121dc4eba4cb5b59d05ff /src/xml/attribute-record.h
parentdifferentiate _hreffed and _listening flags for color, fill, and stroke paint... (diff)
downloadinkscape-7663e55d418b5ea8765421c9570dba40f6bd97fd.tar.gz
inkscape-7663e55d418b5ea8765421c9570dba40f6bd97fd.zip
shared_ptr -> ptr_shared
(bzr r240)
Diffstat (limited to 'src/xml/attribute-record.h')
-rw-r--r--src/xml/attribute-record.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml/attribute-record.h b/src/xml/attribute-record.h
index 30d8576d0..bfae19e21 100644
--- a/src/xml/attribute-record.h
+++ b/src/xml/attribute-record.h
@@ -13,11 +13,11 @@ namespace Inkscape {
namespace XML {
struct AttributeRecord : public Inkscape::GC::Managed<> {
- AttributeRecord(GQuark k, Inkscape::Util::shared_ptr<char> v)
+ AttributeRecord(GQuark k, Inkscape::Util::ptr_shared<char> v)
: key(k), value(v) {}
GQuark key;
- Inkscape::Util::shared_ptr<char> value;
+ Inkscape::Util::ptr_shared<char> value;
// accept default copy constructor and assignment operator
};