summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterpay.cpp
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2010-05-13 16:30:15 -0700
committerJames Cook <james@lindenlab.com>2010-05-13 16:30:15 -0700
commit894261e4e4aea8a15bef33fdf34807812a1c73bb (patch)
tree862474065b719f2d4d7287733c387bea6952a7b5 /indra/newview/llfloaterpay.cpp
parent8b524549902b780c2833691368bc35bdb1837cd9 (diff)
Fix build errors introduced in last merge
Diffstat (limited to 'indra/newview/llfloaterpay.cpp')
-rw-r--r--indra/newview/llfloaterpay.cpp4
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);