mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 12:00:45 +00:00
Add missing attributes
This commit is contained in:
parent
bd3c954807
commit
1809fc4dc0
2 changed files with 19 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
|||
2022-08-09 Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Headers/AppKit/NSPredicateEditorRowTemplate.h:
|
||||
Add missing constants NSTransformableAttributeType and
|
||||
NSObjectIDAttributeType.
|
||||
|
||||
2022-06-12 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSImageCell.m,
|
||||
|
|
|
@ -37,17 +37,19 @@
|
|||
|
||||
/* CoreData Framework */
|
||||
enum {
|
||||
NSUndefinedAttributeType = 0,
|
||||
NSInteger16AttributeType = 100,
|
||||
NSInteger32AttributeType = 200,
|
||||
NSInteger64AttributeType = 300,
|
||||
NSDecimalAttributeType = 400,
|
||||
NSDoubleAttributeType = 500,
|
||||
NSFloatAttributeType = 600,
|
||||
NSStringAttributeType = 700,
|
||||
NSBooleanAttributeType = 800,
|
||||
NSDateAttributeType = 900,
|
||||
NSBinaryDataAttributeType = 1000
|
||||
NSUndefinedAttributeType = 0,
|
||||
NSInteger16AttributeType = 100,
|
||||
NSInteger32AttributeType = 200,
|
||||
NSInteger64AttributeType = 300,
|
||||
NSDecimalAttributeType = 400,
|
||||
NSDoubleAttributeType = 500,
|
||||
NSFloatAttributeType = 600,
|
||||
NSStringAttributeType = 700,
|
||||
NSBooleanAttributeType = 800,
|
||||
NSDateAttributeType = 900,
|
||||
NSBinaryDataAttributeType = 1000,
|
||||
NSTransformableAttributeType = 1800,
|
||||
NSObjectIDAttributeType = 2000
|
||||
};
|
||||
typedef NSUInteger NSAttributeType;
|
||||
|
||||
|
|
Loading…
Reference in a new issue