aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2024-11-04 06:49:03 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-11-05 11:49:45 +0000
commitd86be1f11f179925288cbfec4a0549de903649ba (patch)
tree3100f0010ecdb841480c7d6efaaba328da2e968c
parent5acae2dc4c99f694eb7c6d35baec1de4635aa306 (diff)
Doc: Fix typo in Quick enumeration value name
Fixes: QTBUG-130820 Change-Id: I5f1bba26024cc7f8d81b04147751f8e30feefc6c Reviewed-by: Andreas Eliasson <andreas.eliasson@qt.io> (cherry picked from commit 07ebdaf11dbb39a02b271501bf1a5a0f91991c5a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 3634ee55c1acf408008fde7d5481cf751cbd11e3)
-rw-r--r--src/quicktemplates/qquickcombobox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quicktemplates/qquickcombobox.cpp b/src/quicktemplates/qquickcombobox.cpp
index 024ca16c8a..99920c16f1 100644
--- a/src/quicktemplates/qquickcombobox.cpp
+++ b/src/quicktemplates/qquickcombobox.cpp
@@ -1874,7 +1874,7 @@ QString QQuickComboBox::textAt(int index) const
\value Qt.MatchWildcard The search term matches using wildcards.
\value Qt.MatchFixedString The search term matches as a fixed string.
\value Qt.MatchStartsWith The search term matches the start of the item.
- \value Qt.MatchEndsWidth The search term matches the end of the item.
+ \value Qt.MatchEndsWith The search term matches the end of the item.
\value Qt.MatchContains The search term is contained in the item.
\value Qt.MatchCaseSensitive The search is case sensitive.