mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
fix compilation with ICU 68
This commit is contained in:
parent
d899741be4
commit
05572b2d01
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue