aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llgivemoney.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llgivemoney.cpp')
-rw-r--r--linden/indra/newview/llgivemoney.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llgivemoney.cpp b/linden/indra/newview/llgivemoney.cpp
index e89ab3d..9ae6c67 100644
--- a/linden/indra/newview/llgivemoney.cpp
+++ b/linden/indra/newview/llgivemoney.cpp
@@ -319,7 +319,7 @@ void LLFloaterPay::payViaObject(money_callback callback, const LLUUID& object_id
319 LLViewerObject* object = gObjectList.findObject(object_id); 319 LLViewerObject* object = gObjectList.findObject(object_id);
320 if (!object) return; 320 if (!object) return;
321 321
322 LLFloaterPay *floater = new LLFloaterPay("Give Money", callback, object_id, TRUE); 322 LLFloaterPay *floater = new LLFloaterPay("Give L$", callback, object_id, TRUE);
323 if (!floater) return; 323 if (!floater) return;
324 324
325 LLSelectNode* node = floater->mObjectSelection->getFirstRootNode(); 325 LLSelectNode* node = floater->mObjectSelection->getFirstRootNode();
@@ -352,7 +352,7 @@ void LLFloaterPay::payDirectly(money_callback callback,
352 const LLUUID& target_id, 352 const LLUUID& target_id,
353 BOOL is_group) 353 BOOL is_group)
354{ 354{
355 LLFloaterPay *floater = new LLFloaterPay("Give Money", callback, target_id, FALSE); 355 LLFloaterPay *floater = new LLFloaterPay("Give L$", callback, target_id, FALSE);
356 if (!floater) return; 356 if (!floater) return;
357 357
358 floater->childSetVisible("amount", TRUE); 358 floater->childSetVisible("amount", TRUE);
@@ -476,7 +476,7 @@ void LLFloaterPay::give(S32 amount)
476 } 476 }
477 else 477 else
478 { 478 {
479 // just transfer the money 479 // just transfer the L$
480 mCallback(mTargetUUID, gAgent.getRegion(), amount, mTargetIsGroup, TRANS_GIFT, LLString::null); 480 mCallback(mTargetUUID, gAgent.getRegion(), amount, mTargetIsGroup, TRANS_GIFT, LLString::null);
481 } 481 }
482 } 482 }