aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llcurrencyuimanager.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:50 -0500
committerJacek Antonelli2008-08-15 23:44:50 -0500
commit89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch)
treebcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/newview/llcurrencyuimanager.cpp
parentSecond Life viewer sources 1.13.3.2 (diff)
downloadmeta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz
Second Life viewer sources 1.14.0.0
Diffstat (limited to 'linden/indra/newview/llcurrencyuimanager.cpp')
-rw-r--r--linden/indra/newview/llcurrencyuimanager.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/linden/indra/newview/llcurrencyuimanager.cpp b/linden/indra/newview/llcurrencyuimanager.cpp
index 5893836..615d9fb 100644
--- a/linden/indra/newview/llcurrencyuimanager.cpp
+++ b/linden/indra/newview/llcurrencyuimanager.cpp
@@ -144,10 +144,10 @@ void LLCurrencyUIManager::Impl::updateCurrencyInfo()
144 } 144 }
145 145
146 LLXMLRPCValue keywordArgs = LLXMLRPCValue::createStruct(); 146 LLXMLRPCValue keywordArgs = LLXMLRPCValue::createStruct();
147 keywordArgs.appendString("agentId", 147 keywordArgs.appendString("agentId", gAgent.getID().asString());
148 gAgent.getID().getString()); 148 keywordArgs.appendString(
149 keywordArgs.appendString("secureSessionId", 149 "secureSessionId",
150 gAgent.getSecureSessionID().getString()); 150 gAgent.getSecureSessionID().asString());
151 keywordArgs.appendInt("currencyBuy", mUserCurrencyBuy); 151 keywordArgs.appendInt("currencyBuy", mUserCurrencyBuy);
152 152
153 LLXMLRPCValue params = LLXMLRPCValue::createArray(); 153 LLXMLRPCValue params = LLXMLRPCValue::createArray();
@@ -191,10 +191,10 @@ void LLCurrencyUIManager::Impl::startCurrencyBuy(const std::string& password)
191 mCurrencyChanged = false; 191 mCurrencyChanged = false;
192 192
193 LLXMLRPCValue keywordArgs = LLXMLRPCValue::createStruct(); 193 LLXMLRPCValue keywordArgs = LLXMLRPCValue::createStruct();
194 keywordArgs.appendString("agentId", 194 keywordArgs.appendString("agentId", gAgent.getID().asString());
195 gAgent.getID().getString()); 195 keywordArgs.appendString(
196 keywordArgs.appendString("secureSessionId", 196 "secureSessionId",
197 gAgent.getSecureSessionID().getString()); 197 gAgent.getSecureSessionID().asString());
198 keywordArgs.appendInt("currencyBuy", mUserCurrencyBuy); 198 keywordArgs.appendInt("currencyBuy", mUserCurrencyBuy);
199 keywordArgs.appendInt("estimatedCost", mSiteCurrencyEstimatedCost); 199 keywordArgs.appendInt("estimatedCost", mSiteCurrencyEstimatedCost);
200 keywordArgs.appendString("confirm", mSiteConfirm); 200 keywordArgs.appendString("confirm", mSiteConfirm);