fix: Misspelling of Endianness (#1609)

### Problem description
fix 40 typos

### Implementation description
`endianess` => `endianness`

Signed-off-by: RoboSchmied <github@roboschmie.de>
This commit is contained in:
RoboSchmied
2024-03-28 22:25:28 +01:00
committed by GitHub
parent aeabc0c436
commit cc593fb6c4
11 changed files with 40 additions and 40 deletions

View File

@@ -914,12 +914,12 @@ namespace hex::ui {
auto &visualizers = ContentRegistry::HexEditor::impl::getVisualizers();
{
bool hasEndianess = m_currDataVisualizer->getBytesPerCell() > 1;
bool hasEndianness = m_currDataVisualizer->getBytesPerCell() > 1;
if (!hasEndianess)
if (!hasEndianness)
m_dataVisualizerEndianness = std::endian::native;
ImGui::BeginDisabled(!hasEndianess);
ImGui::BeginDisabled(!hasEndianness);
{
int sliderPos = m_dataVisualizerEndianness == std::endian::little ? 0 : 1;
ImGui::PushItemWidth(60_scaled);