diff options
author | Leyla Farazha <leyla@lindenlab.com> | 2010-05-13 17:30:42 -0700 |
---|---|---|
committer | Leyla Farazha <leyla@lindenlab.com> | 2010-05-13 17:30:42 -0700 |
commit | 99c115696fadfd4197d93b9b1b6cfb2d0ffb14c5 (patch) | |
tree | 857e9b14bcdd8822a6fdd3c964602cc5adb2152c /indra/newview/llfloaterpay.cpp | |
parent | 2af4875309450fa3d3e266426ada12330489a8c9 (diff) | |
parent | 669953f6950000821c33e77d4c29ef0c905667f9 (diff) |
Merge
Diffstat (limited to 'indra/newview/llfloaterpay.cpp')
-rw-r--r-- | indra/newview/llfloaterpay.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterpay.cpp b/indra/newview/llfloaterpay.cpp index 7dbcc9555c..7b596e9ba3 100644 --- a/indra/newview/llfloaterpay.cpp +++ b/indra/newview/llfloaterpay.cpp @@ -430,12 +430,12 @@ void LLFloaterPay::finishPayUI(const LLUUID& target_id, BOOL is_group) if (is_group) { setTitle(getString("payee_group")); - slurl = LLSLURL::buildCommand("group", target_id, "inspect"); + slurl = LLSLURL("group", target_id, "inspect").getSLURLString(); } else { setTitle(getString("payee_resident")); - slurl = LLSLURL::buildCommand("agent", target_id, "inspect"); + slurl = LLSLURL("agent", target_id, "inspect").getSLURLString(); } childSetText("payee_name", slurl); |