summaryrefslogtreecommitdiff
path: root/sc/source/ui/view
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-12 20:24:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-12 20:25:40 +0100
commit28fe3628ed22a17eeb5a402724fea6558b2ba6bf (patch)
tree44ffbfaddb463e891d34b0ed46dcde032d9e7880 /sc/source/ui/view
parentacc04202e8b1e69381355eaae5ba456bee6fd9c9 (diff)
o3tl::default_deleter->boost::checked_deleter
has the same result Change-Id: Ifbebcfb26c6fc54d03522c924da86837d7dfa3b9
Diffstat (limited to 'sc/source/ui/view')
-rw-r--r--sc/source/ui/view/viewdata.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index 9b2331fc31da..50e7b12d6087 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -59,9 +59,9 @@
#include "stlalgorithm.hxx"
#include "ViewSettingsSequenceDefines.hxx"
#include <rtl/ustrbuf.hxx>
+#include <boost/checked_delete.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/string.hxx>
-#include <o3tl/deleter.hxx>
#include <com/sun/star/container/XNameContainer.hpp>
#include <com/sun/star/document/NamedPropertyValues.hpp>
@@ -458,7 +458,7 @@ ScViewData::~ScViewData()
KillEditView();
delete pOptions;
::std::for_each(
- maTabData.begin(), maTabData.end(), o3tl::default_deleter<ScViewDataTable>());
+ maTabData.begin(), maTabData.end(), boost::checked_deleter<ScViewDataTable>());
}
void ScViewData::UpdateCurrentTab()