diff options
Diffstat (limited to 'linden/indra/newview/llcallingcard.cpp')
-rw-r--r-- | linden/indra/newview/llcallingcard.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/newview/llcallingcard.cpp b/linden/indra/newview/llcallingcard.cpp index 3a50cea..3252b30 100644 --- a/linden/indra/newview/llcallingcard.cpp +++ b/linden/indra/newview/llcallingcard.cpp | |||
@@ -78,7 +78,7 @@ public: | |||
78 | 78 | ||
79 | public: | 79 | public: |
80 | LLUUID mAvatarID; | 80 | LLUUID mAvatarID; |
81 | LLString mName; | 81 | std::string mName; |
82 | LLVector3d mGlobalPositionEstimate; | 82 | LLVector3d mGlobalPositionEstimate; |
83 | bool mHaveInfo; | 83 | bool mHaveInfo; |
84 | bool mHaveCoarseInfo; | 84 | bool mHaveCoarseInfo; |
@@ -240,7 +240,7 @@ void LLAvatarTracker::getDegreesAndDist(F32& rot, | |||
240 | rot = F32(RAD_TO_DEG * atan2(to_vec.mdV[VY], to_vec.mdV[VX])); | 240 | rot = F32(RAD_TO_DEG * atan2(to_vec.mdV[VY], to_vec.mdV[VX])); |
241 | } | 241 | } |
242 | 242 | ||
243 | const LLString& LLAvatarTracker::getName() | 243 | const std::string& LLAvatarTracker::getName() |
244 | { | 244 | { |
245 | if(mTrackingData) | 245 | if(mTrackingData) |
246 | { | 246 | { |
@@ -248,7 +248,7 @@ const LLString& LLAvatarTracker::getName() | |||
248 | } | 248 | } |
249 | else | 249 | else |
250 | { | 250 | { |
251 | return LLString::null; | 251 | return LLStringUtil::null; |
252 | } | 252 | } |
253 | } | 253 | } |
254 | 254 | ||
@@ -592,7 +592,7 @@ void LLAvatarTracker::processChange(LLMessageSystem* msg) | |||
592 | if((mBuddyInfo[agent_id]->getRightsGrantedFrom() ^ new_rights) & LLRelationship::GRANT_MODIFY_OBJECTS) | 592 | if((mBuddyInfo[agent_id]->getRightsGrantedFrom() ^ new_rights) & LLRelationship::GRANT_MODIFY_OBJECTS) |
593 | { | 593 | { |
594 | std::string first, last; | 594 | std::string first, last; |
595 | LLStringBase<char>::format_map_t args; | 595 | LLStringUtil::format_map_t args; |
596 | if(gCacheName->getName(agent_id, first, last)) | 596 | if(gCacheName->getName(agent_id, first, last)) |
597 | { | 597 | { |
598 | args["[FIRST_NAME]"] = first; | 598 | args["[FIRST_NAME]"] = first; |
@@ -638,7 +638,7 @@ void LLAvatarTracker::processNotify(LLMessageSystem* msg, bool online) | |||
638 | tracking_id = mTrackingData->mAvatarID; | 638 | tracking_id = mTrackingData->mAvatarID; |
639 | } | 639 | } |
640 | BOOL notify = FALSE; | 640 | BOOL notify = FALSE; |
641 | LLString::format_map_t args; | 641 | LLStringUtil::format_map_t args; |
642 | for(S32 i = 0; i < count; ++i) | 642 | for(S32 i = 0; i < count; ++i) |
643 | { | 643 | { |
644 | msg->getUUIDFast(_PREHASH_AgentBlock, _PREHASH_AgentID, agent_id, i); | 644 | msg->getUUIDFast(_PREHASH_AgentBlock, _PREHASH_AgentID, agent_id, i); |