summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/inc/xfilter/xffooter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/inc/xfilter/xffooter.hxx')
-rw-r--r--lotuswordpro/inc/xfilter/xffooter.hxx12
1 files changed, 5 insertions, 7 deletions
diff --git a/lotuswordpro/inc/xfilter/xffooter.hxx b/lotuswordpro/inc/xfilter/xffooter.hxx
index 30deea07aa4c..cefca8263268 100644
--- a/lotuswordpro/inc/xfilter/xffooter.hxx
+++ b/lotuswordpro/inc/xfilter/xffooter.hxx
@@ -70,16 +70,14 @@
class XFFooter : public XFContentContainer
{
public:
- XFFooter()
+ XFFooter() {}
+ virtual void ToXml(IXFStream* pStrm) override
{
- }
- virtual void ToXml(IXFStream *pStrm) override
- {
- IXFAttrList *pAttrList = pStrm->GetAttrList();
+ IXFAttrList* pAttrList = pStrm->GetAttrList();
pAttrList->Clear();
- pStrm->StartElement( "style:footer" );
+ pStrm->StartElement("style:footer");
XFContentContainer::ToXml(pStrm);
- pStrm->EndElement( "style:footer" );
+ pStrm->EndElement("style:footer");
}
};