aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/hippoGridManager.cpp
diff options
context:
space:
mode:
authorMcCabe Maxsted2010-07-07 11:40:20 -0700
committerMcCabe Maxsted2010-07-07 11:40:20 -0700
commit35eaded540f31378845b7a88e212a86a68825040 (patch)
tree05a91e33fe0de6afa555afa2c350b889e770bbcb /linden/indra/newview/hippoGridManager.cpp
parentCleaned up the grid manager layout some (diff)
downloadmeta-impy-35eaded540f31378845b7a88e212a86a68825040.zip
meta-impy-35eaded540f31378845b7a88e212a86a68825040.tar.gz
meta-impy-35eaded540f31378845b7a88e212a86a68825040.tar.bz2
meta-impy-35eaded540f31378845b7a88e212a86a68825040.tar.xz
Updated hipporestrequest code to hippo 0.6.3
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/hippoGridManager.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/linden/indra/newview/hippoGridManager.cpp b/linden/indra/newview/hippoGridManager.cpp
index 0160233..e89e3ff 100644
--- a/linden/indra/newview/hippoGridManager.cpp
+++ b/linden/indra/newview/hippoGridManager.cpp
@@ -160,7 +160,10 @@ const std::string& HippoGridInfo::getRealCurrencySymbol() const
160void HippoGridInfo::setPlatform(Platform platform) 160void HippoGridInfo::setPlatform(Platform platform)
161{ 161{
162 mPlatform = platform; 162 mPlatform = platform;
163 mCurrencySymbol = (mPlatform == PLATFORM_SECONDLIFE)? "L$": "OS$"; 163 if (mPlatform == PLATFORM_SECONDLIFE)
164 {
165 mCurrencySymbol = "L$";
166 }
164} 167}
165 168
166 169