summaryrefslogtreecommitdiffstats
path: root/src/xml/event.h
diff options
context:
space:
mode:
authorJan Lingscheid <jan.linscheid@auticon.de>2017-10-18 14:03:34 +0000
committerJan Lingscheid <jan.linscheid@auticon.de>2017-10-18 14:03:34 +0000
commit41b862f1c4eaea48bdd0d546e2bb31907f15857b (patch)
treee667c91439f0f04aa1f2cec1d3eafddf80bc4ecc /src/xml/event.h
parentReplace boost::shared_ptr (diff)
downloadinkscape-41b862f1c4eaea48bdd0d546e2bb31907f15857b.tar.gz
inkscape-41b862f1c4eaea48bdd0d546e2bb31907f15857b.zip
Refactor Util::ptr_shared
Util::ptr_shared<T> was only used in its <char> specialization, so it is now refactored into a non-template class. Using it with arbitary classes was dangerous anyway.
Diffstat (limited to 'src/xml/event.h')
-rw-r--r--src/xml/event.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/xml/event.h b/src/xml/event.h
index f6b734c29..ca79983ba 100644
--- a/src/xml/event.h
+++ b/src/xml/event.h
@@ -167,8 +167,8 @@ private:
class EventChgAttr : public Event {
public:
EventChgAttr(Node *repr, GQuark k,
- Inkscape::Util::ptr_shared<char> ov,
- Inkscape::Util::ptr_shared<char> nv,
+ Inkscape::Util::ptr_shared ov,
+ Inkscape::Util::ptr_shared nv,
Event *next)
: Event(repr, next), key(k),
oldval(ov), newval(nv) {}
@@ -176,9 +176,9 @@ public:
/// GQuark corresponding to the changed attribute's name
GQuark key;
/// Value of the attribute before the change
- Inkscape::Util::ptr_shared<char> oldval;
+ Inkscape::Util::ptr_shared oldval;
/// Value of the attribute after the change
- Inkscape::Util::ptr_shared<char> newval;
+ Inkscape::Util::ptr_shared newval;
private:
Event *_optimizeOne();
@@ -192,15 +192,15 @@ private:
class EventChgContent : public Event {
public:
EventChgContent(Node *repr,
- Inkscape::Util::ptr_shared<char> ov,
- Inkscape::Util::ptr_shared<char> nv,
+ Inkscape::Util::ptr_shared ov,
+ Inkscape::Util::ptr_shared nv,
Event *next)
: Event(repr, next), oldval(ov), newval(nv) {}
/// Content of the node before the change
- Inkscape::Util::ptr_shared<char> oldval;
+ Inkscape::Util::ptr_shared oldval;
/// Content of the node after the change
- Inkscape::Util::ptr_shared<char> newval;
+ Inkscape::Util::ptr_shared newval;
private:
Event *_optimizeOne();