diff options
author | James Cook <james@lindenlab.com> | 2010-01-22 16:53:45 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-01-22 16:53:45 -0800 |
commit | 1ddd2f2677471cc00465b2a619b138bb054db770 (patch) | |
tree | b2aed37fecdec1eb0f65d8edeabd82577d19482e /indra/newview | |
parent | 830c938ad218f2e5dbe161fa50222a5702ca73cd (diff) |
Converted place info names to SLID-compatible, probably unused
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llpanelplaceprofile.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/indra/newview/llpanelplaceprofile.cpp b/indra/newview/llpanelplaceprofile.cpp index d892e2885b..a80b6f2e0e 100644 --- a/indra/newview/llpanelplaceprofile.cpp +++ b/indra/newview/llpanelplaceprofile.cpp @@ -49,6 +49,7 @@ #include "llappviewer.h" #include "llcallbacklist.h" #include "llfloaterbuycurrency.h" +#include "llslurl.h" // IDEVO #include "llstatusbar.h" #include "llviewercontrol.h" #include "llviewerparcelmgr.h" @@ -441,8 +442,12 @@ void LLPanelPlaceProfile::displaySelectedParcelInfo(LLParcel* parcel, else { // Figure out the owner's name - gCacheName->get(parcel->getOwnerID(), FALSE, - boost::bind(&LLPanelPlaceInfo::nameUpdatedCallback, mParcelOwner, _2, _3)); + // IDEVO + //gCacheName->get(parcel->getOwnerID(), FALSE, + // boost::bind(&LLPanelPlaceInfo::nameUpdatedCallback, mParcelOwner, _2, _3)); + std::string parcel_owner = + LLSLURL::buildCommand("agent", parcel->getOwnerID(), "inspect"); + mParcelOwner->setText(parcel_owner); gCacheName->get(region->getOwner(), FALSE, boost::bind(&LLPanelPlaceInfo::nameUpdatedCallback, mRegionOwnerText, _2, _3)); } |