diff options
author | Oz Linden <oz@lindenlab.com> | 2011-01-20 15:25:49 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-01-20 15:25:49 -0500 |
commit | f9b9c7a5816cf0b9627a4a50e73a663667937145 (patch) | |
tree | 610ab8f2352303efc65094397212d5f9775fd80f /indra/llcommon | |
parent | 8e4d6bb1acca21069b4038a2cdf56e18196d6cb2 (diff) | |
parent | 3cce47430a0e621fb2fdadd4fb11e681600227ca (diff) |
merge changes for chop-366
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llavatarname.cpp | 2 | ||||
-rw-r--r-- | indra/llcommon/llavatarname.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llavatarname.cpp b/indra/llcommon/llavatarname.cpp index b1ec9e9875..ad1845d387 100644 --- a/indra/llcommon/llavatarname.cpp +++ b/indra/llcommon/llavatarname.cpp @@ -48,7 +48,7 @@ LLAvatarName::LLAvatarName() mLegacyFirstName(), mLegacyLastName(), mIsDisplayNameDefault(false), - mIsDummy(false), + mIsTemporaryName(false), mExpires(F64_MAX), mNextUpdate(0.0) { } diff --git a/indra/llcommon/llavatarname.h b/indra/llcommon/llavatarname.h index 145aeccd35..ba258d6d52 100644 --- a/indra/llcommon/llavatarname.h +++ b/indra/llcommon/llavatarname.h @@ -79,7 +79,7 @@ public: // Under error conditions, we may insert "dummy" records with // names like "???" into caches as placeholders. These can be // shown in UI, but are not serialized. - bool mIsDummy; + bool mIsTemporaryName; // Names can change, so need to keep track of when name was // last checked. |