summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterPaneContainer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterPaneContainer.hxx')
-rw-r--r--sdext/source/presenter/PresenterPaneContainer.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sdext/source/presenter/PresenterPaneContainer.hxx b/sdext/source/presenter/PresenterPaneContainer.hxx
index ced20baf6e25..99b70e90b62b 100644
--- a/sdext/source/presenter/PresenterPaneContainer.hxx
+++ b/sdext/source/presenter/PresenterPaneContainer.hxx
@@ -35,10 +35,10 @@
#include <rtl/ref.hxx>
#include <boost/noncopyable.hpp>
-#include <boost/shared_ptr.hpp>
-#include <vector>
#include <functional>
+#include <memory>
+#include <vector>
namespace sdext { namespace presenter {
@@ -82,7 +82,7 @@ public:
{
public:
typedef ::std::function<void (bool)> Activator;
- typedef ::std::function<boost::shared_ptr<PresenterSprite> ()> SpriteProvider;
+ typedef ::std::function<std::shared_ptr<PresenterSprite> ()> SpriteProvider;
css::uno::Reference<css::drawing::framework::XResourceId> mxPaneId;
OUString msViewURL;
::rtl::Reference<PresenterPaneBase> mxPane;
@@ -109,7 +109,7 @@ public:
void SetActivationState (const bool bIsActive);
};
- typedef ::boost::shared_ptr<PaneDescriptor> SharedPaneDescriptor;
+ typedef std::shared_ptr<PaneDescriptor> SharedPaneDescriptor;
typedef ::std::vector<SharedPaneDescriptor> PaneList;
PaneList maPanes;