mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Double checked and corrected where the fast enumeration var was misdeclared in END_FOR_IN(...).
This commit is contained in:
parent
c561e4f2d5
commit
d7eca23b73
1 changed files with 2 additions and 2 deletions
|
@ -464,7 +464,7 @@
|
|||
atIndex: pos + i];
|
||||
i++;
|
||||
}
|
||||
END_FOR_IN(views);
|
||||
END_FOR_IN(cells);
|
||||
|
||||
// Insert remaineder of cells for views not present..
|
||||
NSUInteger r = [self numberOfColumns] - i;
|
||||
|
@ -540,7 +540,7 @@
|
|||
atIndex: pos + i * [self numberOfColumns]];
|
||||
i++;
|
||||
}
|
||||
END_FOR_IN(views);
|
||||
END_FOR_IN(cells);
|
||||
|
||||
// Insert remaineder of cells for views not present..
|
||||
NSUInteger r = [self numberOfColumns] - i;
|
||||
|
|
Loading…
Reference in a new issue