summaryrefslogtreecommitdiff
path: root/sc/inc/dociter.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-30 17:26:48 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-30 17:51:30 +0200
commit89c72084b23b14780d0799f2f2f32c579212f497 (patch)
tree5d7aceedbe6be23b302c382e14d5148d460b0b89 /sc/inc/dociter.hxx
parent741629f48a3fe72fb1e9fb68077446907585e852 (diff)
sc: std::auto_ptr -> std::unique_ptr
Change-Id: I25468d578de597ff9aeba3ffc850c630fa532767
Diffstat (limited to 'sc/inc/dociter.hxx')
-rw-r--r--sc/inc/dociter.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx
index 675d19915674..2230b81c9c8e 100644
--- a/sc/inc/dociter.hxx
+++ b/sc/inc/dociter.hxx
@@ -172,8 +172,8 @@ private:
SCCOL mnCols;
};
- ::std::auto_ptr<ScDBQueryParamBase> mpParam;
- ::std::auto_ptr<DataAccess> mpData;
+ ::std::unique_ptr<ScDBQueryParamBase> mpParam;
+ ::std::unique_ptr<DataAccess> mpData;
public:
ScDBQueryDataIterator(ScDocument* pDocument, ScDBQueryParamBase* pParam);