summaryrefslogtreecommitdiffstats
path: root/src/sql/kernel/qsqlerror.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sql/kernel/qsqlerror.cpp')
-rw-r--r--src/sql/kernel/qsqlerror.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sql/kernel/qsqlerror.cpp b/src/sql/kernel/qsqlerror.cpp
index 9beaf10a32..e4b8aa0c6d 100644
--- a/src/sql/kernel/qsqlerror.cpp
+++ b/src/sql/kernel/qsqlerror.cpp
@@ -116,7 +116,7 @@ QSqlError& QSqlError::operator=(const QSqlError& other)
}
/*!
- Compare the \a other error's values to this error and returns true, if it equal.
+ Compare the \a other error's values to this error and returns \c true, if it equal.
*/
bool QSqlError::operator==(const QSqlError& other) const
@@ -126,7 +126,7 @@ bool QSqlError::operator==(const QSqlError& other) const
/*!
- Compare the \a other error's values to this error and returns true if it is not equal.
+ Compare the \a other error's values to this error and returns \c true if it is not equal.
*/
bool QSqlError::operator!=(const QSqlError& other) const
@@ -278,7 +278,7 @@ QString QSqlError::text() const
}
/*!
- Returns true if an error is set, otherwise false.
+ Returns \c true if an error is set, otherwise false.
Example:
\snippet code/src_sql_kernel_qsqlerror.cpp 0