diff options
author | Robin Burchell <robin.burchell@collabora.co.uk> | 2010-09-27 21:03:43 (GMT) |
---|---|---|
committer | Robin Burchell <robin.burchell@collabora.co.uk> | 2010-09-27 21:03:43 (GMT) |
commit | 38449f8700da5c673b95a394cf9b7543904cb10c (patch) | |
tree | 67268614bed960ca968b9430d2b112df1d1f1408 | |
parent | 53f5b448f5dd33459837536a855463c917b4c14e (diff) | |
download | Qt-38449f8700da5c673b95a394cf9b7543904cb10c.zip Qt-38449f8700da5c673b95a394cf9b7543904cb10c.tar.gz Qt-38449f8700da5c673b95a394cf9b7543904cb10c.tar.bz2 |
Reference to QStringList::find() is incorrect, should be QStringList::filter().
Task-number: QTBUG-9248
-rw-r--r-- | src/corelib/tools/qstring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qstring.cpp b/src/corelib/tools/qstring.cpp index 5be885b..dba53af 100644 --- a/src/corelib/tools/qstring.cpp +++ b/src/corelib/tools/qstring.cpp @@ -565,7 +565,7 @@ const QString::Null QString::null = { }; and join a list of strings into a single string with an optional separator using QStringList::join(). You can obtain a list of strings from a string list that contain a particular substring or - that match a particular QRegExp using the QStringList::find() + that match a particular QRegExp using the QStringList::filter() function. : \section1 Querying String Data |