X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsignalproxy.cpp;h=e6ac40c2a6b0190a2aed1c57a6f76afcc499a84f;hb=c8ddabf364eff2400c61cea395aefe69eb8ba1b3;hp=3bd7c4d3a9e7f1683bf5cbe2439387437731cf73;hpb=24c7de34254b5de4cf28045a6923a527e06f7290;p=quassel.git diff --git a/src/common/signalproxy.cpp b/src/common/signalproxy.cpp index 3bd7c4d3..e6ac40c2 100644 --- a/src/common/signalproxy.cpp +++ b/src/common/signalproxy.cpp @@ -190,7 +190,7 @@ bool SignalProxy::addPeer(Peer* peer) void SignalProxy::removeAllPeers() { Q_ASSERT(proxyMode() == Server || peerCount() <= 1); - // wee need to copy that list since we modify it in the loop + // we need to copy that list since we modify it in the loop QList peers = _peerMap.values(); for (auto peer : peers) { removePeer(peer); @@ -656,7 +656,7 @@ QVariantList SignalProxy::peerData() QVariantMap data; data["id"] = peer->id(); data["clientVersion"] = peer->clientVersion(); - // We explicitly rename this, as, due to the Debian reproducability changes, buildDate isn’t actually the build + // We explicitly rename this, as, due to the Debian reproducibility changes, buildDate isn’t actually the build // date anymore, but on newer clients the date of the last git commit data["clientVersionDate"] = peer->buildDate(); data["remoteAddress"] = peer->address();