summaryrefslogtreecommitdiff
path: root/sd/source/ui/sidebar/MasterPageContainer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/sidebar/MasterPageContainer.hxx')
-rw-r--r--sd/source/ui/sidebar/MasterPageContainer.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/sidebar/MasterPageContainer.hxx b/sd/source/ui/sidebar/MasterPageContainer.hxx
index 5e23c6a1065e..d1f27b9a1b21 100644
--- a/sd/source/ui/sidebar/MasterPageContainer.hxx
+++ b/sd/source/ui/sidebar/MasterPageContainer.hxx
@@ -29,7 +29,7 @@
#include <vcl/timer.hxx>
#include "tools/SdGlobalResourceContainer.hxx"
-#include <memory>
+#include <boost/shared_ptr.hpp>
class SdPage;
@@ -109,7 +109,7 @@ public:
the existing entry is replaced/updated by the given one. Otherwise
a new entry is inserted.
*/
- Token PutMasterPage (const std::shared_ptr<MasterPageDescriptor>& rDescriptor);
+ Token PutMasterPage (const ::boost::shared_ptr<MasterPageDescriptor>& rDescriptor);
void AcquireToken (Token aToken);
void ReleaseToken (Token aToken);
@@ -137,7 +137,7 @@ public:
SdPage* GetPageObjectForToken (Token aToken, bool bLoad=true);
Origin GetOriginForToken (Token aToken);
sal_Int32 GetTemplateIndexForToken (Token aToken);
- std::shared_ptr<MasterPageDescriptor> GetDescriptorForToken (Token aToken);
+ ::boost::shared_ptr<MasterPageDescriptor> GetDescriptorForToken (Token aToken);
void InvalidatePreview (Token aToken);
@@ -157,7 +157,7 @@ public:
private:
class Implementation;
- std::shared_ptr<Implementation> mpImpl;
+ ::boost::shared_ptr<Implementation> mpImpl;
PreviewSize mePreviewSize;
};