summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qstring.cpp
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-03-09 11:04:59 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-03-09 11:04:59 (GMT)
commit8c904712aa658dd0dd405b64913b8e6ade17f3df (patch)
treec9caa1359d5a48058f59d6a7ed961039d4abe027 /src/corelib/tools/qstring.cpp
parentfcb912dfa85ab1045c08a0c5bee6bc4e84c90ef2 (diff)
downloadQt-8c904712aa658dd0dd405b64913b8e6ade17f3df.zip
Qt-8c904712aa658dd0dd405b64913b8e6ade17f3df.tar.gz
Qt-8c904712aa658dd0dd405b64913b8e6ade17f3df.tar.bz2
doc: Fixed several qdoc errors.
Diffstat (limited to 'src/corelib/tools/qstring.cpp')
-rw-r--r--src/corelib/tools/qstring.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/corelib/tools/qstring.cpp b/src/corelib/tools/qstring.cpp
index 5ed3db5..b54315c 100644
--- a/src/corelib/tools/qstring.cpp
+++ b/src/corelib/tools/qstring.cpp
@@ -2135,7 +2135,7 @@ bool QString::operator==(const QLatin1String &other) const
The \a other byte array is converted to a QString using the
fromAscii() function. This function stops conversion at the
- first NUL character found, or the end of the \a ba byte array.
+ first NUL character found, or the end of the byte array.
You can disable this operator by defining \c
QT_NO_CAST_FROM_ASCII when you compile your applications. This
@@ -2197,7 +2197,7 @@ bool QString::operator<(const QLatin1String &other) const
The \a other byte array is converted to a QString using the
fromAscii() function. If any NUL characters ('\0') are embedded
- in the \a ba byte array, they will be included in the transformation.
+ in the byte array, they will be included in the transformation.
You can disable this operator by defining \c
QT_NO_CAST_FROM_ASCII when you compile your applications. This
@@ -2240,7 +2240,7 @@ bool QString::operator<(const QLatin1String &other) const
The \a other byte array is converted to a QString using the
fromAscii() function. If any NUL characters ('\0') are embedded
- in the \a ba byte array, they will be included in the transformation.
+ in the byte array, they will be included in the transformation.
You can disable this operator by defining \c
QT_NO_CAST_FROM_ASCII when you compile your applications. This
@@ -2299,7 +2299,7 @@ bool QString::operator>(const QLatin1String &other) const
The \a other byte array is converted to a QString using the
fromAscii() function. If any NUL characters ('\0') are embedded
- in the \a ba byte array, they will be included in the transformation.
+ in the byte array, they will be included in the transformation.
You can disable this operator by defining \c
QT_NO_CAST_FROM_ASCII when you compile your applications. This
@@ -2341,8 +2341,8 @@ bool QString::operator>(const QLatin1String &other) const
\overload operator>=()
The \a other byte array is converted to a QString using the
- fromAscii() function. If any NUL characters ('\0') are embedded
- in the \a ba byte array, they will be included in the transformation.
+ fromAscii() function. If any NUL characters ('\0') are embedded in
+ the byte array, they will be included in the transformation.
You can disable this operator by defining \c QT_NO_CAST_FROM_ASCII
when you compile your applications. This can be useful if you want
@@ -2357,10 +2357,10 @@ bool QString::operator>(const QLatin1String &other) const
The \a other const char pointer is converted to a QString using
the fromAscii() function.
- You can disable this operator by defining \c
- QT_NO_CAST_FROM_ASCII when you compile your applications. This
- can be useful if you want to ensure that all user-visible strings
- go through QObject::tr(), for example.
+ You can disable this operator by defining \c QT_NO_CAST_FROM_ASCII
+ when you compile your applications. This can be useful if you want
+ to ensure that all user-visible strings go through QObject::tr(),
+ for example.
*/
/*! \fn bool QString::operator!=(const QString &other) const
@@ -2385,7 +2385,7 @@ bool QString::operator>(const QLatin1String &other) const
The \a other byte array is converted to a QString using the
fromAscii() function. If any NUL characters ('\0') are embedded
- in the \a ba byte array, they will be included in the transformation.
+ in the byte array, they will be included in the transformation.
You can disable this operator by defining \c QT_NO_CAST_FROM_ASCII
when you compile your applications. This can be useful if you want