LibDraw: Rename ImageLoader => ImageDecoder

ImageLoader was not the right name for this, as there is no loading
happening, only decoding. :^)
This commit is contained in:
Andreas Kling 2019-10-19 19:56:49 +02:00
parent 02e787f8a4
commit f970578cd4
Notes: sideshowbarker 2024-07-19 11:37:53 +09:00
8 changed files with 32 additions and 32 deletions

View file

@ -34,7 +34,7 @@ void HTMLImageElement::load_image(const String& src)
}
m_image_data = data;
m_image_loader = ImageLoader::create(m_image_data.data(), m_image_data.size());
m_image_loader = ImageDecoder::create(m_image_data.data(), m_image_data.size());
document().update_layout();
});
}