diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2018-02-08 14:41:51 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2018-02-08 21:13:25 +0100 |
commit | 59e1fced2b4115a882ffc1ac31a66f8d8e8793ff (patch) | |
tree | ccdb5e7d9805845f6c52a1f7e2fdd4b154230ac7 /vcl/inc | |
parent | c6f39e81ef0615323833270fa434451801e3b21d (diff) |
Remove unused macros
TYPEFLAG_PS_OPENTYPE is set but never used, and dropping it means we no
longer need TYPEFLAG_COPYRIGHT_MASK either.
Change-Id: Iefb45b32f53a806f2477ce54b7062b5846a6a806
Reviewed-on: https://gerrit.libreoffice.org/49427
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Khaled Hosny <khaledhosny@eglug.org>
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/sft.hxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/vcl/inc/sft.hxx b/vcl/inc/sft.hxx index 0edec67ac376..e184ff164291 100644 --- a/vcl/inc/sft.hxx +++ b/vcl/inc/sft.hxx @@ -174,14 +174,10 @@ namespace vcl int winDescent; /**< descender metric for Windows */ bool symbolEncoded; /**< true: MS symbol encoded */ sal_uInt8 panose[10]; /**< PANOSE classification number */ - sal_uInt32 typeFlags; /**< type flags (copyright bits + PS-OpenType flag) */ + sal_uInt32 typeFlags; /**< type flags (copyright bits) */ sal_uInt16 fsSelection; /**< OS/2 fsSelection */ } TTGlobalFontInfo; -#define TYPEFLAG_INVALID 0x8000000 -#define TYPEFLAG_COPYRIGHT_MASK 0x000000E -#define TYPEFLAG_PS_OPENTYPE 0x0010000 - /** ControlPoint structure used by GetTTGlyphPoints() */ typedef struct { sal_uInt32 flags; /**< 00000000 00000000 e0000000 bbbbbbbb */ |