summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterSpritePane.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-18 09:25:18 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-18 13:46:27 +0000
commit335704695d15f53518a614060e60821c8e1cf279 (patch)
treef2dada4f16f9daf0163c70e6cb519acb71f70a3c /sdext/source/presenter/PresenterSpritePane.hxx
parent5db6ec77d851b2aa9f22a735d1d2a9a5465759cc (diff)
boost->std
Change-Id: I21ca18c23277423d106d990fd537d58108bd1084 Reviewed-on: https://gerrit.libreoffice.org/18679 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sdext/source/presenter/PresenterSpritePane.hxx')
-rw-r--r--sdext/source/presenter/PresenterSpritePane.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/presenter/PresenterSpritePane.hxx b/sdext/source/presenter/PresenterSpritePane.hxx
index 6174e449b1e2..3124bb3378da 100644
--- a/sdext/source/presenter/PresenterSpritePane.hxx
+++ b/sdext/source/presenter/PresenterSpritePane.hxx
@@ -36,7 +36,7 @@
#include <com/sun/star/rendering/XSpriteCanvas.hpp>
#include <cppuhelper/basemutex.hxx>
#include <rtl/ref.hxx>
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace sdext { namespace presenter {
@@ -57,7 +57,7 @@ public:
using PresenterPaneBase::disposing;
- ::boost::shared_ptr<PresenterSprite> GetSprite();
+ std::shared_ptr<PresenterSprite> GetSprite();
// XPane
@@ -89,7 +89,7 @@ public:
private:
css::uno::Reference<css::awt::XWindow> mxParentWindow;
css::uno::Reference<css::rendering::XSpriteCanvas> mxParentCanvas;
- ::boost::shared_ptr<PresenterSprite> mpSprite;
+ std::shared_ptr<PresenterSprite> mpSprite;
virtual void CreateCanvases (
const css::uno::Reference<css::awt::XWindow>& rxParentWindow,