diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 12:27:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 12:28:53 +0200 |
commit | 7bc8c92bd9a261d81fd48219c2868f2b9ceff56d (patch) | |
tree | de0d222b1db3e46b3bc5dddf6b903ec9f061b85e /linguistic | |
parent | 67009cf202e2a9bca3ac095870f6d64a47f09157 (diff) |
linguistic: std::auto_ptr -> std::unique_ptr
Change-Id: I4eb6a5aee50709093e70d5c4863f0c029d691471
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/convdic.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/convdic.hxx b/linguistic/source/convdic.hxx index a43fa918aaf7..9831557a4327 100644 --- a/linguistic/source/convdic.hxx +++ b/linguistic/source/convdic.hxx @@ -82,9 +82,9 @@ protected: ::cppu::OInterfaceContainerHelper aFlushListeners; ConvMap aFromLeft; - std::auto_ptr< ConvMap > pFromRight; // only available for bidirectional conversion dictionaries + std::unique_ptr< ConvMap > pFromRight; // only available for bidirectional conversion dictionaries - std::auto_ptr< PropTypeMap > pConvPropType; + std::unique_ptr< PropTypeMap > pConvPropType; OUString aMainURL; // URL to file OUString aName; |