From fc037d38c98071e94760e348ab9f4723906b72b5 Mon Sep 17 00:00:00 2001 From: Daniel Vogelheim Date: Thu, 2 Nov 2000 14:51:18 +0000 Subject: - added: sections now completed (attribute text:protected moved into - added: table of content im- and export (TOC body does not work) - added: URL textfield (for Calc, Draw, ...) - fixed: tab-stop constant names in xmlkywd.hxx - fixed: import of zero columns - fixed: text hyperlinks now in DTD --- xmloff/source/style/xmltabe.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'xmloff/source/style/xmltabe.cxx') diff --git a/xmloff/source/style/xmltabe.cxx b/xmloff/source/style/xmltabe.cxx index 1de5287c8a34..9031812aaddd 100644 --- a/xmloff/source/style/xmltabe.cxx +++ b/xmloff/source/style/xmltabe.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xmltabe.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:07:06 $ + * last change: $Author: dvo $ $Date: 2000-11-02 15:51:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -117,7 +117,7 @@ void SvxXMLTabStopExport::exportTabStop( const ::com::sun::star::style::TabStop* // position attribute mrUnitConv.convertMeasure( sBuffer, pTabStop->Position ); - AddAttribute( XML_NAMESPACE_STYLE, sXML_tabstop_position, + AddAttribute( XML_NAMESPACE_STYLE, sXML_position, sBuffer.makeStringAndClear() ); // type attribute @@ -125,7 +125,7 @@ void SvxXMLTabStopExport::exportTabStop( const ::com::sun::star::style::TabStop* { mrUnitConv.convertEnum( sBuffer, pTabStop->Alignment, psXML_tabstop_style ); - AddAttribute( XML_NAMESPACE_STYLE, sXML_tabstop_type, + AddAttribute( XML_NAMESPACE_STYLE, sXML_type, sBuffer.makeStringAndClear() ); } @@ -133,7 +133,7 @@ void SvxXMLTabStopExport::exportTabStop( const ::com::sun::star::style::TabStop* if( style::TabAlign_DECIMAL == pTabStop->Alignment ) { sBuffer.append( pTabStop->DecimalChar ); - AddAttribute( XML_NAMESPACE_STYLE, sXML_tabstop_char, + AddAttribute( XML_NAMESPACE_STYLE, sXML_char, sBuffer.makeStringAndClear() ); } @@ -141,11 +141,11 @@ void SvxXMLTabStopExport::exportTabStop( const ::com::sun::star::style::TabStop* if( ' ' != pTabStop->FillChar ) { sBuffer.append( pTabStop->FillChar ); - AddAttribute( XML_NAMESPACE_STYLE, sXML_tabstop_leader, + AddAttribute( XML_NAMESPACE_STYLE, sXML_leader_char, sBuffer.makeStringAndClear() ); } - OUString sElem = GetQNameByKey( XML_NAMESPACE_STYLE, OUString::createFromAscii(sXML_tabstop_tab_stop) ); + OUString sElem = GetQNameByKey( XML_NAMESPACE_STYLE, OUString::createFromAscii(sXML_tab_stop) ); mxHandler->ignorableWhitespace( msWS ); mxHandler->startElement( sElem, mxAttrList ); ClearAttrList(); @@ -225,7 +225,7 @@ void SvxXMLTabStopExport::Export( const uno::Any& rAny, return; OUString sElem = GetQNameByKey( XML_NAMESPACE_STYLE, - OUString::createFromAscii(sXML_tabstop_tab_stops) ); + OUString::createFromAscii(sXML_tab_stops) ); mxHandler->ignorableWhitespace( msWS ); mxHandler->startElement( sElem, mxAttrList ); ClearAttrList(); -- cgit v1.2.3