1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +00:00

LibHTML: Rename HTMLImageElement::m_image_loader => m_image_decoder

This matches the new class name, ImageDecoder.
This commit is contained in:
Andreas Kling 2019-10-20 10:39:59 +02:00
parent 58f67c1ccb
commit 457e49f528
3 changed files with 10 additions and 10 deletions

View file

@ -56,5 +56,5 @@ void LayoutImage::render(RenderingContext& context)
bool LayoutImage::renders_as_alt_text() const
{
return !node().image_loader();
return !node().image_decoder();
}