mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Spelling correction
This commit is contained in:
parent
0c987306c5
commit
8e91bfabf7
1 changed files with 3 additions and 3 deletions
|
|
@ -533,9 +533,9 @@ struct Grid::AutoPlacement
|
|||
{
|
||||
struct Cell { int column, row; };
|
||||
|
||||
OccupancyPlane (int highestColumnToUse, int highestRowToUse, bool isColoumnFirst)
|
||||
: highestCrossDimension (isColoumnFirst ? highestRowToUse : highestColumnToUse),
|
||||
columnFirst (isColoumnFirst)
|
||||
OccupancyPlane (int highestColumnToUse, int highestRowToUse, bool isColumnFirst)
|
||||
: highestCrossDimension (isColumnFirst ? highestRowToUse : highestColumnToUse),
|
||||
columnFirst (isColumnFirst)
|
||||
{}
|
||||
|
||||
Grid::PlacementHelpers::LineArea setCell (Cell cell, int columnSpan, int rowSpan)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue