summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLTextColumnsExport.cxx
diff options
context:
space:
mode:
authorMichael Brauer <mib@openoffice.org>2000-09-21 13:07:40 +0000
committerMichael Brauer <mib@openoffice.org>2000-09-21 13:07:40 +0000
commit5ad091553b0ea188f1f31883d315d249f4eb81f4 (patch)
tree06aaef33e33302608ed1003fe22f7c98cc849283 /xmloff/source/text/XMLTextColumnsExport.cxx
parentc944a01469731e0586401d9bd978dc3cae6ccc1f (diff)
fo:column-count added
Diffstat (limited to 'xmloff/source/text/XMLTextColumnsExport.cxx')
-rw-r--r--xmloff/source/text/XMLTextColumnsExport.cxx16
1 files changed, 10 insertions, 6 deletions
diff --git a/xmloff/source/text/XMLTextColumnsExport.cxx b/xmloff/source/text/XMLTextColumnsExport.cxx
index b22c4581149f..3eab434158dc 100644
--- a/xmloff/source/text/XMLTextColumnsExport.cxx
+++ b/xmloff/source/text/XMLTextColumnsExport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLTextColumnsExport.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:07:06 $
+ * last change: $Author: mib $ $Date: 2000-09-21 14:07:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -105,8 +105,6 @@ XMLTextColumnsExport::XMLTextColumnsExport( SvXMLExport& rExp ) :
void XMLTextColumnsExport::exportXML( const Any& rAny )
{
- SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_TEXT, sXML_columns,
- sal_True, sal_True );
Reference < XTextColumns > xColumns;
rAny >>= xColumns;
@@ -115,13 +113,19 @@ void XMLTextColumnsExport::exportXML( const Any& rAny )
sal_Int32 nCount = aColumns.getLength();
OUStringBuffer sValue;
+ GetExport().GetMM100UnitConverter().convertNumber( sValue, nCount );
+ GetExport().AddAttribute( XML_NAMESPACE_FO, sXML_column_count,
+ sValue.makeStringAndClear() );
+ SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, sXML_columns,
+ sal_True, sal_True );
+
while( nCount-- )
{
// style:rel-width
GetExport().GetMM100UnitConverter().convertNumber( sValue,
pColumns->Width );
sValue.append( (sal_Unicode)'*' );
- GetExport().AddAttribute( XML_NAMESPACE_FO, sXML_rel_width,
+ GetExport().AddAttribute( XML_NAMESPACE_STYLE, sXML_rel_width,
sValue.makeStringAndClear() );
// fo:margin-left
@@ -137,7 +141,7 @@ void XMLTextColumnsExport::exportXML( const Any& rAny )
sValue.makeStringAndClear() );
// style:column
- SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_TEXT, sXML_column,
+ SvXMLElementExport aElem( GetExport(), XML_NAMESPACE_STYLE, sXML_column,
sal_True, sal_True );
pColumns++;
}