Fix 32 bit compilation

The class wxTextFieldCell was still declared, but not defined for 32 bit builds, move the define to NSTextFieldCell into the header.
This commit is contained in:
Stefan Csomor
2017-06-27 18:10:07 +02:00
parent 48d1c4ff1a
commit a352f80537
2 changed files with 4 additions and 2 deletions

View File

@@ -372,10 +372,13 @@ private:
// NSTextFieldCell customized to allow vertical alignment
// ============================================================================
#ifndef __LP64__
#define wxTextFieldCell NSTextFieldCell
#else
@interface wxTextFieldCell : NSTextFieldCell
-(void) setWXAlignment:(int)alignment;
@end
#endif
// ============================================================================
// wxImageTextCell