diff options
Diffstat (limited to 'include/svx/flagsdef.hxx')
-rw-r--r-- | include/svx/flagsdef.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/flagsdef.hxx b/include/svx/flagsdef.hxx index 30b1ff401203..1b09540e7198 100644 --- a/include/svx/flagsdef.hxx +++ b/include/svx/flagsdef.hxx @@ -53,13 +53,13 @@ namespace o3tl // flags for SvxBorderTabPage #define SVX_HIDESHADOWCTL 0x01 -#define DISABLE_CASEMAP ((sal_uInt16)0x0001) -#define DISABLE_WORDLINE ((sal_uInt16)0x0002) -#define DISABLE_BLINK ((sal_uInt16)0x0004) -#define DISABLE_UNDERLINE_COLOR ((sal_uInt16)0x0008) +#define DISABLE_CASEMAP (sal_uInt16(0x0001)) +#define DISABLE_WORDLINE (sal_uInt16(0x0002)) +#define DISABLE_BLINK (sal_uInt16(0x0004)) +#define DISABLE_UNDERLINE_COLOR (sal_uInt16(0x0008)) -#define DISABLE_LANGUAGE ((sal_uInt16)0x0010) -#define DISABLE_HIDE_LANGUAGE ((sal_uInt16)0x0020) +#define DISABLE_LANGUAGE (sal_uInt16(0x0010)) +#define DISABLE_HIDE_LANGUAGE (sal_uInt16(0x0020)) // flags for SvxCharBasePage's child class #define SVX_PREVIEW_CHARACTER 0x01 |