summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-04-03 22:25:19 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-05 06:25:39 +0000
commitdb43ef00c12bc0f7fefd6d028c9a2ed8f771cd47 (patch)
tree62f08a44e99513251324f8972d257d8fd3be2b2c /include
parente72c80c01629798a93948d4419f109ac324de4ef (diff)
sequence->vector in xmlscript
Change-Id: I4f99cd9dc659f54bd4818559dd3e0dbce1e8f5d4 Reviewed-on: https://gerrit.libreoffice.org/23795 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/xmlscript/xml_helper.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/xmlscript/xml_helper.hxx b/include/xmlscript/xml_helper.hxx
index c66c592d4976..22066affb016 100644
--- a/include/xmlscript/xml_helper.hxx
+++ b/include/xmlscript/xml_helper.hxx
@@ -112,11 +112,15 @@ protected:
XMLSCRIPT_DLLPUBLIC css::uno::Reference< css::io::XInputStream >
SAL_CALL createInputStream(
- ::rtl::ByteSequence const & rInData );
+ std::vector<sal_Int8> const & rInData );
+
+XMLSCRIPT_DLLPUBLIC css::uno::Reference< css::io::XInputStream >
+SAL_CALL createInputStream(
+ const sal_Int8* pData, int len );
XMLSCRIPT_DLLPUBLIC css::uno::Reference< css::io::XOutputStream >
SAL_CALL createOutputStream(
- ::rtl::ByteSequence * pOutData );
+ std::vector<sal_Int8> * pOutData );
}