[Libreoffice-commits] core.git: svtools/inc
Caolán McNamara
caolanm at redhat.com
Wed Feb 18 07:45:41 PST 2015
svtools/inc/table/tablecontrol.hxx | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
New commits:
commit 1f893617eeec4aea9cd460b633dc4004b6cf20ba
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Feb 18 15:44:37 2015 +0000
fix JunitTest_toolkit_complex
Change-Id: I396e8e04df40efb1559995e78761e1954ba7bc6f
diff --git a/svtools/inc/table/tablecontrol.hxx b/svtools/inc/table/tablecontrol.hxx
index 87285f5..e4b7cbf 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:
More information about the Libreoffice-commits
mailing list