mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
fix enums
This commit is contained in:
parent
aa4a062692
commit
055cb708f9
2 changed files with 3 additions and 48 deletions
|
@ -97,17 +97,13 @@ typedef NSRect *NSRectArray;
|
|||
typedef NSRect *NSRectPointer;
|
||||
#endif
|
||||
|
||||
<<<<<<< HEAD
|
||||
typedef NS_ENUM(NSUInteger, NSRectEdge)
|
||||
=======
|
||||
typedef enum
|
||||
>>>>>>> e0b37c4a1b60bd93877d40d814ebb99944635478
|
||||
{
|
||||
NSMinXEdge = 0,
|
||||
NSMinYEdge = 1,
|
||||
NSMaxXEdge = 2,
|
||||
NSMaxYEdge = 3
|
||||
} NSRectEdge;
|
||||
};
|
||||
/** Sides of a rectangle.
|
||||
<example>
|
||||
{
|
||||
|
@ -148,11 +144,7 @@ typedef enum
|
|||
</example>
|
||||
<p>NSAlignmentOptions</p>*/
|
||||
#if OS_API_VERSION(MAC_OS_X_VERSION_10_7, GS_API_LATEST)
|
||||
<<<<<<< HEAD
|
||||
typedef NS_ENUM(unsigned long long, NSAlignmentOptions)
|
||||
=======
|
||||
typedef enum
|
||||
>>>>>>> e0b37c4a1b60bd93877d40d814ebb99944635478
|
||||
typedef NS_ENUM(unsigned long long, NSAlignmentOptions)
|
||||
{
|
||||
NSAlignMinXInward = 1ULL << 0,
|
||||
NSAlignMinYInward = 1ULL << 1,
|
||||
|
@ -185,11 +177,7 @@ typedef enum
|
|||
| NSAlignMaxXNearest
|
||||
| NSAlignMinYNearest
|
||||
| NSAlignMaxYNearest
|
||||
<<<<<<< HEAD
|
||||
};
|
||||
=======
|
||||
} NSAlignmentOptions;
|
||||
>>>>>>> e0b37c4a1b60bd93877d40d814ebb99944635478
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue