summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml/xmltexte.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-07-13 15:28:03 +0200
committerMichael Stahl <mstahl@redhat.com>2012-07-17 15:33:37 +0200
commit7bef4fe2e22642d552cf3f431d6ee3ba456b9101 (patch)
tree03c5e8632fdcb5b8a53962c6dbb803cf4c3b02b7 /sw/source/filter/xml/xmltexte.cxx
parent22faf8438f01d67fe3381aa353e5187f36ce4098 (diff)
Convert SV_DECL_PTRARR_DEL( SwFmtCollConditions) to boost::ptr_vector
Change-Id: I45c66246de9d5608b630ceeb11535faf28f9c073
Diffstat (limited to 'sw/source/filter/xml/xmltexte.cxx')
-rw-r--r--sw/source/filter/xml/xmltexte.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/xml/xmltexte.cxx b/sw/source/filter/xml/xmltexte.cxx
index 5c8994411c8f..5098c0b2f919 100644
--- a/sw/source/filter/xml/xmltexte.cxx
+++ b/sw/source/filter/xml/xmltexte.cxx
@@ -115,9 +115,9 @@ void SwXMLTextParagraphExport::exportStyleContent(
{
const SwFmtCollConditions& rConditions =
((const SwConditionTxtFmtColl *)pColl)->GetCondColls();
- for( sal_uInt16 i=0; i < rConditions.Count(); i++ )
+ for( sal_uInt16 i=0; i < rConditions.size(); i++ )
{
- const SwCollCondition& rCond = *rConditions[i];
+ const SwCollCondition& rCond = rConditions[i];
enum XMLTokenEnum eFunc = XML_TOKEN_INVALID;
OUStringBuffer sBuffer( 20 );