aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppJingleIq.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/QXmppJingleIq.cpp')
-rw-r--r--src/base/QXmppJingleIq.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/QXmppJingleIq.cpp b/src/base/QXmppJingleIq.cpp
index c652887e..4fcd5bec 100644
--- a/src/base/QXmppJingleIq.cpp
+++ b/src/base/QXmppJingleIq.cpp
@@ -576,7 +576,7 @@ QString QXmppJingleIq::Content::toSdp() const
QHostAddress localRtpAddress = QHostAddress::Any;
quint16 localRtpPort = 0;
QList<QXmppJingleCandidate> sortedCandidates = d->transportCandidates;
- qSort(sortedCandidates.begin(), sortedCandidates.end(), candidateLessThan);
+ std::sort(sortedCandidates.begin(), sortedCandidates.end(), candidateLessThan);
foreach (const QXmppJingleCandidate &candidate, sortedCandidates) {
if (candidate.component() == RTP_COMPONENT) {
localRtpAddress = candidate.host();