diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-10-19 18:25:23 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-10-20 19:23:29 +0200 |
commit | 702e4c7dc1a383f83a0324e97b087efef82e9248 (patch) | |
tree | 5af4165850460be1dfb40a054b2b5ad3c96f2458 /indra/newview/llfloaterpreference.cpp | |
parent | fa09db746a50f29faaae91abce7b949ce50142de (diff) |
SL-20163 Rework LLAvatarPropertiesProcessor::sendRequest()
Diffstat (limited to 'indra/newview/llfloaterpreference.cpp')
-rw-r--r-- | indra/newview/llfloaterpreference.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp index e48f989c52..1f5eb5fdff 100644 --- a/indra/newview/llfloaterpreference.cpp +++ b/indra/newview/llfloaterpreference.cpp @@ -330,7 +330,7 @@ LLFloaterPreference::LLFloaterPreference(const LLSD& key) void LLFloaterPreference::processProperties( void* pData, EAvatarProcessorType type ) { - if ( APT_PROPERTIES == type ) + if ( APT_PROPERTIES_LEGACY == type ) { const LLAvatarData* pAvatarData = static_cast<const LLAvatarData*>( pData ); if (pAvatarData && (gAgent.getID() == pAvatarData->avatar_id) && (pAvatarData->avatar_id != LLUUID::null)) @@ -636,7 +636,6 @@ void LLFloaterPreference::cancel() void LLFloaterPreference::onOpen(const LLSD& key) { - // this variable and if that follows it are used to properly handle do not disturb mode response message static bool initialized = FALSE; // if user is logged in and we haven't initialized do not disturb mode response yet, do it |