summaryrefslogtreecommitdiff
path: root/include/oox/vml
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-19 08:40:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-19 09:55:18 +0000
commit8f2522f931df9f1f24ef7016ee64d75fd23af000 (patch)
tree59ad157d1683dc311e8688c5b4193754f0e178b8 /include/oox/vml
parentc7efcb1340ceee35fe3b8ffd9ed86b8cae57d9ce (diff)
boost->std
Change-Id: Icae6b6f07ad8dbd287fdfc689739187883a07775
Diffstat (limited to 'include/oox/vml')
-rw-r--r--include/oox/vml/vmlshapecontainer.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/vml/vmlshapecontainer.hxx b/include/oox/vml/vmlshapecontainer.hxx
index cc8058595cee..4335580ee903 100644
--- a/include/oox/vml/vmlshapecontainer.hxx
+++ b/include/oox/vml/vmlshapecontainer.hxx
@@ -88,7 +88,7 @@ public:
(Word only) Returns the last shape in the collection, if it is after the last
mark from pushMark(), and removes it.
*/
- boost::shared_ptr< ShapeBase > takeLastShape();
+ std::shared_ptr< ShapeBase > takeLastShape();
/**
Adds a recursion mark to the stack. It is possible that a shape contains <w:txbxContent>
which contains another shape, and writerfilter needs to know which shape is from the inner
@@ -126,7 +126,7 @@ private:
template< typename ShapeT >
ShapeT& ShapeContainer::createShape()
{
- ::boost::shared_ptr< ShapeT > xShape( new ShapeT( mrDrawing ) );
+ std::shared_ptr< ShapeT > xShape( new ShapeT( mrDrawing ) );
maShapes.push_back( xShape );
return *xShape;
}