Doc: Fixed old text still mentioning QRegExp

The example has already been ported to QRegularExpression however part
of the documentation still referred to the QRegExp class. This patch
updates the documentation to match the new version of the code.

Change-Id: Id433d0b28deae0c4f702c0c54d2704174f8c7689
Reviewed-by: Sze Howe Koh <szehowe.koh@gmail.com>
This commit is contained in:
Samuel Gaist 2017-01-21 23:39:52 +01:00
parent 9170cf9f1d
commit 992bffdba5

View File

@ -741,8 +741,8 @@
whitespace and one or several digits again. whitespace and one or several digits again.
The first digits of the regular expression are captured using The first digits of the regular expression are captured using
parentheses. This enables us to use the QRegExp::cap() or parentheses. This enables us to use the QRegularExpressionMatch::captured()
QRegExp::capturedTexts() functions to extract the matched or QRegularExpressionMatch::capturedTexts() functions to extract the matched
characters. If the first and second numbers of the spin box value characters. If the first and second numbers of the spin box value
differ (e.g., "16 x 24"), we use the first number. differ (e.g., "16 x 24"), we use the first number.