summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qcollator_posix.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2013-11-13 11:25:19 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-17 09:47:34 +0100
commite721cf15081c8174a38797cc88f7c5197d9e527c (patch)
treea50c471ab1867940869fe59912b97b6ea3a4e6af /src/corelib/tools/qcollator_posix.cpp
parent70bc2e882ffc2ea998717d7fcde2b02a2124f52e (diff)
QCollatorSortKey: inline operator<
This code was duplicated in every qcollator_platform.cpp and identical everywhere, except in _icu, which uses a QByteArray m_key and the implementation used QByteArray::operator<, which is semantically and probably code-wise identical to what the other implementations did (after inlining). Inlining this function removes a potential maintenance problem and increases speed without violating encapsulation. Change-Id: If3e9d38a7d4326b49f0611a9f4187c53960e8a03 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/corelib/tools/qcollator_posix.cpp')
-rw-r--r--src/corelib/tools/qcollator_posix.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/corelib/tools/qcollator_posix.cpp b/src/corelib/tools/qcollator_posix.cpp
index a43618dcf1..b47b546d01 100644
--- a/src/corelib/tools/qcollator_posix.cpp
+++ b/src/corelib/tools/qcollator_posix.cpp
@@ -135,11 +135,6 @@ QCollatorSortKey QCollator::sortKey(const QString &string) const
return QCollatorSortKey(new QCollatorSortKeyPrivate(result));
}
-bool QCollatorSortKey::operator<(const QCollatorSortKey &otherKey) const
-{
- return compare(otherKey) < 0;
-}
-
int QCollatorSortKey::compare(const QCollatorSortKey &otherKey) const
{
return std::wcscmp(d->m_key.constData(),