fix compilation with ICU 68

This commit is contained in:
Riccardo Mottola 2020-12-21 16:35:10 +01:00
parent d899741be4
commit 05572b2d01

View file

@ -55,6 +55,18 @@
#include <unicode/uchar.h>
#include <unicode/ustring.h>
/*
* Define TRUE/FALSE to be used with UBool parameters, as these are no longer
* defined in ICU as of ICU 68.
*/
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
@interface GSVerticallyCenteredTextFieldCell : NSTextFieldCell
{
}