diff options
author | Dheerendra Purohit <[email protected]> | 2025-06-30 15:05:26 +0530 |
---|---|---|
committer | Dheerendra Purohit <[email protected]> | 2025-07-01 09:45:20 +0530 |
commit | c1346c4176c525f18b99e2f8839d8b5047dbe3af (patch) | |
tree | fa8495f8c58ce1854024e3aef9a2e46c78af286b | |
parent | 7482efd17196e3686075213701423667c0bf198f (diff) |
Updated the documentation to clarify that QStringList is not a
separate class.
Pick-to: 6.10 6.9
Fixes: QTBUG-102240
Change-Id: Ifdbad8764e9cfaa915cfd7f27872d64b21e14977
Reviewed-by: Thiago Macieira <[email protected]>
-rw-r--r-- | src/corelib/text/qstringlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/text/qstringlist.cpp b/src/corelib/text/qstringlist.cpp index bb9cf2f0c9f..e6f85849f27 100644 --- a/src/corelib/text/qstringlist.cpp +++ b/src/corelib/text/qstringlist.cpp @@ -48,7 +48,7 @@ QT_BEGIN_NAMESPACE \reentrant - QStringList inherits from QList<QString>. Like QList, QStringList is + QStringList is actually just a QList<QString>. Like QList, QStringList is \l{implicitly shared}. It provides fast index-based access as well as fast insertions and removals. Passing string lists as value parameters is both fast and safe. |