summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-12-30 20:29:56 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-12-30 20:43:29 +0100
commit54bd92d7fce1ec4d8d779751168c698cc44a33ba (patch)
tree8a8bc1d4041fb318d12bd647f96f226bc9099981 /writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
parentb4a30a53f72eb286da502656ccde539fb449c92f (diff)
writerfilter: boost::shared_ptr -> c++11 std::shared_ptr
Change-Id: Ib5649d8979093bb147c61eebcf95a472ad899672
Diffstat (limited to 'writerfilter/source/ooxml/OOXMLFastContextHandler.hxx')
-rw-r--r--writerfilter/source/ooxml/OOXMLFastContextHandler.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
index a90fa8419cb5..73a0d3bdb192 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
@@ -41,12 +41,12 @@ namespace writerfilter {
namespace ooxml
{
-typedef boost::shared_ptr<Stream> StreamPointer_t;
+typedef std::shared_ptr<Stream> StreamPointer_t;
class OOXMLFastContextHandler: public ::cppu::WeakImplHelper1<css::xml::sax::XFastContextHandler>
{
public:
- typedef boost::shared_ptr<OOXMLFastContextHandler> Pointer_t;
+ typedef std::shared_ptr<OOXMLFastContextHandler> Pointer_t;
enum ResourceEnum_t { UNKNOWN, STREAM, PROPERTIES, TABLE, SHAPE };