summaryrefslogtreecommitdiff
path: root/chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx')
-rw-r--r--chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx b/chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx
index c074d57900ca..31d2fc2a4f18 100644
--- a/chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx
+++ b/chart2/source/controller/chartapiwrapper/ChartDataWrapper.hxx
@@ -29,7 +29,7 @@
#include <com/sun/star/chart2/XChartDocument.hpp>
#include <com/sun/star/uno/XComponentContext.hpp>
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace chart
{
@@ -48,8 +48,8 @@ class ChartDataWrapper : public MutexContainer, public
com::sun::star::lang::XComponent >
{
public:
- explicit ChartDataWrapper( ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact );
- ChartDataWrapper( ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact
+ explicit ChartDataWrapper( std::shared_ptr< Chart2ModelContact > spChart2ModelContact );
+ ChartDataWrapper( std::shared_ptr< Chart2ModelContact > spChart2ModelContact
, const ::com::sun::star::uno::Reference< ::com::sun::star::chart::XChartData >& xNewData );
virtual ~ChartDataWrapper();
@@ -156,7 +156,7 @@ private: //member
::com::sun::star::uno::Reference<
::com::sun::star::chart2::XAnyDescriptionAccess > m_xDataAccess;
- ::boost::shared_ptr< Chart2ModelContact > m_spChart2ModelContact;
+ std::shared_ptr< Chart2ModelContact > m_spChart2ModelContact;
::cppu::OInterfaceContainerHelper m_aEventListenerContainer;
};