summaryrefslogtreecommitdiff
path: root/sc/source/core/data/table3.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-05-12 10:50:16 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-05-12 13:47:31 -0400
commite2f94a8e2cf1761f5e2b0ae166f6a8bd73e0a15d (patch)
tree02c3bfc9f5bdc351dd92b9817d2acae9be375a93 /sc/source/core/data/table3.cxx
parent5b0b7553241bb5150b12bbf7625b4b0b36970272 (diff)
Move this function object to o3tl.
Change-Id: I9d1710fbed3c5753e84ed343c5136ab87909624d
Diffstat (limited to 'sc/source/core/data/table3.cxx')
-rw-r--r--sc/source/core/data/table3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx
index 22a2a09da47f..860d0777078f 100644
--- a/sc/source/core/data/table3.cxx
+++ b/sc/source/core/data/table3.cxx
@@ -56,13 +56,13 @@
#include "tokenarray.hxx"
#include "mtvcellfunc.hxx"
#include "columnspanset.hxx"
-#include <stlalgorithm.hxx>
#include <fstalgorithm.hxx>
#include <listenercontext.hxx>
#include <sharedformula.hxx>
#include <refhint.hxx>
#include <svl/sharedstringpool.hxx>
+#include <o3tl/deleter.hxx>
#include <vector>
#include <boost/scoped_ptr.hpp>
@@ -293,7 +293,7 @@ public:
delete[] pppInfo;
if (mpRows)
- std::for_each(mpRows->begin(), mpRows->end(), ScDeleteObjectByPtr<Row>());
+ std::for_each(mpRows->begin(), mpRows->end(), o3tl::default_deleter<Row>());
}
void SetKeepQuery( bool b ) { mbKeepQuery = b; }