diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-05-17 14:50:33 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-05-17 14:50:33 -0700 |
commit | ecdc5cf7647c0cbbb057dba2f4bdeaafc3f5a93f (patch) | |
tree | a723c7090aeea092f4b80f430caead67ba22be4b /indra/newview/llagent.h | |
parent | 9d8bf7f401230386a723055d54dd9dbb2be7a037 (diff) |
EXP-1928: Handling the rare case that the user preferences cannot be successfully changed, and reporting that to the user.
Diffstat (limited to 'indra/newview/llagent.h')
-rw-r--r-- | indra/newview/llagent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llagent.h b/indra/newview/llagent.h index 07ceaf11b1..cbfe8af90c 100644 --- a/indra/newview/llagent.h +++ b/indra/newview/llagent.h @@ -580,7 +580,7 @@ public: inline bool hasFailedTeleportRequest() {return (mFailedTeleportRequest != NULL);}; void restartFailedTeleportRequest(); void clearFailedTeleportRequest(); - void setMaturityRatingChangeDuringTeleport(int pMaturityRatingChange); + void setMaturityRatingChangeDuringTeleport(U8 pMaturityRatingChange); private: friend class LLTeleportRequest; @@ -595,7 +595,7 @@ private: boost::signals2::connection mTeleportFailedSlot; bool mIsMaturityRatingChangingDuringTeleport; - int mMaturityRatingChange; + U8 mMaturityRatingChange; void teleportRequest(const U64& region_handle, const LLVector3& pos_local, // Go to a named location home |