mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
minor fix, gcc9 didn't like that declaration
This commit is contained in:
parent
e0b9fca877
commit
ca6c1c71ef
1 changed files with 4 additions and 2 deletions
|
@ -148,9 +148,11 @@ NSUInteger colsStepperValue;
|
|||
NSButtonCell *cell;
|
||||
NSInteger tag;
|
||||
NSString *title;
|
||||
for (int c = 0; c < [object numberOfColumns]; c++)
|
||||
int c;
|
||||
for (c = 0; c < [object numberOfColumns]; c++)
|
||||
{
|
||||
for (int r = 0; r < [object numberOfRows]; r++)
|
||||
int r;
|
||||
for (r = 0; r < [object numberOfRows]; r++)
|
||||
{
|
||||
cell = [object cellAtRow: r column: c];
|
||||
tag = [cell tag];
|
||||
|
|
Loading…
Reference in a new issue