mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-21 01:40:59 +00:00
Added some fixes for Apple runtime
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@7940 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4beeb68e65
commit
19e0fc3d15
8 changed files with 61 additions and 32 deletions
|
@ -131,10 +131,10 @@ enum {
|
|||
/* Class variables */
|
||||
static Class defaultCellClass = nil;
|
||||
static int mouseDownFlags = 0;
|
||||
static SEL copySel = @selector(copyWithZone:);
|
||||
static SEL initSel = @selector(init);
|
||||
static SEL allocSel = @selector(allocWithZone:);
|
||||
static SEL getSel = @selector(objectAtIndex:);
|
||||
static SEL copySel;
|
||||
static SEL initSel;
|
||||
static SEL allocSel;
|
||||
static SEL getSel;
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
|
@ -143,6 +143,11 @@ static SEL getSel = @selector(objectAtIndex:);
|
|||
/* Set the initial version */
|
||||
[self setVersion: 1];
|
||||
|
||||
copySel = @selector(copyWithZone:);
|
||||
initSel = @selector(init);
|
||||
allocSel = @selector(allocWithZone:);
|
||||
getSel = @selector(objectAtIndex:);
|
||||
|
||||
/*
|
||||
* MacOS-X docs say default cell class is NSActionCell
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue