diff options
author | artoka <arto.katajasalo@digia.com> | 2011-12-13 13:06:03 (GMT) |
---|---|---|
committer | Qt Commercial Integration <QtCommercial@digia.com> | 2012-01-31 10:25:08 (GMT) |
commit | 45bdaac4636b69ddbae446ec65082a90290dda52 (patch) | |
tree | 42ebdbee0b784783ceaf53a9d1b38948b8add90c /src/corelib/tools | |
parent | 08e5e81d5ebece3eb3f489d438e2cea5d4adcb4f (diff) | |
download | Qt-45bdaac4636b69ddbae446ec65082a90290dda52.zip Qt-45bdaac4636b69ddbae446ec65082a90290dda52.tar.gz Qt-45bdaac4636b69ddbae446ec65082a90290dda52.tar.bz2 |
Various qt documentation fixes (wk 44)
Fixes for bugs: QTBUG-13362, QTBUG-15738, QTBUG-15921,
QTBUG-18356, QTBUG-18417, QTBUG-18664, QTBUG-21562, QTBUG-22094,
and QTBUG-18741.
Diffstat (limited to 'src/corelib/tools')
-rw-r--r-- | src/corelib/tools/qregexp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qregexp.cpp b/src/corelib/tools/qregexp.cpp index bfdcc33..8c7d34b 100644 --- a/src/corelib/tools/qregexp.cpp +++ b/src/corelib/tools/qregexp.cpp @@ -668,7 +668,7 @@ int qFindString(const QChar *haystack, int haystackLen, int from, Wildcard matching can be convenient because of its simplicity, but any wildcard regexp can be defined using full regexps, e.g. - \bold{.*\.html$}. Notice that we can't match both \c .html and \c + \bold{.*\\.html$}. Notice that we can't match both \c .html and \c .htm files with a wildcard unless we use \bold{*.htm*} which will also match 'test.html.bak'. A full regexp gives us the precision we need, \bold{.*\\.html?$}. |