diff options
author | Jacek Antonelli | 2008-08-15 23:45:42 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:42 -0500 |
commit | ce28e056c20bf2723f565bbf464b87781ec248a2 (patch) | |
tree | ef7b0501c4de4b631a916305cbc2a5fdc125e52d /linden/indra/newview/llassetuploadresponders.cpp | |
parent | Second Life viewer sources 1.19.1.4b (diff) | |
download | meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.zip meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.gz meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.bz2 meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.xz |
Second Life viewer sources 1.20.2
Diffstat (limited to 'linden/indra/newview/llassetuploadresponders.cpp')
-rw-r--r-- | linden/indra/newview/llassetuploadresponders.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llassetuploadresponders.cpp b/linden/indra/newview/llassetuploadresponders.cpp index b024fc2..2691f71 100644 --- a/linden/indra/newview/llassetuploadresponders.cpp +++ b/linden/indra/newview/llassetuploadresponders.cpp | |||
@@ -159,7 +159,7 @@ void LLAssetUploadResponder::uploadFailure(const LLSD& content) | |||
159 | // deal with L$ errors | 159 | // deal with L$ errors |
160 | if (reason == "insufficient funds") | 160 | if (reason == "insufficient funds") |
161 | { | 161 | { |
162 | LLFloaterBuyCurrency::buyCurrency("Uploading costs", gGlobalEconomy->getPriceUpload()); | 162 | LLFloaterBuyCurrency::buyCurrency("Uploading costs", LLGlobalEconomy::Singleton::getInstance()->getPriceUpload()); |
163 | } | 163 | } |
164 | else | 164 | else |
165 | { | 165 | { |
@@ -209,7 +209,7 @@ void LLNewAgentInventoryResponder::uploadComplete(const LLSD& content) | |||
209 | gAgent.sendReliableMessage(); | 209 | gAgent.sendReliableMessage(); |
210 | 210 | ||
211 | LLString::format_map_t args; | 211 | LLString::format_map_t args; |
212 | args["[AMOUNT]"] = llformat("%d",gGlobalEconomy->getPriceUpload()); | 212 | args["[AMOUNT]"] = llformat("%d",LLGlobalEconomy::Singleton::getInstance()->getPriceUpload()); |
213 | LLNotifyBox::showXml("UploadPayment", args); | 213 | LLNotifyBox::showXml("UploadPayment", args); |
214 | } | 214 | } |
215 | 215 | ||