Closed
Bug 1778178
Opened 3 years ago
Closed 3 years ago
Convert ReflowInput's available size write-accessors to setters
Categories
(Core :: Layout, task)
Core
Layout
Tracking
()
RESOLVED
FIXED
104 Branch
Tracking | Status | |
---|---|---|
firefox104 | --- | fixed |
People
(Reporter: TYLin, Assigned: TYLin)
References
Details
Attachments
(1 file)
We have two write accessors to ReflowInput's available size [1]. I'd like to convert them to setters so that they are more explicit and discoverable.
nscoord& AvailableISize() { return mAvailableSize.ISize(mWritingMode); }
nscoord& AvailableBSize() { return mAvailableSize.BSize(mWritingMode); }
Assignee | ||
Comment 1•3 years ago
|
||
This patch rewrites some callers, but they shouldn't change the behavior.
Pushed by tlin@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/c3878c884a09
Convert ReflowInput's available size write-accessors to setters. r=layout-reviewers,jfkthame
Comment 3•3 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 3 years ago
status-firefox104:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 104 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•