summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gui/text/qfont.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/text/qfont.h b/src/gui/text/qfont.h
index 653b123c946..ace07780b5b 100644
--- a/src/gui/text/qfont.h
+++ b/src/gui/text/qfont.h
@@ -231,9 +231,8 @@ public:
char((m_value & 0xff000000) >> 24),
char((m_value & 0x00ff0000) >> 16),
char((m_value & 0x0000ff00) >> 8),
- char((m_value & 0x000000ff)),
- 0 };
- return QByteArray(data);
+ char((m_value & 0x000000ff)) };
+ return QByteArray(data, sizeof(data));
}
static constexpr std::optional<Tag> fromValue(quint32 value) noexcept