aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llagent.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:16 -0500
committerJacek Antonelli2008-08-15 23:45:16 -0500
commit3f27ba891ac4d032753b219b4b96d1ffbc9fb488 (patch)
tree504932ee91a0356fba7ea48798887c96867e492f /linden/indra/newview/llagent.h
parentSecond Life viewer sources 1.18.4.3 (diff)
downloadmeta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.zip
meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.gz
meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.bz2
meta-impy-3f27ba891ac4d032753b219b4b96d1ffbc9fb488.tar.xz
Second Life viewer sources 1.18.5.0-RC
Diffstat (limited to 'linden/indra/newview/llagent.h')
-rw-r--r--linden/indra/newview/llagent.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/linden/indra/newview/llagent.h b/linden/indra/newview/llagent.h
index 5b6c3c0..ad0606a 100644
--- a/linden/indra/newview/llagent.h
+++ b/linden/indra/newview/llagent.h
@@ -239,6 +239,8 @@ public:
239 239
240 BOOL isGodlike() const; 240 BOOL isGodlike() const;
241 U8 getGodLevel() const; 241 U8 getGodLevel() const;
242 bool isTeen() const;
243 void setTeen(bool teen);
242 BOOL isGroupTitleHidden() const { return mHideGroupTitle; } 244 BOOL isGroupTitleHidden() const { return mHideGroupTitle; }
243 BOOL isGroupMember() const { return !mGroupID.isNull(); } // This is only used for building titles! 245 BOOL isGroupMember() const { return !mGroupID.isNull(); } // This is only used for building titles!
244 const LLUUID &getGroupID() const { return mGroupID; } 246 const LLUUID &getGroupID() const { return mGroupID; }
@@ -666,8 +668,6 @@ public:
666 668
667 F32 mDrawDistance; 669 F32 mDrawDistance;
668 670
669 // Access or "maturity" level
670 U8 mAccess; // SIM_ACCESS_MATURE or SIM_ACCESS_PG
671 U64 mGroupPowers; 671 U64 mGroupPowers;
672 BOOL mHideGroupTitle; 672 BOOL mHideGroupTitle;
673 char mGroupTitle[DB_GROUP_TITLE_BUF_SIZE]; /*Flawfinder: ignore*/ // honorific, like "Sir" 673 char mGroupTitle[DB_GROUP_TITLE_BUF_SIZE]; /*Flawfinder: ignore*/ // honorific, like "Sir"
@@ -703,6 +703,8 @@ public:
703 static std::map<LLString, LLString> sTeleportProgressMessages; 703 static std::map<LLString, LLString> sTeleportProgressMessages;
704 704
705private: 705private:
706 // Access or "maturity" level
707 U8 mAccess; // SIM_ACCESS_MATURE or SIM_ACCESS_PG
706 ETeleportState mTeleportState; 708 ETeleportState mTeleportState;
707 LLString mTeleportMessage; 709 LLString mTeleportMessage;
708 710