diff options
Diffstat (limited to 'chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx')
-rw-r--r-- | chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx index ab21038601da..181c67d2d59f 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx +++ b/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.hxx @@ -22,7 +22,7 @@ #include "WrappedProperty.hxx" #include "Chart2ModelContact.hxx" -#include <boost/shared_ptr.hpp> +#include <memory> #include <vector> namespace chart @@ -35,9 +35,9 @@ class WrappedSymbolProperties public: static void addProperties( ::std::vector< ::com::sun::star::beans::Property > & rOutProperties ); static void addWrappedPropertiesForSeries( std::vector< WrappedProperty* >& rList - , ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact ); + , std::shared_ptr< Chart2ModelContact > spChart2ModelContact ); static void addWrappedPropertiesForDiagram( std::vector< WrappedProperty* >& rList - , ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact ); + , std::shared_ptr< Chart2ModelContact > spChart2ModelContact ); }; } //namespace wrapper |