summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-01-17 08:45:20 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-01-17 11:33:17 -0500
commitce8010b482020145b8a8c8e15a61e1a6b5574d7c (patch)
treeaff39f243aaaedcebadde8f9510eac578edc13e3 /include
parent9d2424a67ccce9a22c2f3cb7e915654131e2132a (diff)
Remove warning and build error with MSVC.
Change-Id: I8eac2f5ff08968a885a8e413bf4db38092036957
Diffstat (limited to 'include')
-rw-r--r--include/svx/framelinkarray.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/framelinkarray.hxx b/include/svx/framelinkarray.hxx
index 93837482c78a..caf0623efac8 100644
--- a/include/svx/framelinkarray.hxx
+++ b/include/svx/framelinkarray.hxx
@@ -23,11 +23,11 @@
#include <svx/framelink.hxx>
#include <drawinglayer/processor2d/baseprocessor2d.hxx>
-#include <memory>
-
#include <vector>
#include <svx/svxdllapi.h>
+#include <boost/scoped_ptr.hpp>
+
namespace svx {
namespace frame {
@@ -380,7 +380,7 @@ public:
// ------------------------------------------------------------------------
private:
- typedef std::auto_ptr< ArrayImpl > ArrayImplPtr;
+ typedef boost::scoped_ptr<ArrayImpl> ArrayImplPtr;
ArrayImplPtr mxImpl;
};