mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-18 13:44:50 +00:00
LibHTML: Rename HTMLImageElement::m_image_data => m_encoded_data
This commit is contained in:
@@ -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();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user