summaryrefslogtreecommitdiffstats
path: root/src/corelib/mimetypes
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/corelib/mimetypes
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/corelib/mimetypes')
-rw-r--r--src/corelib/mimetypes/qmimemagicrulematcher.cpp2
-rw-r--r--src/corelib/mimetypes/qmimemagicrulematcher_p.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/mimetypes/qmimemagicrulematcher.cpp b/src/corelib/mimetypes/qmimemagicrulematcher.cpp
index cdd73076fd..4a9cd2971e 100644
--- a/src/corelib/mimetypes/qmimemagicrulematcher.cpp
+++ b/src/corelib/mimetypes/qmimemagicrulematcher.cpp
@@ -67,7 +67,7 @@ QMimeMagicRuleMatcher::QMimeMagicRuleMatcher(const QString &mime, unsigned thePr
{
}
-bool QMimeMagicRuleMatcher::operator==(const QMimeMagicRuleMatcher &other)
+bool QMimeMagicRuleMatcher::operator==(const QMimeMagicRuleMatcher &other) const
{
return m_list == other.m_list &&
m_priority == other.m_priority;
diff --git a/src/corelib/mimetypes/qmimemagicrulematcher_p.h b/src/corelib/mimetypes/qmimemagicrulematcher_p.h
index b2bb287207..e4099da3cd 100644
--- a/src/corelib/mimetypes/qmimemagicrulematcher_p.h
+++ b/src/corelib/mimetypes/qmimemagicrulematcher_p.h
@@ -55,7 +55,7 @@ class QMimeMagicRuleMatcher
public:
explicit QMimeMagicRuleMatcher(const QString &mime, unsigned priority = 65535);
- bool operator==(const QMimeMagicRuleMatcher &other);
+ bool operator==(const QMimeMagicRuleMatcher &other) const;
void addRule(const QMimeMagicRule &rule);
void addRules(const QList<QMimeMagicRule> &rules);