diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2010-03-01 17:17:21 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2010-03-01 17:18:58 (GMT) |
commit | f97df3f53f133c7ea68816d9275dde5c153f3257 (patch) | |
tree | 9ad9169e19557ed7e948b0c4102255d8c038321b /src | |
parent | d6910f12cdaac746b0b336cb0d8b9b4ea830e9e2 (diff) | |
download | Qt-f97df3f53f133c7ea68816d9275dde5c153f3257.zip Qt-f97df3f53f133c7ea68816d9275dde5c153f3257.tar.gz Qt-f97df3f53f133c7ea68816d9275dde5c153f3257.tar.bz2 |
Doc: QRegExp::WillcardUnix: the documentation did not show the slash
Reviewed-by: David Boddie
Diffstat (limited to 'src')
-rw-r--r-- | src/corelib/tools/qregexp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qregexp.cpp b/src/corelib/tools/qregexp.cpp index 25255f9..b9e273f 100644 --- a/src/corelib/tools/qregexp.cpp +++ b/src/corelib/tools/qregexp.cpp @@ -523,7 +523,7 @@ int qFindString(const QChar *haystack, int haystackLen, int from, \endtable In the mode Wildcard, the wildcard characters cannot be - escaped. In the mode WildcardUnix, the character '\' escapes the + escaped. In the mode WildcardUnix, the character '\\' escapes the wildcard. For example if we are in wildcard mode and have strings which @@ -3774,7 +3774,7 @@ static void invalidateEngine(QRegExpPrivate *priv) \value WildcardUnix This is similar to Wildcard but with the behavior of a Unix shell. The wildcard characters can be escaped - with the character "\". + with the character "\\". \value FixedString The pattern is a fixed string. This is equivalent to using the RegExp pattern on a string in |