mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 09:51:08 +00:00
Minor fix for gcc-3CVS: ----------------------------------------------------------------------
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@9771 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4525b97466
commit
983262867b
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-05-04 Richard Frith-Macdonald <richard@brainstorm.co.uk>
|
||||
|
||||
* Source/NSCursor.m: Corrected illegal use of reserved word (id)
|
||||
as method argument ... gcc-3 doesn't allow it.
|
||||
|
||||
2001-05-03 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Model/GMArchiver.m: Add defs for RETAIN, etc when not defined (i.e.
|
||||
|
|
|
@ -63,9 +63,9 @@ static BOOL gnustep_gui_hidden_until_move;
|
|||
return cid;
|
||||
}
|
||||
|
||||
- (void) _setCid: (void *)id
|
||||
- (void) _setCid: (void *)val
|
||||
{
|
||||
cid = id;
|
||||
cid = val;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue