summaryrefslogtreecommitdiff
path: root/svx/source/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-24 18:15:42 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-25 08:40:12 +0200
commit43c47c610556b0bbd4f22c317d6e58c543109c12 (patch)
tree092acbcbc99b29b02591022a0e11a01f2b309e93 /svx/source/inc
parentc91dec0dad6b0da5bfe15d0597bfc069df26f343 (diff)
connectivity: std::auto_ptr -> std::unique_ptr
Change-Id: I796dc05d1846f140a56b5a6f14a69a239324ae5b
Diffstat (limited to 'svx/source/inc')
-rw-r--r--svx/source/inc/gridcell.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/svx/source/inc/gridcell.hxx b/svx/source/inc/gridcell.hxx
index 2746fa602858..2051498f5854 100644
--- a/svx/source/inc/gridcell.hxx
+++ b/svx/source/inc/gridcell.hxx
@@ -544,10 +544,8 @@ private:
OUString impl_formatText(const OUString& _rText);
private:
- SAL_WNODEPRECATED_DECLARATIONS_PUSH
- ::std::auto_ptr< ::dbtools::FormattedColumnValue > m_pValueFormatter;
- ::std::auto_ptr< ::dbtools::FormattedColumnValue > m_pPaintFormatter;
- SAL_WNODEPRECATED_DECLARATIONS_POP
+ ::std::unique_ptr< ::dbtools::FormattedColumnValue > m_pValueFormatter;
+ ::std::unique_ptr< ::dbtools::FormattedColumnValue > m_pPaintFormatter;
css::uno::Reference<css::uno::XComponentContext> m_xContext;
};