summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-07 16:00:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-07 18:43:32 +0100
commit6606611c425823726f1f40ea085acc982906cef6 (patch)
treee383b04c4f858871efefcf5d01c7a6bf59c6cf1b /binaryurp
parentbf28399df0b73364b12309032e4a8b571389c2cf (diff)
auto_ptr -> scoped_ptr
Change-Id: Iebfb88b6326873642356f5ba566b36c7a3672815
Diffstat (limited to 'binaryurp')
-rw-r--r--binaryurp/source/bridge.cxx4
1 files changed, 2 insertions, 2 deletions
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 <cassert>
#include <cstddef>
#include <limits>
-#include <memory>
#include <vector>
#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);