diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-14 14:43:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-14 19:32:42 +0000 |
commit | 33cddeea1352688af9a42b53024e32a4536d5860 (patch) | |
tree | c113962c0dd2a936b08ce0e64721f7b4617e757b /chart2/source/inc/chartview | |
parent | f10691acf1be60167c042b4b4a60200b4defcd88 (diff) |
boost->std
Change-Id: Iff14f69c200217c5d868978e8ffc06962b99ac09
Reviewed-on: https://gerrit.libreoffice.org/18568
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'chart2/source/inc/chartview')
-rw-r--r-- | chart2/source/inc/chartview/DrawModelWrapper.hxx | 2 | ||||
-rw-r--r-- | chart2/source/inc/chartview/ExplicitValueProvider.hxx | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/chart2/source/inc/chartview/DrawModelWrapper.hxx b/chart2/source/inc/chartview/DrawModelWrapper.hxx index 6409e4368909..99fa5e76b162 100644 --- a/chart2/source/inc/chartview/DrawModelWrapper.hxx +++ b/chart2/source/inc/chartview/DrawModelWrapper.hxx @@ -28,8 +28,6 @@ #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include "chartviewdllapi.hxx" -#include <boost/scoped_ptr.hpp> - namespace chart { diff --git a/chart2/source/inc/chartview/ExplicitValueProvider.hxx b/chart2/source/inc/chartview/ExplicitValueProvider.hxx index 934f22fcc481..3e10044f416e 100644 --- a/chart2/source/inc/chartview/ExplicitValueProvider.hxx +++ b/chart2/source/inc/chartview/ExplicitValueProvider.hxx @@ -21,7 +21,6 @@ #include "ExplicitScaleValues.hxx" -#include <boost/shared_ptr.hpp> #include <com/sun/star/chart2/XAxis.hpp> #include <com/sun/star/chart2/XCoordinateSystem.hpp> #include <com/sun/star/chart2/XDataSeries.hpp> @@ -31,9 +30,10 @@ #include <com/sun/star/drawing/XShape.hpp> #include <com/sun/star/util/XNumberFormatsSupplier.hpp> #include "chartviewdllapi.hxx" - #include "ChartModel.hxx" +#include <memory> + namespace chart { @@ -64,7 +64,7 @@ public: virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > getShapeForCID( const OUString& rObjectCID )=0; - virtual ::boost::shared_ptr< DrawModelWrapper > getDrawModelWrapper() = 0; + virtual std::shared_ptr< DrawModelWrapper > getDrawModelWrapper() = 0; static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId(); static ExplicitValueProvider* getExplicitValueProvider( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& xChartView ); |