auto_ptr -> scoped_ptr

Change-Id: I16d457d2981b7b3f60c150d362b8b51f6a2700fd
This commit is contained in:
Stephan Bergmann
2014-02-10 14:28:09 +01:00
parent 10be54247d
commit ed0101dfaa

View File

@@ -17,14 +17,14 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 . * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ */
#include <sal/config.h>
#include <memory>
#include "updatecheck.hxx" #include "updatecheck.hxx"
#include "updatecheckconfig.hxx" #include "updatecheckconfig.hxx"
#include "updatehdl.hxx" #include "updatehdl.hxx"
#include "updateprotocol.hxx" #include "updateprotocol.hxx"
#include <boost/scoped_ptr.hpp>
#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase3.hxx>
#include <cppuhelper/implementationentry.hxx> #include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx> #include <cppuhelper/supportsservice.hxx>
@@ -102,7 +102,7 @@ public:
private: private:
uno::Reference<uno::XComponentContext> m_xContext; uno::Reference<uno::XComponentContext> m_xContext;
uno::Reference< frame::XDesktop2 > m_xDesktop; uno::Reference< frame::XDesktop2 > m_xDesktop;
std::auto_ptr< InitUpdateCheckJobThread > m_pInitThread; boost::scoped_ptr< InitUpdateCheckJobThread > m_pInitThread;
void handleExtensionUpdates( const uno::Sequence< beans::NamedValue > &rListProp ); void handleExtensionUpdates( const uno::Sequence< beans::NamedValue > &rListProp );
}; };