From ddc280920282ff3e2801e9a79f9dfa8a6c6f5699 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 17 Sep 2015 11:30:13 +0100 Subject: boost->std Change-Id: Idfbcfa1e5ba7bff92e98693c33c4b33a6beda08f --- sw/source/uibase/table/tablemgr.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/uibase/table') diff --git a/sw/source/uibase/table/tablemgr.cxx b/sw/source/uibase/table/tablemgr.cxx index cefeea728249..86f242bcf339 100644 --- a/sw/source/uibase/table/tablemgr.cxx +++ b/sw/source/uibase/table/tablemgr.cxx @@ -44,7 +44,7 @@ #include "docsh.hxx" #include "unotbl.hxx" #include "unochart.hxx" -#include +#include using namespace ::com::sun::star; @@ -55,7 +55,7 @@ void SwTableFUNC::ColWidthDlg( vcl::Window *pParent ) SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create(); OSL_ENSURE(pFact, "SwAbstractDialogFactory fail!"); - boost::scoped_ptr pDlg(pFact->CreateSwTableWidthDlg(pParent, *this)); + std::unique_ptr pDlg(pFact->CreateSwTableWidthDlg(pParent, *this)); OSL_ENSURE(pDlg, "Dialog creation failed!"); pDlg->Execute(); } -- cgit