diff options
author | James Cook <james@lindenlab.com> | 2010-04-28 17:02:50 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-04-28 17:02:50 -0700 |
commit | 8fae11ee368e5b1dce858cdd698714384430858b (patch) | |
tree | ec3d42a7cacc41a50547338ca39aa81e829e55c3 /indra/llcommon | |
parent | 0a249b25b993f004ce05d48f7bce7988d398eb03 (diff) |
Remove prototype support for badges next to avatar names
Easy to reimplement if we decide we want to do it.
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llavatarname.cpp | 3 | ||||
-rw-r--r-- | indra/llcommon/llavatarname.h | 4 |
2 files changed, 1 insertions, 6 deletions
diff --git a/indra/llcommon/llavatarname.cpp b/indra/llcommon/llavatarname.cpp index 4272e096ed..4eeb6e706d 100644 --- a/indra/llcommon/llavatarname.cpp +++ b/indra/llcommon/llavatarname.cpp @@ -50,8 +50,7 @@ LLAvatarName::LLAvatarName() mDisplayName(), mIsDisplayNameDefault(false), mIsDummy(false), - mExpires(F64_MAX), - mBadge() + mExpires(F64_MAX) { } bool LLAvatarName::operator<(const LLAvatarName& rhs) const diff --git a/indra/llcommon/llavatarname.h b/indra/llcommon/llavatarname.h index 3e26887d7a..d7d91e1c7a 100644 --- a/indra/llcommon/llavatarname.h +++ b/indra/llcommon/llavatarname.h @@ -70,10 +70,6 @@ public: // last checked. // Unix time-from-epoch seconds for efficiency F64 mExpires; - - // Can be a viewer UI image name ("Person_Check") or a server-side - // image UUID, or empty string. - std::string mBadge; }; #endif |