Removed compilation warning with SDKs 10.3 and 10.4u

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10948 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2015-12-03 17:18:33 +00:00
parent 58afd21c73
commit f79f70b96a

View File

@ -2726,7 +2726,13 @@ static FLTextInputContext* fltextinputcontext_instance = nil;
return [[self window] level];
}
- (NSInteger)conversationIdentifier {
- (
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
NSInteger
#else
long
#endif
)conversationIdentifier {
return identifier;
}
@end