summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-18 15:44:37 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-18 15:45:06 +0000
commit1f893617eeec4aea9cd460b633dc4004b6cf20ba (patch)
tree83554ecb8bf3712aa007181b82f246f905f7c8c4 /svtools
parenttdf#89436 ScHorizontalAttrIterator - fix indices (diff)
downloadcore-1f893617eeec4aea9cd460b633dc4004b6cf20ba.tar.gz
core-1f893617eeec4aea9cd460b633dc4004b6cf20ba.zip
fix JunitTest_toolkit_complex
Change-Id: I396e8e04df40efb1559995e78761e1954ba7bc6f
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/table/tablecontrol.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/svtools/inc/table/tablecontrol.hxx b/svtools/inc/table/tablecontrol.hxx
index 87285f52946d..e4b7cbf26cea 100644
--- a/svtools/inc/table/tablecontrol.hxx
+++ b/svtools/inc/table/tablecontrol.hxx
@@ -28,10 +28,7 @@
#include <vcl/ctrl.hxx>
#include <vcl/seleng.hxx>
-#include <boost/shared_ptr.hpp>
-#include <boost/scoped_ptr.hpp>
-
-
+#include <memory>
namespace svt { namespace table
{
@@ -61,7 +58,7 @@ namespace svt { namespace table
class SVT_DLLPUBLIC TableControl : public Control, public IAccessibleTable
{
private:
- ::boost::shared_ptr< TableControl_Impl > m_pImpl;
+ std::shared_ptr<TableControl_Impl> m_pImpl;
public: