Fix typo in QXmlStreamReader error message

Amends 6326bec46a618c72feba4a2bb994c4d475050aed.

Task-number: QTBUG-109781
Task-number: QTBUG-114829
Change-Id: Ib5189dc908cd61c6c6fa23024776a4a5baa75ca5
Reviewed-by: Robert Löhning <robert.loehning@qt.io>
(cherry picked from commit bdc8dc51380d2ce4580e6b84e3286ec6f1866156)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Friedemann Kleint 2023-06-30 07:59:51 +02:00 committed by Qt Cherry-pick Bot
parent 4ffd435333
commit 70f48ca973

View File

@ -1848,7 +1848,7 @@ void QXmlStreamReaderPrivate::raiseNamePrefixTooLongError()
{ {
// TODO: add a ImplementationLimitsExceededError and use it instead // TODO: add a ImplementationLimitsExceededError and use it instead
raiseError(QXmlStreamReader::NotWellFormedError, raiseError(QXmlStreamReader::NotWellFormedError,
QXmlStream::tr("Length of XML attribute name exceeds implemnetation limits (4KiB " QXmlStream::tr("Length of XML attribute name exceeds implementation limits (4KiB "
"characters).")); "characters)."));
} }