diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-25 11:59:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-25 15:13:45 +0000 |
commit | 7de2777bff9afeacb872c6425d36dc93310302c7 (patch) | |
tree | 7d51ade5ef54f465b98cb182fb5dde2117651f36 /sd/source/ui/func/fucushow.cxx | |
parent | 867256a4ffe7542bb654024b225ab2ca94c9288e (diff) |
sd/source/ui/func boost->std
Change-Id: I67874a8bad1549fd98e22a816d9fa52a17629a1e
Reviewed-on: https://gerrit.libreoffice.org/18850
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/ui/func/fucushow.cxx')
-rw-r--r-- | sd/source/ui/func/fucushow.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sd/source/ui/func/fucushow.cxx b/sd/source/ui/func/fucushow.cxx index 3f62a813feb9..78548c3f3fe1 100644 --- a/sd/source/ui/func/fucushow.cxx +++ b/sd/source/ui/func/fucushow.cxx @@ -32,7 +32,6 @@ #include "sdabstdlg.hxx" #include <memory> -#include <boost/scoped_ptr.hpp> namespace sd { @@ -58,7 +57,7 @@ rtl::Reference<FuPoor> FuCustomShowDlg::Create( ViewShell* pViewSh, ::sd::Window void FuCustomShowDlg::DoExecute( SfxRequest& ) { SdAbstractDialogFactory* pFact = SdAbstractDialogFactory::Create(); - boost::scoped_ptr<AbstractSdCustomShowDlg> pDlg(pFact ? pFact->CreateSdCustomShowDlg( NULL, *mpDoc ) : 0); + std::unique_ptr<AbstractSdCustomShowDlg> pDlg(pFact ? pFact->CreateSdCustomShowDlg( NULL, *mpDoc ) : 0); if( pDlg ) { sal_uInt16 nRet = pDlg->Execute(); |