diff options
author | Nima Mahanloo <nima.mahanloo@yahoo.com> | 2024-04-16 22:43:42 -0700 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-04-30 08:39:15 +0200 |
commit | d04b6c775d8b304aa09e62f766bd74a83f8e3794 (patch) | |
tree | 8e4481ef6a06a1076a93cecd21b33036b56febd7 /lotuswordpro/inc | |
parent | 735ea444f2c15771736260fc78704f6b9132ceac (diff) |
tdf#145614 Convert #define to enum
Change-Id: I0a360a93775d2c46b7e02009879d7a18315497b1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/166168
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Tested-by: Jenkins
Diffstat (limited to 'lotuswordpro/inc')
-rw-r--r-- | lotuswordpro/inc/xfilter/xfparastyle.hxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lotuswordpro/inc/xfilter/xfparastyle.hxx b/lotuswordpro/inc/xfilter/xfparastyle.hxx index 1a12c2f4c9c4..ac16d3ba1f0b 100644 --- a/lotuswordpro/inc/xfilter/xfparastyle.hxx +++ b/lotuswordpro/inc/xfilter/xfparastyle.hxx @@ -78,9 +78,11 @@ #include <xfilter/xflineheight.hxx> #include <memory> -#define XFPARA_FLAG_FONT 0X00000001 -#define XFPARA_FLAG_DROPCAP 0X00000002 -#define XFPARA_FLAG_BACKCOLOR 0X00000004 +enum XFParaFlags { + XFPARA_FLAG_FONT = 0X00000001, + XFPARA_FLAG_DROPCAP = 0X00000002, + XFPARA_FLAG_BACKCOLOR = 0X00000004 +}; class XFBorders; class XFBGImage; |