aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llgivemoney.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:57 -0500
committerJacek Antonelli2008-08-15 23:44:57 -0500
commitda68d3a57ecb27eba5d7efb8ff77d9640c0be65e (patch)
treef2fa2b9ed6e8cf49c8a3cb2a1893c4e5c61916a1 /linden/indra/newview/llgivemoney.cpp
parentSecond Life viewer sources 1.15.1.3 (diff)
downloadmeta-impy-da68d3a57ecb27eba5d7efb8ff77d9640c0be65e.zip
meta-impy-da68d3a57ecb27eba5d7efb8ff77d9640c0be65e.tar.gz
meta-impy-da68d3a57ecb27eba5d7efb8ff77d9640c0be65e.tar.bz2
meta-impy-da68d3a57ecb27eba5d7efb8ff77d9640c0be65e.tar.xz
Second Life viewer sources 1.16.0.5
Diffstat (limited to '')
-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 }