summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-08-04 14:28:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-08-04 17:29:10 +0200
commitf9f88e2c4fbd33bbe60a8df34bfd1cffaf5ee6df (patch)
tree7e85eaa311dc36b00b8466a4a0ecf3184872b68a /filter
parent-Werror,-Wunused-function (clang-cl) (diff)
downloadcore-f9f88e2c4fbd33bbe60a8df34bfd1cffaf5ee6df.tar.gz
core-f9f88e2c4fbd33bbe60a8df34bfd1cffaf5ee6df.zip
loplugin:referencecasting (clang-cl)
("the source reference is already a subtype of the destination reference") Change-Id: I1183eaa2015bd9d6567001bb14f7809dffcae7ba Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100088 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgexport.cxx15
1 files changed, 5 insertions, 10 deletions
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index 76ad8c3b2ca2..f28d9811cf64 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -1593,16 +1593,11 @@ bool SVGFilter::implExportMasterPages( const std::vector< Reference< css::drawin
{
if( rxPages[i].is() )
{
- Reference< css::drawing::XShapes > xShapes( rxPages[i], UNO_QUERY );
+ // add id attribute
+ const OUString & sPageId = implGetValidIDFromInterface( rxPages[i] );
+ mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "id", sPageId );
- if( xShapes.is() )
- {
- // add id attribute
- const OUString & sPageId = implGetValidIDFromInterface( rxPages[i] );
- mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "id", sPageId );
-
- bRet = implExportPage( sPageId, rxPages[i], xShapes, true /* is a master page */ ) || bRet;
- }
+ bRet = implExportPage( sPageId, rxPages[i], rxPages[i], true /* is a master page */ ) || bRet;
}
}
return bRet;
@@ -1654,7 +1649,7 @@ void SVGFilter::implExportDrawPages( const std::vector< Reference< css::drawing:
}
else
{
- xShapes.set( rxPages[i], UNO_QUERY );
+ xShapes = rxPages[i];
}
if( xShapes.is() )