From 6606611c425823726f1f40ea085acc982906cef6 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 7 Feb 2014 16:00:07 +0100 Subject: auto_ptr -> scoped_ptr Change-Id: Iebfb88b6326873642356f5ba566b36c7a3672815 --- binaryurp/source/bridge.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binaryurp') diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx index 63cc9a70a85e..c2d604d66668 100644 --- a/binaryurp/source/bridge.cxx +++ b/binaryurp/source/bridge.cxx @@ -23,10 +23,10 @@ #include #include #include -#include #include #include "boost/noncopyable.hpp" +#include "boost/scoped_ptr.hpp" #include "com/sun/star/bridge/InvalidProtocolChangeException.hpp" #include "com/sun/star/bridge/XBridge.hpp" #include "com/sun/star/bridge/XInstanceProvider.hpp" @@ -609,7 +609,7 @@ bool Bridge::makeCall( bool setter, std::vector< BinaryAny > const & inArguments, BinaryAny * returnValue, std::vector< BinaryAny > * outArguments) { - std::auto_ptr< IncomingReply > resp; + boost::scoped_ptr< IncomingReply > resp; { uno_ThreadPool tp = getThreadPool(); AttachThread att(tp); -- cgit