summaryrefslogtreecommitdiffstats
path: root/src/sql/kernel/qsqlerror.h
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@nokia.com>2012-09-04 21:10:05 +0200
committerQt by Nokia <qt-info@nokia.com>2012-09-08 09:08:27 +0200
commitce8e6abe7fff563b11ab1e83e2bd83cbac5745f9 (patch)
treef914f6be4096738fb3a0720410478e0801b8974d /src/sql/kernel/qsqlerror.h
parentafb0260f50f41fa72f8447fdb84f8d907a725fe5 (diff)
Check for C++ operators that should be 'const'
Make sure all C++ class comparison operators are const. Change-Id: Ib4a66f2afe6c62f437dae1ecde94287d3db8442d Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: David Faure <faure@kde.org>
Diffstat (limited to 'src/sql/kernel/qsqlerror.h')
-rw-r--r--src/sql/kernel/qsqlerror.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sql/kernel/qsqlerror.h b/src/sql/kernel/qsqlerror.h
index 5a9cb50af0..dd2b650a57 100644
--- a/src/sql/kernel/qsqlerror.h
+++ b/src/sql/kernel/qsqlerror.h
@@ -66,8 +66,8 @@ public:
int number = -1);
QSqlError(const QSqlError& other);
QSqlError& operator=(const QSqlError& other);
- bool operator==(const QSqlError& other);
- bool operator!=(const QSqlError& other);
+ bool operator==(const QSqlError& other) const;
+ bool operator!=(const QSqlError& other) const;
~QSqlError();
QString driverText() const;