summaryrefslogtreecommitdiff
path: root/include/vcl/svgdata.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/svgdata.hxx')
-rw-r--r--include/vcl/svgdata.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/svgdata.hxx b/include/vcl/svgdata.hxx
index 84a625e935d1..361528843691 100644
--- a/include/vcl/svgdata.hxx
+++ b/include/vcl/svgdata.hxx
@@ -33,7 +33,7 @@ typedef css::uno::Sequence<sal_Int8> SvgDataArray;
// using default parameters and graphic::XPrimitive2DRenderer
BitmapEx VCL_DLLPUBLIC convertPrimitive2DSequenceToBitmapEx(
- const css::uno::Sequence< css::uno::Reference< css::graphic::XPrimitive2D > >& rSequence,
+ const std::vector< css::uno::Reference< css::graphic::XPrimitive2D > >& rSequence,
const basegfx::B2DRange& rTargetRange,
const sal_uInt32 nMaximumQuadraticPixels = 500000);
@@ -49,7 +49,7 @@ private:
// on demand created content
basegfx::B2DRange maRange;
- css::uno::Sequence< css::uno::Reference< css::graphic::XPrimitive2D > >
+ std::vector< css::uno::Reference< css::graphic::XPrimitive2D > >
maSequence;
BitmapEx maReplacement;
@@ -71,7 +71,7 @@ public:
/// data read and evtl. on demand creation
const basegfx::B2DRange& getRange() const;
- const css::uno::Sequence< css::uno::Reference< css::graphic::XPrimitive2D > >& getPrimitive2DSequence() const;
+ const std::vector< css::uno::Reference< css::graphic::XPrimitive2D > >& getPrimitive2DSequence() const;
const BitmapEx& getReplacement() const;
};