summaryrefslogtreecommitdiff
path: root/lotuswordpro/inc/xfilter/xfentry.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/inc/xfilter/xfentry.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/inc/xfilter/xfentry.hxx')
-rw-r--r--lotuswordpro/inc/xfilter/xfentry.hxx37
1 files changed, 14 insertions, 23 deletions
diff --git a/lotuswordpro/inc/xfilter/xfentry.hxx b/lotuswordpro/inc/xfilter/xfentry.hxx
index 6f7f974306c7..cf465adea932 100644
--- a/lotuswordpro/inc/xfilter/xfentry.hxx
+++ b/lotuswordpro/inc/xfilter/xfentry.hxx
@@ -75,43 +75,37 @@ public:
/**
* @descr Set entry type.
*/
- void SetEntryType(enumXFEntry type);
+ void SetEntryType(enumXFEntry type);
/**
* @descr Set entry string value.
*/
- void SetStringValue(const OUString& value);
+ void SetStringValue(const OUString& value);
/**
* @descr Set entry key. The keys is available only for enumXFEntryAlphabetical.
*/
- void SetKey(const OUString& key1, const OUString& key2);
+ void SetKey(const OUString& key1, const OUString& key2);
/**
* @descr Set outline level. This is available for enumXFEntryTOC and enumXFEntryUserIndex.
*/
- void SetOutlineLevel(sal_Int32 level);
+ void SetOutlineLevel(sal_Int32 level);
- virtual void ToXml(IXFStream *pStrm) override;
+ virtual void ToXml(IXFStream* pStrm) override;
private:
- enumXFEntry m_eType;
- OUString m_strValue;
- OUString m_strKey1;
- OUString m_strKey2;
- OUString m_strName;
- sal_Int32 m_nOutlineLevel;
+ enumXFEntry m_eType;
+ OUString m_strValue;
+ OUString m_strKey1;
+ OUString m_strKey2;
+ OUString m_strName;
+ sal_Int32 m_nOutlineLevel;
};
-inline void XFEntry::SetEntryType(enumXFEntry type)
-{
- m_eType = type;
-}
+inline void XFEntry::SetEntryType(enumXFEntry type) { m_eType = type; }
-inline void XFEntry::SetStringValue(const OUString& value)
-{
- m_strValue = value;
-}
+inline void XFEntry::SetStringValue(const OUString& value) { m_strValue = value; }
inline void XFEntry::SetKey(const OUString& key1, const OUString& key2)
{
@@ -119,10 +113,7 @@ inline void XFEntry::SetKey(const OUString& key1, const OUString& key2)
m_strKey2 = key2;
}
-inline void XFEntry::SetOutlineLevel(sal_Int32 level)
-{
- m_nOutlineLevel = level;
-}
+inline void XFEntry::SetOutlineLevel(sal_Int32 level) { m_nOutlineLevel = level; }
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */