mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 20:45:00 +00:00
LibHTML: Rename HTMLImageElement::m_image_data => m_encoded_data
This commit is contained in:
parent
61f2704d58
commit
adb1870628
2 changed files with 3 additions and 3 deletions
|
@ -33,8 +33,8 @@ void HTMLImageElement::load_image(const String& src)
|
|||
return;
|
||||
}
|
||||
|
||||
m_image_data = data;
|
||||
m_image_decoder = ImageDecoder::create(m_image_data.data(), m_image_data.size());
|
||||
m_encoded_data = data;
|
||||
m_image_decoder = ImageDecoder::create(m_encoded_data.data(), m_encoded_data.size());
|
||||
document().update_layout();
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue