diff options
author | James Cook <james@lindenlab.com> | 2010-05-13 16:30:15 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-05-13 16:30:15 -0700 |
commit | 894261e4e4aea8a15bef33fdf34807812a1c73bb (patch) | |
tree | 862474065b719f2d4d7287733c387bea6952a7b5 /indra/newview/llpanelplaceprofile.cpp | |
parent | 8b524549902b780c2833691368bc35bdb1837cd9 (diff) |
Fix build errors introduced in last merge
Diffstat (limited to 'indra/newview/llpanelplaceprofile.cpp')
-rw-r--r-- | indra/newview/llpanelplaceprofile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelplaceprofile.cpp b/indra/newview/llpanelplaceprofile.cpp index 41ca237b1e..52a46a45b6 100644 --- a/indra/newview/llpanelplaceprofile.cpp +++ b/indra/newview/llpanelplaceprofile.cpp @@ -448,7 +448,7 @@ void LLPanelPlaceProfile::displaySelectedParcelInfo(LLParcel* parcel, //gCacheName->get(parcel->getOwnerID(), FALSE, // boost::bind(&LLPanelPlaceInfo::nameUpdatedCallback, mParcelOwner, _2, _3)); std::string parcel_owner = - LLSLURL::buildCommand("agent", parcel->getOwnerID(), "inspect"); + LLSLURL("agent", parcel->getOwnerID(), "inspect").getSLURLString(); mParcelOwner->setText(parcel_owner); gCacheName->get(region->getOwner(), false, boost::bind(&LLPanelPlaceInfo::onNameCache, mRegionOwnerText, _2)); |