Browse Source

Spelling correction

tags/2021-05-28
jules 7 years ago
parent
commit
8e91bfabf7
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      modules/juce_gui_basics/layout/juce_Grid.cpp

+ 3
- 3
modules/juce_gui_basics/layout/juce_Grid.cpp View File

@@ -533,9 +533,9 @@ struct Grid::AutoPlacement
{ {
struct Cell { int column, row; }; 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) Grid::PlacementHelpers::LineArea setCell (Cell cell, int columnSpan, int rowSpan)


Loading…
Cancel
Save