Fix naming convention: Rename ASLayout's "children" to "sublayouts".

This commit is contained in:
Huy Nguyen
2015-07-01 17:52:01 +07:00
parent 2149d44990
commit 2a3753516a
11 changed files with 60 additions and 60 deletions

View File

@@ -15,7 +15,7 @@
/** Represents a set of laid out and positioned stack layout children. */
struct ASStackPositionedLayout {
const std::vector<ASLayout *> children;
const std::vector<ASLayout *> sublayouts;
const CGFloat crossSize;
/** Given an unpositioned layout, computes the positions each child should be placed at. */