summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/UndoManager.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/inc/UndoManager.hxx')
-rw-r--r--sw/source/core/inc/UndoManager.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/inc/UndoManager.hxx b/sw/source/core/inc/UndoManager.hxx
index 087d81eb4219..f025789ff36b 100644
--- a/sw/source/core/inc/UndoManager.hxx
+++ b/sw/source/core/inc/UndoManager.hxx
@@ -21,9 +21,9 @@
#define INCLUDED_SW_SOURCE_CORE_INC_UNDOMANAGER_HXX
#include <IDocumentUndoRedo.hxx>
-#include <boost/shared_ptr.hpp>
#include <svx/sdrundomanager.hxx>
#include <ndarr.hxx>
+#include <memory>
class IDocumentDrawModelAccess;
class IDocumentRedlineAccess;
@@ -36,7 +36,7 @@ class UndoManager
, public SdrUndoManager
{
public:
- UndoManager(boost::shared_ptr<SwNodes> pUndoNodes,
+ UndoManager(std::shared_ptr<SwNodes> pUndoNodes,
IDocumentDrawModelAccess & rDrawModelAccess,
IDocumentRedlineAccess & rRedlineAccess,
IDocumentState & rState);
@@ -92,7 +92,7 @@ private:
IDocumentState & m_rState;
/// Undo nodes array: content not currently in document
- boost::shared_ptr<SwNodes> m_xUndoNodes;
+ std::shared_ptr<SwNodes> m_xUndoNodes;
bool m_bGroupUndo : 1; // TRUE: Undo grouping enabled
bool m_bDrawUndo : 1; // TRUE: Draw Undo enabled