summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-03-03 01:01:23 +0100
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-03-03 01:02:57 +0100
commit20b8944cd4771f75564277a5144e96b7d9c3d616 (patch)
tree52f2630d25d202ed124ae9d17e0dadbb3d0566d0 /filter
parent9705fbc1119da91e73c00a2ec848565929eeb483 (diff)
Remove SAL_CALL from isStreamSvg & isStreamGZip
Change-Id: Iec2954634cba674715029484917487ab1dac6439
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgfilter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/svg/svgfilter.cxx b/filter/source/svg/svgfilter.cxx
index e94ba85ba106..e0e698a4b519 100644
--- a/filter/source/svg/svgfilter.cxx
+++ b/filter/source/svg/svgfilter.cxx
@@ -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())