Kaydet (Commit) 20b8944c authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl

Remove SAL_CALL from isStreamSvg & isStreamGZip

Change-Id: Iec2954634cba674715029484917487ab1dac6439
üst 9705fbc1
......@@ -259,7 +259,7 @@ void SAL_CALL SVGFilter::setTargetDocument( const Reference< XComponent >& xDoc
mxDstDoc = xDoc;
}
bool SAL_CALL SVGFilter::isStreamGZip(uno::Reference<io::XInputStream> xInput)
bool SVGFilter::isStreamGZip(uno::Reference<io::XInputStream> xInput)
{
uno::Reference<io::XSeekable> xSeek(xInput, uno::UNO_QUERY);
if(xSeek.is())
......@@ -276,7 +276,7 @@ bool SAL_CALL SVGFilter::isStreamGZip(uno::Reference<io::XInputStream> xInput)
return false;
}
bool SAL_CALL SVGFilter::isStreamSvg(uno::Reference<io::XInputStream> xInput)
bool SVGFilter::isStreamSvg(uno::Reference<io::XInputStream> xInput)
{
uno::Reference<io::XSeekable> xSeek(xInput, uno::UNO_QUERY);
if(xSeek.is())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment