sd/source/ui/sidebar std->boost

Change-Id: Ia147e1720b1e83ccf0d382ff0020e49f34ce9d21
Reviewed-on: https://gerrit.libreoffice.org/18836
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
Caolán McNamara
2015-09-25 07:16:42 +01:00
parent c29ea22b89
commit 9a85fea237
3 changed files with 3 additions and 4 deletions

View File

@@ -131,7 +131,7 @@ private:
enum InitializationState { NOT_INITIALIZED, INITIALIZING, INITIALIZED } meInitializationState;
::boost::scoped_ptr<MasterPageContainerQueue> mpRequestQueue;
std::unique_ptr<MasterPageContainerQueue> mpRequestQueue;
::com::sun::star::uno::Reference<com::sun::star::frame::XModel> mxModel;
SdDrawDocument* mpDocument;
PreviewRenderer maPreviewRenderer;

View File

@@ -24,7 +24,6 @@
#include "MasterPageDescriptor.hxx"
#include <memory>
#include <boost/scoped_ptr.hpp>
namespace sd { namespace sidebar {
@@ -81,7 +80,7 @@ private:
std::weak_ptr<ContainerAdapter> mpWeakContainer;
class PreviewCreationRequest;
class RequestQueue;
::boost::scoped_ptr<RequestQueue> mpRequestQueue;
std::unique_ptr<RequestQueue> mpRequestQueue;
Timer maDelayedPreviewCreationTimer;
sal_uInt32 mnRequestsServedCount;

View File

@@ -59,7 +59,7 @@
#include <sfx2/request.hxx>
#include <svl/itempool.hxx>
#include <sfx2/sidebar/Theme.hxx>
#include <boost/scoped_ptr.hpp>
#include <memory>
using namespace ::com::sun::star::text;