diff options
author | Mats Palmgren <mats@mozilla.com> | 2019-11-29 10:48:50 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-29 10:48:50 +0100 |
commit | 6ea8e51aaa192d920ffd6b8a7d4cc4e998d7222a (patch) | |
tree | c1eb96e91f59a8bbf8afe08c085829411b1f254c /layout/generic/nsInlineFrame.h | |
parent | 013ef52eddc20d97d821195de85b4de27877dc58 (diff) | |
download | UXP-6ea8e51aaa192d920ffd6b8a7d4cc4e998d7222a.tar UXP-6ea8e51aaa192d920ffd6b8a7d4cc4e998d7222a.tar.gz UXP-6ea8e51aaa192d920ffd6b8a7d4cc4e998d7222a.tar.lz UXP-6ea8e51aaa192d920ffd6b8a7d4cc4e998d7222a.tar.xz UXP-6ea8e51aaa192d920ffd6b8a7d4cc4e998d7222a.zip |
Remove unnecessary calls to ReparentFloatsForInlineChild in
nsInlineFrame.
Diffstat (limited to 'layout/generic/nsInlineFrame.h')
-rw-r--r-- | layout/generic/nsInlineFrame.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/layout/generic/nsInlineFrame.h b/layout/generic/nsInlineFrame.h index a9679e93f..36df6be93 100644 --- a/layout/generic/nsInlineFrame.h +++ b/layout/generic/nsInlineFrame.h @@ -179,11 +179,9 @@ private: /** * Move any frames on our overflow list to the end of our principal list. * @param aFlags one or more of the above DrainFlags - * @param aLineContainer the nearest line container ancestor * @return true if there were any overflow frames */ - bool DrainSelfOverflowListInternal(DrainFlags aFlags, - nsIFrame* aLineContainer); + bool DrainSelfOverflowListInternal(DrainFlags aFlags); protected: nscoord mBaseline; }; |