summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/path-manipulator.h
diff options
context:
space:
mode:
authorJan Lingscheid <jan.linscheid@auticon.de>2017-10-17 06:31:32 +0000
committerJan Lingscheid <jan.lingscheid@auticon.de>2017-10-17 08:55:01 +0000
commite1cb749aab3c773073b1adde1b4cd07b2a6ce93e (patch)
treed949d760d817874ccdbef766661643c1f98822f2 /src/ui/tool/path-manipulator.h
parentReplace boost::scoped_ptr (diff)
downloadinkscape-e1cb749aab3c773073b1adde1b4cd07b2a6ce93e.tar.gz
inkscape-e1cb749aab3c773073b1adde1b4cd07b2a6ce93e.zip
Replace boost::shared_ptr
Replace boost::shared_ptr with C++11 smartpointer and remove the boost/shared_ptr.hpp header.
Diffstat (limited to 'src/ui/tool/path-manipulator.h')
-rw-r--r--src/ui/tool/path-manipulator.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/tool/path-manipulator.h b/src/ui/tool/path-manipulator.h
index 283cb610a..5fa24c23b 100644
--- a/src/ui/tool/path-manipulator.h
+++ b/src/ui/tool/path-manipulator.h
@@ -15,8 +15,6 @@
#include <memory>
#include <2geom/pathvector.h>
#include <2geom/affine.h>
-#include <boost/shared_ptr.hpp>
-#include <boost/weak_ptr.hpp>
#include "ui/tool/node.h"
#include "ui/tool/manipulator.h"
#include "live_effects/lpe-bspline.h"
@@ -105,7 +103,7 @@ public:
static bool is_item_type(void *item);
private:
typedef NodeList Subpath;
- typedef boost::shared_ptr<NodeList> SubpathPtr;
+ typedef std::shared_ptr<NodeList> SubpathPtr;
void _createControlPointsFromGeometry();