summaryrefslogtreecommitdiff
path: root/basctl/source/inc/baside3.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source/inc/baside3.hxx')
-rw-r--r--basctl/source/inc/baside3.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/inc/baside3.hxx b/basctl/source/inc/baside3.hxx
index fe8dabba58e3..c374e5d00c9c 100644
--- a/basctl/source/inc/baside3.hxx
+++ b/basctl/source/inc/baside3.hxx
@@ -32,7 +32,7 @@
#include <com/sun/star/script/XLibraryContainer.hpp>
-#include <boost/scoped_ptr.hpp>
+#include <memory>
class Printer;
class StarBASIC;
@@ -57,8 +57,8 @@ class DialogWindow: public BaseWindow
{
private:
DialogWindowLayout& rLayout;
- boost::scoped_ptr<DlgEditor> pEditor; // never nullptr
- boost::scoped_ptr<SfxUndoManager> pUndoMgr; // never nullptr
+ std::unique_ptr<DlgEditor> pEditor; // never nullptr
+ std::unique_ptr<SfxUndoManager> pUndoMgr; // never nullptr
OUString aCurPath;
protected: