Code

switch to sigc++ "release"
[inkscape.git] / src / xml / attribute-record.h
index 30d8576d07dbad764a9505bc24fe7a60bb5dc5c0..bfae19e21cb9f714f6119f0c6bf6895e8d239d55 100644 (file)
@@ -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
 };