summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgfilter.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-12-03 11:18:09 +0200
committerNoel Grandin <noel@peralex.com>2015-12-03 13:57:22 +0200
commit2a9adf0288048fdaad21a1d0ab32e1e86e9577ac (patch)
tree0d4f977f2e4617c4d5326803f6e295ba8929558f /filter/source/svg/svgfilter.hxx
parentcccc9246bbfbaf70fe6946f9416c902af146110a (diff)
uno::Sequence->std::vector
Change-Id: Icbbf540e00be3baf222309a00b153cb34879dfd7
Diffstat (limited to 'filter/source/svg/svgfilter.hxx')
-rw-r--r--filter/source/svg/svgfilter.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/svg/svgfilter.hxx b/filter/source/svg/svgfilter.hxx
index 5120caeeadca..1651f0960fbb 100644
--- a/filter/source/svg/svgfilter.hxx
+++ b/filter/source/svg/svgfilter.hxx
@@ -242,7 +242,7 @@ private:
Reference< XShapes > maShapeSelection;
bool mbExportSelection;
XDrawPageSequence mSelectedPages;
- XDrawPageSequence mMasterPageTargets;
+ std::vector< Reference< XDrawPage > > mMasterPageTargets;
Link<EditFieldInfo*,void> maOldFieldHdl;
Link<EditFieldInfo*,void> maNewFieldHdl;
@@ -263,7 +263,7 @@ private:
bool implExportDocument();
bool implExportAnimations();
- bool implExportMasterPages( const XDrawPageSequence& rxPages,
+ bool implExportMasterPages( const std::vector< Reference< XDrawPage > >& rxPages,
sal_Int32 nFirstPage, sal_Int32 nLastPage );
bool implExportDrawPages( const XDrawPageSequence& rxPages,
sal_Int32 nFirstPage, sal_Int32 nLastPage );