summaryrefslogtreecommitdiff
path: root/xmloff/source/style/XMLFootnoteSeparatorImport.cxx
diff options
context:
space:
mode:
authorDaniel Vogelheim <dvo@openoffice.org>2001-03-01 13:09:06 +0000
committerDaniel Vogelheim <dvo@openoffice.org>2001-03-01 13:09:06 +0000
commit88a547bfd3b500f9ec4cc70fd82994392cc1a4d4 (patch)
tree9a4a374535ada0bdd0ccb3d986106895798efc31 /xmloff/source/style/XMLFootnoteSeparatorImport.cxx
parent991aca701bc89cc90d4d7f8396573966517ce262 (diff)
- fixed #84481# #84484# : properties for footnote line separator are now sorted
Diffstat (limited to 'xmloff/source/style/XMLFootnoteSeparatorImport.cxx')
-rw-r--r--xmloff/source/style/XMLFootnoteSeparatorImport.cxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/xmloff/source/style/XMLFootnoteSeparatorImport.cxx b/xmloff/source/style/XMLFootnoteSeparatorImport.cxx
index a903f06f83..05301b5a11 100644
--- a/xmloff/source/style/XMLFootnoteSeparatorImport.cxx
+++ b/xmloff/source/style/XMLFootnoteSeparatorImport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLFootnoteSeparatorImport.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: dvo $ $Date: 2001-02-21 19:28:48 $
+ * last change: $Author: dvo $ $Date: 2001-03-01 14:09:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -228,27 +228,27 @@ void XMLFootnoteSeparatorImport::StartElement(
// OK, now we have all values and can fill the XMLPropertyState vector
Any aAny;
- aAny <<= nLineWeight;
- XMLPropertyState aLineWeight( nPropIndex-5, aAny );
- rProperties.push_back(aLineWeight);
-
+ aAny <<= eLineAdjust;
+ XMLPropertyState aLineAdjust( nPropIndex-5, aAny);
+ rProperties.push_back(aLineAdjust);
+
aAny <<= nLineColor;
XMLPropertyState aLineColor( nPropIndex-4, aAny );
rProperties.push_back(aLineColor);
+ aAny <<= nLineDistance;
+ XMLPropertyState aLineDistance( nPropIndex-3, aAny );
+ rProperties.push_back(aLineDistance);
+
aAny <<= nLineRelWidth;
- XMLPropertyState aLineRelWidth( nPropIndex-3, aAny);
+ XMLPropertyState aLineRelWidth( nPropIndex-2, aAny);
rProperties.push_back(aLineRelWidth);
- aAny <<= eLineAdjust;
- XMLPropertyState aLineAdjust( nPropIndex-2, aAny);
- rProperties.push_back(aLineAdjust);
-
aAny <<= nLineTextDistance;
XMLPropertyState aLineTextDistance( nPropIndex-1, aAny);
rProperties.push_back(aLineTextDistance);
- aAny <<= nLineDistance;
- XMLPropertyState aLineDistance( nPropIndex, aAny );
- rProperties.push_back(aLineDistance);
+ aAny <<= nLineWeight;
+ XMLPropertyState aLineWeight( nPropIndex, aAny );
+ rProperties.push_back(aLineWeight);
}