mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Instantiate the row or column objects in the methods where needed
This commit is contained in:
parent
e97e6d5c1e
commit
200d325d94
1 changed files with 8 additions and 4 deletions
|
@ -135,12 +135,14 @@
|
|||
|
||||
- (NSGridRow *) addRowWithViews: (NSArray *)views
|
||||
{
|
||||
return nil;
|
||||
NSGridRow *gr = [[NSGridRow alloc] init];
|
||||
return gr;
|
||||
}
|
||||
|
||||
- (NSGridRow *) insertRowAtIndex: (NSInteger)index withViews: (NSArray *)views
|
||||
{
|
||||
return nil;
|
||||
NSGridRow *gr = [[NSGridRow alloc] init];
|
||||
return gr;
|
||||
}
|
||||
|
||||
- (void) moveRowAtIndex: (NSInteger)fromIndex toIndex: (NSInteger)toIndex
|
||||
|
@ -153,12 +155,14 @@
|
|||
|
||||
- (NSGridColumn *) addColumnWithViews: (NSArray*)views
|
||||
{
|
||||
return nil;
|
||||
NSGridColumn *gc = [[NSGridColumn alloc] init];
|
||||
return gc;
|
||||
}
|
||||
|
||||
- (NSGridColumn *) insertColumnAtIndex: (NSInteger)index withViews: (NSArray *)views
|
||||
{
|
||||
return nil;
|
||||
NSGridColumn *gc = [[NSGridColumn alloc] init];
|
||||
return gc;
|
||||
}
|
||||
|
||||
- (void) moveColumnAtIndex: (NSInteger)fromIndex toIndex: (NSInteger)toIndex
|
||||
|
|
Loading…
Reference in a new issue