diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-01-18 05:54:58 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2014-01-18 08:08:52 +0900 |
commit | 5e6d1e3332ea4cd31d2c5e739dc27bb37b34b4dc (patch) | |
tree | 256c9d1d3d644d66e3e19beffe5418ea9c445fe2 /sw/source/ui/shells/tabsh.cxx | |
parent | 8e826c7ff7c597e9f585377b2117f4dc24239dcc (diff) |
Replace deprecated std::auto_ptr with boost::scoped_ptr
Change-Id: Ib05c6d509a71e01b50b2e23588da607f29036711
Diffstat (limited to 'sw/source/ui/shells/tabsh.cxx')
-rw-r--r-- | sw/source/ui/shells/tabsh.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/source/ui/shells/tabsh.cxx b/sw/source/ui/shells/tabsh.cxx index 9df537263f51..4152393812ab 100644 --- a/sw/source/ui/shells/tabsh.cxx +++ b/sw/source/ui/shells/tabsh.cxx @@ -84,6 +84,8 @@ #include "swabstdlg.hxx" #include <table.hrc> +#include <boost/scoped_ptr.hpp> + using ::editeng::SvxBorderLine; using namespace ::com::sun::star; @@ -879,7 +881,7 @@ void SwTableShell::Execute(SfxRequest &rReq) if ( FN_TABLE_INSERT_ROW_DLG != nSlot || !rSh.IsInRepeatedHeadline()) { SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); - ::std::auto_ptr<SvxAbstractInsRowColDlg> pDlg( pFact ? pFact->CreateSvxInsRowColDlg( GetView().GetWindow(), nSlot == FN_TABLE_INSERT_COL_DLG, pSlot->GetCommand() ) : 0); + boost::scoped_ptr<SvxAbstractInsRowColDlg> pDlg( pFact ? pFact->CreateSvxInsRowColDlg( GetView().GetWindow(), nSlot == FN_TABLE_INSERT_COL_DLG, pSlot->GetCommand() ) : 0); if( pDlg.get() && (pDlg->Execute() == 1) ) { |