summaryrefslogtreecommitdiff
path: root/chart2/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-29 21:51:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-30 13:04:54 +0100
commit3f3e011c9bbf5c51df983c2a28b348dcdff3dd3f (patch)
tree6a182b4fc203fb10db2d1a18a077e4007d220e22 /chart2/source/inc
parente4282270bf5fee98c7647f13cb96ee2cdea1f018 (diff)
use concrete types in chart2, SvxShapePolyPolygon
Change-Id: Ica53484d44e6992278b8d188ffb536e238aeb195 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127725 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/inc')
-rw-r--r--chart2/source/inc/chartview/DataPointSymbolSupplier.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/inc/chartview/DataPointSymbolSupplier.hxx b/chart2/source/inc/chartview/DataPointSymbolSupplier.hxx
index e028de7957fa..9b236cfb06d5 100644
--- a/chart2/source/inc/chartview/DataPointSymbolSupplier.hxx
+++ b/chart2/source/inc/chartview/DataPointSymbolSupplier.hxx
@@ -21,10 +21,11 @@
#include <chartview/chartviewdllapi.hxx>
#include <com/sun/star/uno/Reference.h>
+#include <rtl/ref.hxx>
+#include <svx/unoshape.hxx>
namespace com::sun::star::drawing { class XShapes; }
namespace com::sun::star::drawing { struct Direction3D; }
-namespace com::sun::star::lang { class XMultiServiceFactory; }
namespace chart
{
@@ -32,9 +33,8 @@ namespace chart
class OOO_DLLPUBLIC_CHARTVIEW DataPointSymbolSupplier
{
public:
- static css::uno::Reference< css::drawing::XShapes >
- create2DSymbolList( const css::uno::Reference< css::lang::XMultiServiceFactory >& xShapeFactory
- , const css::uno::Reference< css::drawing::XShapes >& xTarget
+ static rtl::Reference< SvxShapeGroup >
+ create2DSymbolList( const css::uno::Reference< css::drawing::XShapes >& xTarget
, const css::drawing::Direction3D& rSize );
};