diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-02-21 14:33:44 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2014-02-21 14:35:52 +0900 |
commit | 5f17e5eaad665337c7d8b7f05a61adc21d80a073 (patch) | |
tree | fa653f05c3724046dc9bd373f1e66fd462f282b3 /desktop | |
parent | 24dd10c727ab2d7a38368292498520e11d98e3cb (diff) |
Replace deprecated std::auto_ptr with boost::scoped_ptr
Change-Id: I674b7ee507258555b667657a13db6fda9b8d8372
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/app/officeipcthread.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx index f3e46ec7a0a4..44d8c893bb6f 100644 --- a/desktop/source/app/officeipcthread.cxx +++ b/desktop/source/app/officeipcthread.cxx @@ -23,7 +23,7 @@ #include "officeipcthread.hxx" #include "cmdlineargs.hxx" #include "dispatchwatcher.hxx" -#include <memory> +#include <boost/scoped_ptr.hpp> #include <stdio.h> #include <osl/process.h> #include <unotools/bootstrap.hxx> @@ -713,7 +713,7 @@ void OfficeIPCThread::execute() if (aArguments.isEmpty()) continue; - std::auto_ptr< CommandLineArgs > aCmdLineArgs; + boost::scoped_ptr< CommandLineArgs > aCmdLineArgs; try { Parser p(aArguments); |