summaryrefslogtreecommitdiff
path: root/include/dbaccess/dbaundomanager.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/dbaccess/dbaundomanager.hxx')
-rw-r--r--include/dbaccess/dbaundomanager.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dbaccess/dbaundomanager.hxx b/include/dbaccess/dbaundomanager.hxx
index c9bcef7ca5df..e52176fe0343 100644
--- a/include/dbaccess/dbaundomanager.hxx
+++ b/include/dbaccess/dbaundomanager.hxx
@@ -26,7 +26,7 @@
#include <cppuhelper/implbase1.hxx>
-#include <boost/scoped_ptr.hpp>
+#include <memory>
class SfxUndoManager;
@@ -84,7 +84,7 @@ namespace dbaui
virtual void SAL_CALL setParent( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& Parent ) throw (::com::sun::star::lang::NoSupportException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
- ::boost::scoped_ptr< UndoManager_Impl > m_pImpl;
+ std::unique_ptr< UndoManager_Impl > m_xImpl;
};