summaryrefslogtreecommitdiff
path: root/xmloff/source/style/styleexp.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-27 09:22:13 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-28 09:31:16 +0000
commit43b4903db3e925c652e25c34362490f8adc9c5ec (patch)
treeaf12777b72d42280467e8cc19b914b2c7f4f3816 /xmloff/source/style/styleexp.cxx
parent7d6308dad9f4a079d57719a6e3a9c4cebb47d051 (diff)
teach stylepolice plugin about ref-counted-pointer naming
Change-Id: I6e91d22fc1826038c05ddb6fc065563c6a250752 Reviewed-on: https://gerrit.libreoffice.org/24459 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmloff/source/style/styleexp.cxx')
-rw-r--r--xmloff/source/style/styleexp.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/style/styleexp.cxx b/xmloff/source/style/styleexp.cxx
index 0625ce210eb8..f96e1c78f188 100644
--- a/xmloff/source/style/styleexp.cxx
+++ b/xmloff/source/style/styleexp.cxx
@@ -314,14 +314,14 @@ bool XMLStyleExport::exportStyle(
rPropMapper->SetStyleName( sName );
// <style:properties>
- ::std::vector< XMLPropertyState > xPropStates =
+ ::std::vector< XMLPropertyState > aPropStates =
rPropMapper->Filter( xPropSet, true );
bool const bUseExtensionNamespaceForGraphicProperties(
rXMLFamily != "drawing-page" &&
rXMLFamily != "graphic" &&
rXMLFamily != "presentation" &&
rXMLFamily != "chart");
- rPropMapper->exportXML( GetExport(), xPropStates,
+ rPropMapper->exportXML( GetExport(), aPropStates,
SvXmlExportFlags::IGN_WS,
bUseExtensionNamespaceForGraphicProperties );
@@ -357,9 +357,9 @@ bool XMLStyleExport::exportDefaultStyle(
XML_DEFAULT_STYLE,
true, true );
// <style:properties>
- ::std::vector< XMLPropertyState > xPropStates =
+ ::std::vector< XMLPropertyState > aPropStates =
rPropMapper->FilterDefaults( xPropSet );
- rPropMapper->exportXML( GetExport(), xPropStates,
+ rPropMapper->exportXML( GetExport(), aPropStates,
SvXmlExportFlags::IGN_WS );
}
return true;