summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpproplist.hxx
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/lwpproplist.hxx
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/lwpproplist.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpproplist.hxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/lotuswordpro/source/filter/lwpproplist.hxx b/lotuswordpro/source/filter/lwpproplist.hxx
index f9f9e4ee14f3..f0ae21451df9 100644
--- a/lotuswordpro/source/filter/lwpproplist.hxx
+++ b/lotuswordpro/source/filter/lwpproplist.hxx
@@ -67,12 +67,13 @@
class LwpPropListElement : public LwpDLVList
{
public:
- LwpPropListElement(LwpObjectHeader const &objHdr, LwpSvStream *pStrm);
+ LwpPropListElement(LwpObjectHeader const& objHdr, LwpSvStream* pStrm);
void Read() override;
bool IsNamed(const OUString& name);
LwpPropListElement* GetNext();
- const LwpAtomHolder& GetValue() const {return m_Value;}
- const LwpAtomHolder& GetName() const {return m_Name;}
+ const LwpAtomHolder& GetValue() const { return m_Value; }
+ const LwpAtomHolder& GetName() const { return m_Name; }
+
private:
virtual ~LwpPropListElement() override {}
@@ -83,11 +84,12 @@ private:
class LwpPropList : public LwpDLVListHead
{
public:
- LwpPropList(){}
+ LwpPropList() {}
using LwpDLVListHead::Read;
LwpPropListElement* GetFirst();
OUString GetNamedProperty(const OUString& name);
- OUString EnumNamedProperty(OUString& name,OUString& value);
+ OUString EnumNamedProperty(OUString& name, OUString& value);
+
private:
LwpPropListElement* FindPropByName(const OUString& name);
};