mirror of
https://github.com/lubosz/overte.git
synced 2025-04-07 01:02:12 +02:00
Change method name for consistency
This commit is contained in:
parent
cf21bc438e
commit
3d2e5dc816
3 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,7 @@ int AvatarMixerClientData::processPackets(const SlaveSharedData& slaveSharedData
|
|||
processBulkAvatarTraitsAckMessage(*packet);
|
||||
break;
|
||||
case PacketType::ChallengeOwnership:
|
||||
_avatar->handleChallengeResponse(*packet);
|
||||
_avatar->processChallengeResponse(*packet);
|
||||
break;
|
||||
default:
|
||||
Q_UNREACHABLE();
|
||||
|
|
|
@ -329,7 +329,7 @@ void MixerAvatar::sendOwnerChallenge() {
|
|||
QMetaObject::invokeMethod(&_challengeTimer, static_cast<void(QTimer::*)()>(&QTimer::start));
|
||||
}
|
||||
|
||||
void MixerAvatar::handleChallengeResponse(ReceivedMessage& response) {
|
||||
void MixerAvatar::processChallengeResponse(ReceivedMessage& response) {
|
||||
QByteArray avatarID;
|
||||
QMutexLocker certifyLocker(&_avatarCertifyLock);
|
||||
QMetaObject::invokeMethod(&_challengeTimer, &QTimer::stop);
|
||||
|
|
|
@ -32,7 +32,7 @@ public:
|
|||
void setNeedsIdentityUpdate(bool value = true) { _needsIdentityUpdate = value; }
|
||||
|
||||
void processCertifyEvents();
|
||||
void handleChallengeResponse(ReceivedMessage& response);
|
||||
void processChallengeResponse(ReceivedMessage& response);
|
||||
|
||||
// Avatar certification/verification:
|
||||
enum VerifyState {
|
||||
|
|
Loading…
Reference in a new issue