summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/inc/xfilter/xflinebreak.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/inc/xfilter/xflinebreak.hxx')
-rw-r--r--lotuswordpro/inc/xfilter/xflinebreak.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/lotuswordpro/inc/xfilter/xflinebreak.hxx b/lotuswordpro/inc/xfilter/xflinebreak.hxx
index a5fc5054bd31..b2c6412982cb 100644
--- a/lotuswordpro/inc/xfilter/xflinebreak.hxx
+++ b/lotuswordpro/inc/xfilter/xflinebreak.hxx
@@ -66,16 +66,16 @@
class XFLineBreak : public XFContent
{
public:
- virtual void ToXml(IXFStream *pStrm) override;
+ virtual void ToXml(IXFStream* pStrm) override;
};
-inline void XFLineBreak::ToXml(IXFStream *pStrm)
+inline void XFLineBreak::ToXml(IXFStream* pStrm)
{
- IXFAttrList *pAttrList = pStrm->GetAttrList();
+ IXFAttrList* pAttrList = pStrm->GetAttrList();
pAttrList->Clear();
- pStrm->StartElement( "text:line-break" );
- pStrm->EndElement( "text:line-break" );
+ pStrm->StartElement("text:line-break");
+ pStrm->EndElement("text:line-break");
}
#endif