summaryrefslogtreecommitdiff
path: root/oox/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-02-17 11:33:26 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-17 15:04:23 +0100
commita1d9b5efb5df35d21384d04893429e48e79ff601 (patch)
treeeb1a7b9b9c49d565355f5c623178b8037338083d /oox/inc
parent98b27ea907517d585f5d951895ae733653a442d2 (diff)
oox: use std::enable_shared_from_this
Change-Id: I184a7a3579bebd81d5d81f64b4ace74bde8e87fb
Diffstat (limited to 'oox/inc')
-rw-r--r--oox/inc/drawingml/customshapeproperties.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/inc/drawingml/customshapeproperties.hxx b/oox/inc/drawingml/customshapeproperties.hxx
index d5fbd88a047d..5826a0dd6850 100644
--- a/oox/inc/drawingml/customshapeproperties.hxx
+++ b/oox/inc/drawingml/customshapeproperties.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_OOX_DRAWINGML_CUSTOMSHAPEPROPERTIES_HXX
#define INCLUDED_OOX_DRAWINGML_CUSTOMSHAPEPROPERTIES_HXX
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <unordered_map>
#include <vector>
#include <map>
@@ -46,7 +46,7 @@ namespace oox { namespace drawingml {
class CustomShapeProperties;
-typedef boost::shared_ptr< CustomShapeProperties > CustomShapePropertiesPtr;
+typedef std::shared_ptr< CustomShapeProperties > CustomShapePropertiesPtr;
struct CustomShapeGuide
{