summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/inc/xfilter/xffontdecl.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/xffontdecl.hxx
parenttdf#123936 Formatting files in module sc with clang-format (diff)
downloadcore-69b12a6eb3616d15035310eeb0c3dbc7aefcb5c1.tar.gz
core-69b12a6eb3616d15035310eeb0c3dbc7aefcb5c1.zip
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/xffontdecl.hxx')
-rw-r--r--lotuswordpro/inc/xfilter/xffontdecl.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/lotuswordpro/inc/xfilter/xffontdecl.hxx b/lotuswordpro/inc/xfilter/xffontdecl.hxx
index 18845f50ad2b..ee8e3c5e7fdb 100644
--- a/lotuswordpro/inc/xfilter/xffontdecl.hxx
+++ b/lotuswordpro/inc/xfilter/xffontdecl.hxx
@@ -68,7 +68,7 @@
* Font declaration in OOo xml file.
* Each font used should be declared.
*/
-class XFFontDecl
+class XFFontDecl
{
public:
XFFontDecl(const OUString& name, const OUString& family);
@@ -77,16 +77,16 @@ public:
/**
* @descr Get font name.
*/
- const OUString& GetFontName() const { return m_strFontName;}
+ const OUString& GetFontName() const { return m_strFontName; }
/**
* @descr Get font family.
*/
- const OUString& GetFontFamily() const { return m_strFontFamily;}
+ const OUString& GetFontFamily() const { return m_strFontFamily; }
private:
- OUString m_strFontName;
- OUString m_strFontFamily;
+ OUString m_strFontName;
+ OUString m_strFontFamily;
};
#endif