mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
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:
parent
1aa1803744
commit
a2aa2001da
1 changed files with 12 additions and 12 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue