diff options
Diffstat (limited to 'basctl/source/inc')
-rw-r--r-- | basctl/source/inc/baside3.hxx | 6 | ||||
-rw-r--r-- | basctl/source/inc/dlged.hxx | 10 | ||||
-rw-r--r-- | basctl/source/inc/docsignature.hxx | 4 |
3 files changed, 10 insertions, 10 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: diff --git a/basctl/source/inc/dlged.hxx b/basctl/source/inc/dlged.hxx index aec6543a7a4d..edad9fd90799 100644 --- a/basctl/source/inc/dlged.hxx +++ b/basctl/source/inc/dlged.hxx @@ -33,7 +33,7 @@ #include <vcl/vclptr.hxx> #include <vcl/window.hxx> -#include <boost/scoped_ptr.hpp> +#include <memory> class ScrollBar; class Printer; @@ -110,18 +110,18 @@ private: private: VclPtr<ScrollBar> pHScroll; VclPtr<ScrollBar> pVScroll; - boost::scoped_ptr<DlgEdModel> pDlgEdModel; // never nullptr + std::unique_ptr<DlgEdModel> pDlgEdModel; // never nullptr DlgEdPage* pDlgEdPage; // never nullptr - boost::scoped_ptr<DlgEdView> pDlgEdView; // never nullptr + std::unique_ptr<DlgEdView> pDlgEdView; // never nullptr DlgEdForm* pDlgEdForm; // never nullptr css::uno::Reference< css::container::XNameContainer > m_xUnoControlDialogModel; css::uno::Reference< css::awt::XControlContainer > m_xControlContainer; css::uno::Sequence< css::datatransfer::DataFlavor > m_ClipboardDataFlavors; css::uno::Sequence< css::datatransfer::DataFlavor > m_ClipboardDataFlavorsResource; css::uno::Reference< css::util::XNumberFormatsSupplier > m_xSupplier; - boost::scoped_ptr<DlgEdFactory> pObjFac; // never nullptr + std::unique_ptr<DlgEdFactory> pObjFac; // never nullptr vcl::Window& rWindow; // DialogWindow - boost::scoped_ptr<DlgEdFunc> pFunc; + std::unique_ptr<DlgEdFunc> pFunc; DialogWindowLayout& rLayout; Mode eMode; sal_uInt16 eActObj; diff --git a/basctl/source/inc/docsignature.hxx b/basctl/source/inc/docsignature.hxx index fb506aa6c776..546b1fb46d4f 100644 --- a/basctl/source/inc/docsignature.hxx +++ b/basctl/source/inc/docsignature.hxx @@ -20,8 +20,8 @@ #define INCLUDED_BASCTL_SOURCE_INC_DOCSIGNATURE_HXX #include <com/sun/star/frame/XModel.hpp> -#include <boost/scoped_ptr.hpp> #include <sfx2/signaturestate.hxx> +#include <memory> namespace basctl @@ -67,7 +67,7 @@ namespace basctl private: struct Impl; - boost::scoped_ptr<Impl> m_pImpl; + std::unique_ptr<Impl> m_pImpl; }; |