summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpcharacterstyle.cxx
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:07:21 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-19 01:37:21 +0100
commit69b12a6eb3616d15035310eeb0c3dbc7aefcb5c1 (patch)
tree85fa3dd6e742033dc0b5a04b45a1e035a4c93cbd /lotuswordpro/source/filter/lwpcharacterstyle.cxx
parent6ceb1d0f2e23749fe03fab08ec338ba4d7782173 (diff)
tdf#123936 Formatting files in module lotuswordpro with clang-format
Change-Id: I3110b452b6c81fb7e5c10f6ba98ce521c51c0427 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105690 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> Tested-by: Jenkins
Diffstat (limited to 'lotuswordpro/source/filter/lwpcharacterstyle.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpcharacterstyle.cxx28
1 files changed, 12 insertions, 16 deletions
diff --git a/lotuswordpro/source/filter/lwpcharacterstyle.cxx b/lotuswordpro/source/filter/lwpcharacterstyle.cxx
index eb94bb0c1840..9ed15cdd6633 100644
--- a/lotuswordpro/source/filter/lwpcharacterstyle.cxx
+++ b/lotuswordpro/source/filter/lwpcharacterstyle.cxx
@@ -68,12 +68,15 @@
#include <xfilter/xffont.hxx>
#include <xfilter/xftextstyle.hxx>
-
/*class LwpTextStyle*/
-LwpTextStyle::LwpTextStyle(LwpObjectHeader const & objHdr, LwpSvStream* pStrm)
- : LwpDLNFPVList(objHdr, pStrm),
- m_nFontID(0), m_nFinalFontID(0), m_nCSFlags(0), m_nUseCount(0),
- m_nStyleDefinition(0), m_nKey(0)
+LwpTextStyle::LwpTextStyle(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpDLNFPVList(objHdr, pStrm)
+ , m_nFontID(0)
+ , m_nFinalFontID(0)
+ , m_nCSFlags(0)
+ , m_nUseCount(0)
+ , m_nStyleDefinition(0)
+ , m_nKey(0)
{
}
@@ -83,9 +86,7 @@ void LwpTextStyle::Read()
ReadCommon();
}
-LwpTextStyle::~LwpTextStyle()
-{
-}
+LwpTextStyle::~LwpTextStyle() {}
void LwpTextStyle::ReadCommon()
{
@@ -133,7 +134,6 @@ void LwpTextStyle::ReadCommon()
m_pObjStrm->SkipExtra();
}
}
-
}
void LwpTextStyle::RegisterStyle()
@@ -160,18 +160,14 @@ void LwpTextStyle::RegisterStyle()
//Add style
LwpStyleManager* pStyleMgr = m_pFoundry->GetStyleManager();
pStyleMgr->AddStyle(GetObjectID(), std::move(pStyle));
-
}
/*class LwpCharacterStyle*/
-LwpCharacterStyle::LwpCharacterStyle(LwpObjectHeader const & objHdr, LwpSvStream* pStrm) :
-LwpTextStyle(objHdr, pStrm)
+LwpCharacterStyle::LwpCharacterStyle(LwpObjectHeader const& objHdr, LwpSvStream* pStrm)
+ : LwpTextStyle(objHdr, pStrm)
{
}
-void LwpCharacterStyle::Read()
-{
- LwpTextStyle::Read();
-}
+void LwpCharacterStyle::Read() { LwpTextStyle::Read(); }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */