summaryrefslogtreecommitdiff
path: root/xmloff/source/text/txtsecte.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-13 08:21:53 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-13 08:21:53 +0000
commit76313bfe32acdb172ee474206312bc0ae1653ac5 (patch)
tree21ee6264111f4750428422a5d22d5d20f879e476 /xmloff/source/text/txtsecte.cxx
parent953f69cebeb92db9fc13c30bc365793e423d530f (diff)
INTEGRATION: CWS swlists01 (1.17.138); FILE MERGED
2008/05/08 16:13:39 od 1.17.138.2: RESYNC: (1.17-1.18); FILE MERGED 2008/05/08 14:50:52 od 1.17.138.1: #i86732# improve variable names
Diffstat (limited to 'xmloff/source/text/txtsecte.cxx')
-rw-r--r--xmloff/source/text/txtsecte.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/text/txtsecte.cxx b/xmloff/source/text/txtsecte.cxx
index 4e062d31f157..bd05aa4ba2ac 100644
--- a/xmloff/source/text/txtsecte.cxx
+++ b/xmloff/source/text/txtsecte.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: txtsecte.cxx,v $
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
* This file is part of OpenOffice.org.
*
@@ -160,13 +160,13 @@ void XMLTextParagraphExport::exportListAndSectionChange(
// a new section started, or an old one gets closed!
// close old list
- XMLTextNumRuleInfo aEmptyNumRule;
+ XMLTextNumRuleInfo aEmptyNumRuleInfo;
if ( !bAutoStyles )
- exportListChange(rPrevRule, aEmptyNumRule);
+ exportListChange(rPrevRule, aEmptyNumRuleInfo);
// Build stacks of old and new sections
// Sections on top of mute sections should not be on the stack
- vector<Reference<XTextSection> > aOldStack;
+ vector< Reference<XTextSection> > aOldStack;
Reference<XTextSection> aCurrent(rPrevSection);
while(aCurrent.is())
{
@@ -179,7 +179,7 @@ void XMLTextParagraphExport::exportListAndSectionChange(
aCurrent.set(aCurrent->getParentSection());
}
- vector<Reference<XTextSection> > aNewStack;
+ vector< Reference<XTextSection> > aNewStack;
aCurrent.set(rNextSection);
sal_Bool bMute = sal_False;
while(aCurrent.is())
@@ -246,7 +246,7 @@ void XMLTextParagraphExport::exportListAndSectionChange(
// start new list
if ( !bAutoStyles && !bMute )
- exportListChange(aEmptyNumRule, rNextRule);
+ exportListChange(aEmptyNumRuleInfo, rNextRule);
}
else
{