Fix warnings in NSForm.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36046 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2013-01-31 09:04:21 +00:00
parent 1aa1803744
commit a2aa2001da

View file

@ -59,16 +59,16 @@ static Class defaultCellClass = nil;
}
- (id) initWithFrame: (NSRect)frameRect
mode: (int)aMode
mode: (NSMatrixMode)aMode
cellClass: (Class)class
numberOfRows: (NSInteger)rowsHigh
numberOfColumns: (NSInteger)colsWide
{
self = [super initWithFrame: (NSRect)frameRect
mode: (int)aMode
cellClass: (Class)class
numberOfRows: (NSInteger)rowsHigh
numberOfColumns: (NSInteger)colsWide];
self = [super initWithFrame: frameRect
mode: aMode
cellClass: class
numberOfRows: rowsHigh
numberOfColumns: colsWide];
if (nil == self)
return nil;
@ -77,16 +77,16 @@ static Class defaultCellClass = nil;
}
- (id) initWithFrame: (NSRect)frameRect
mode: (int)aMode
mode: (NSMatrixMode)aMode
prototype: (NSCell*)prototype
numberOfRows: (NSInteger)rowsHigh
numberOfColumns: (NSInteger)colsWide
{
self = [super initWithFrame: (NSRect)frameRect
mode: (int)aMode
prototype: (NSCell*)prototype
numberOfRows: (NSInteger)rowsHigh
numberOfColumns: (NSInteger)colsWide];
self = [super initWithFrame: frameRect
mode: aMode
prototype: prototype
numberOfRows: rowsHigh
numberOfColumns: colsWide];
if (nil == self)
return nil;