LibWeb: Rename Painting::Box => Paintable

Calling this "Box" made it very confusing to look at code that used both
Layout::Box and Painting::Box. Let's try calling it Paintable instead.
This commit is contained in:
Andreas Kling 2022-03-10 11:26:01 +01:00
commit f6497b64ac
Notes: sideshowbarker 2024-07-17 17:35:04 +09:00
32 changed files with 64 additions and 64 deletions

View file

@ -265,8 +265,8 @@ class PerformanceTiming;
namespace Web::Painting {
enum class PaintPhase;
class Box;
class BoxWithLines;
class Paintable;
class PaintableWithLines;
}
namespace Web::RequestIdleCallback {