summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfsection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfsection.cxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfsection.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfsection.cxx b/lotuswordpro/source/filter/xfilter/xfsection.cxx
index 3f422a10dee1..eeff45ad3407 100644
--- a/lotuswordpro/source/filter/xfilter/xfsection.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfsection.cxx
@@ -103,31 +103,4 @@ void XFSection::ToXml(IXFStream *pStrm)
pStrm->EndElement( A2OUSTR("text:section") );
}
-/*
-void XFSection::ToXmlHeader(IXFStream *pStrm)
-{
- assert(m_strSectionName.getLength() > 0 );
-
- IXFAttrList *pAttrList = pStrm->GetAttrList();
-
- pAttrList->Clear();
- rtl::OUString style = GetStyleName();
- if( style.getLength() )
- pAttrList->AddAttribute( A2OUSTR("text:style-name"), style);
- //section name
- if( m_strSectionName.getLength() )
- pAttrList->AddAttribute( A2OUSTR("text:name"), m_strSectionName);
- if( m_bProtected )
- pAttrList->AddAttribute( A2OUSTR("text:protected"), A2OUSTR("true") );
- if( m_bHiden )
- pAttrList->AddAttribute( A2OUSTR("text:display"), A2OUSTR("none") );
-
- pStrm->StartElement( A2OUSTR("text:section") );
-}
-
-void XFSection::ToXmlTail(IXFStream *pStrm)
-{
- pStrm->EndElement( A2OUSTR("text:section") );
-}
-*/
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */