summaryrefslogtreecommitdiff
path: root/xmlscript/source/xml_helper/xml_byteseq.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlscript/source/xml_helper/xml_byteseq.cxx')
-rw-r--r--xmlscript/source/xml_helper/xml_byteseq.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlscript/source/xml_helper/xml_byteseq.cxx b/xmlscript/source/xml_helper/xml_byteseq.cxx
index 7948e1cf0d87..5291dfbd5187 100644
--- a/xmlscript/source/xml_helper/xml_byteseq.cxx
+++ b/xmlscript/source/xml_helper/xml_byteseq.cxx
@@ -122,12 +122,12 @@ void BSeqOutputStream::closeOutput()
{
}
-Reference< io::XInputStream > SAL_CALL createInputStream( std::vector<sal_Int8> const & rInData )
+Reference< io::XInputStream > createInputStream( std::vector<sal_Int8> const & rInData )
{
return new BSeqInputStream( rInData );
}
-Reference< io::XInputStream > SAL_CALL createInputStream( const sal_Int8* pData, int len )
+Reference< io::XInputStream > createInputStream( const sal_Int8* pData, int len )
{
std::vector<sal_Int8> rInData(len);
if (len != 0) {
@@ -136,7 +136,7 @@ Reference< io::XInputStream > SAL_CALL createInputStream( const sal_Int8* pData,
return new BSeqInputStream( rInData );
}
-Reference< io::XOutputStream > SAL_CALL createOutputStream( std::vector<sal_Int8> * pOutData )
+Reference< io::XOutputStream > createOutputStream( std::vector<sal_Int8> * pOutData )
{
return new BSeqOutputStream( pOutData );
}