diff options
author | McCabe Maxsted | 2010-04-26 20:06:23 -0700 |
---|---|---|
committer | McCabe Maxsted | 2010-04-26 20:06:23 -0700 |
commit | e563e2c2cc66fa9f3b47c4814d70f9800d957026 (patch) | |
tree | a2a9ca5bfeaf747b76b744f007da061ad15110c2 /linden/indra/newview/llassetuploadresponders.cpp | |
parent | Merge commit 'jacek/next' into next (diff) | |
download | meta-impy-e563e2c2cc66fa9f3b47c4814d70f9800d957026.zip meta-impy-e563e2c2cc66fa9f3b47c4814d70f9800d957026.tar.gz meta-impy-e563e2c2cc66fa9f3b47c4814d70f9800d957026.tar.bz2 meta-impy-e563e2c2cc66fa9f3b47c4814d70f9800d957026.tar.xz |
Ported currency changes from Hippo (#237) and fixed some labels Hippo missed (also fixed #200 in the process)
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llassetuploadresponders.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/newview/llassetuploadresponders.cpp b/linden/indra/newview/llassetuploadresponders.cpp index 001d2e9..aff1fb8 100644 --- a/linden/indra/newview/llassetuploadresponders.cpp +++ b/linden/indra/newview/llassetuploadresponders.cpp | |||
@@ -63,6 +63,8 @@ | |||
63 | #include "llscrolllistctrl.h" | 63 | #include "llscrolllistctrl.h" |
64 | #include "llsdserialize.h" | 64 | #include "llsdserialize.h" |
65 | 65 | ||
66 | #include "hippoGridManager.h" | ||
67 | |||
66 | // When uploading multiple files, don't display any of them when uploading more than this number. | 68 | // When uploading multiple files, don't display any of them when uploading more than this number. |
67 | static const S32 FILE_COUNT_DISPLAY_THRESHOLD = 5; | 69 | static const S32 FILE_COUNT_DISPLAY_THRESHOLD = 5; |
68 | 70 | ||
@@ -227,6 +229,7 @@ void LLNewAgentInventoryResponder::uploadComplete(const LLSD& content) | |||
227 | 229 | ||
228 | LLSD args; | 230 | LLSD args; |
229 | args["AMOUNT"] = llformat("%d", expected_upload_cost); | 231 | args["AMOUNT"] = llformat("%d", expected_upload_cost); |
232 | args["CURRENCY"] = gHippoGridManager->getConnectedGrid()->getCurrencySymbol(); | ||
230 | LLNotifications::instance().add("UploadPayment", args); | 233 | LLNotifications::instance().add("UploadPayment", args); |
231 | } | 234 | } |
232 | 235 | ||