diff options
| author | andreykproductengine <akleshchev@productengine.com> | 2014-03-31 16:38:31 +0300 | 
|---|---|---|
| committer | andreykproductengine <akleshchev@productengine.com> | 2014-03-31 16:38:31 +0300 | 
| commit | 435c1950213be95f359a5d33e23e74cc2e8c76a0 (patch) | |
| tree | 33c6b1fb7b22cb40ed575546f9b0f419688c587a | |
| parent | f7b66fadf65365797025ec56773cad8cf9c8900f (diff) | |
MAINT-1696 FIXED "Owner" name is not clickable in "Place Profile" dialog if region is group owned
| -rwxr-xr-x | indra/newview/llpanelplaceprofile.cpp | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llpanelplaceprofile.cpp b/indra/newview/llpanelplaceprofile.cpp index 3b8acdca90..b636b76b07 100755 --- a/indra/newview/llpanelplaceprofile.cpp +++ b/indra/newview/llpanelplaceprofile.cpp @@ -488,8 +488,9 @@ void LLPanelPlaceProfile::displaySelectedParcelInfo(LLParcel* parcel,  				gCacheName->getGroup(parcel->getGroupID(),  								boost::bind(&LLPanelPlaceInfo::onNameCache, mRegionGroupText, _2)); -				gCacheName->getGroup(parcel->getGroupID(), -								boost::bind(&LLPanelPlaceInfo::onNameCache, mParcelOwner, _2)); +				std::string owner = +					LLSLURL("group", parcel->getGroupID(), "inspect").getSLURLString(); +				mParcelOwner->setText(owner);  			}  			else  			{  | 
