diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 18:02:43 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-29 18:37:51 +0200 |
commit | b48e90799d85e25092fa07ee47bb5a94588d4c82 (patch) | |
tree | e8f3d600f7aa73c2fa23c8ded05e70cf70fe1542 /vcl | |
parent | 0b23ac2c9d36c89137feeb82d0aed7a8628a53b7 (diff) |
vcl: std::auto_ptr -> std::unique_ptr
Change-Id: I5a08186b465b15311c63784506a0ca0e119286e2
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/inc/textlayout.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/textlayout.hxx b/vcl/inc/textlayout.hxx index 14980218d90a..3ba4d6012f9e 100644 --- a/vcl/inc/textlayout.hxx +++ b/vcl/inc/textlayout.hxx @@ -102,7 +102,7 @@ namespace vcl ControlTextRenderer& operator=( const ControlTextRenderer& ); // never implemented private: - ::std::auto_ptr< ReferenceDeviceTextLayout > m_pImpl; + ::std::unique_ptr< ReferenceDeviceTextLayout > m_pImpl; }; } // namespace vcl |