diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-24 18:50:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-25 08:40:12 +0200 |
commit | d54a72a40852e206d78ab4c57a6898cfae39b8d0 (patch) | |
tree | 93967bdbbe5b48e4645b912cf921b244634088af /include/dbaccess | |
parent | 43c47c610556b0bbd4f22c317d6e58c543109c12 (diff) |
dbaccess: std::auto_ptr -> std::unique_ptr
Change-Id: I2b27aaf589fcbe4da1680f624a57be7ae62b0dc5
Diffstat (limited to 'include/dbaccess')
-rw-r--r-- | include/dbaccess/controllerframe.hxx | 2 | ||||
-rw-r--r-- | include/dbaccess/dataview.hxx | 2 | ||||
-rw-r--r-- | include/dbaccess/dbsubcomponentcontroller.hxx | 2 | ||||
-rw-r--r-- | include/dbaccess/genericcontroller.hxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/include/dbaccess/controllerframe.hxx b/include/dbaccess/controllerframe.hxx index e39c63251586..7a990d0acc1c 100644 --- a/include/dbaccess/controllerframe.hxx +++ b/include/dbaccess/controllerframe.hxx @@ -64,7 +64,7 @@ namespace dbaui void frameAction( ::com::sun::star::frame::FrameAction _eAction ); private: - ::std::auto_ptr< ControllerFrame_Data > m_pData; + ::std::unique_ptr< ControllerFrame_Data > m_pData; }; diff --git a/include/dbaccess/dataview.hxx b/include/dbaccess/dataview.hxx index 47292d09a7ac..b50149299f38 100644 --- a/include/dbaccess/dataview.hxx +++ b/include/dbaccess/dataview.hxx @@ -39,7 +39,7 @@ namespace dbaui protected: IController& m_rController; // the controller in where we resides in FixedLine m_aSeparator; - ::std::auto_ptr< ::svt::AcceleratorExecute> m_pAccel; + ::std::unique_ptr< ::svt::AcceleratorExecute> m_pAccel; public: ODataView( vcl::Window* pParent, diff --git a/include/dbaccess/dbsubcomponentcontroller.hxx b/include/dbaccess/dbsubcomponentcontroller.hxx index 02f7347ae1ef..d7087e025b97 100644 --- a/include/dbaccess/dbsubcomponentcontroller.hxx +++ b/include/dbaccess/dbsubcomponentcontroller.hxx @@ -56,7 +56,7 @@ namespace dbaui class DBACCESS_DLLPUBLIC DBSubComponentController : public DBSubComponentController_Base { private: - ::std::auto_ptr<DBSubComponentController_Impl> m_pImpl; + ::std::unique_ptr<DBSubComponentController_Impl> m_pImpl; private: /** forces usage of a connection which we do not own diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx index 4bdd59c5d9af..79169c3ff9ba 100644 --- a/include/dbaccess/genericcontroller.hxx +++ b/include/dbaccess/genericcontroller.hxx @@ -210,7 +210,7 @@ namespace dbaui ::comphelper::NamedValueCollection m_aInitParameters; - ::std::auto_ptr< OGenericUnoController_Data > + ::std::unique_ptr< OGenericUnoController_Data > m_pData; ODataView* m_pView; // our (VCL) "main window" |