diff options
author | Dessie Linden <dessie@lindenlab.com> | 2010-07-09 09:18:03 -0700 |
---|---|---|
committer | Dessie Linden <dessie@lindenlab.com> | 2010-07-09 09:18:03 -0700 |
commit | c371f359dc211f551c9ee3a999a77cee8027c6fa (patch) | |
tree | e41e9b7d9c8ad21743387cdad10178c6d0b3d96b /indra/newview/llfloaterland.cpp | |
parent | 0a2fc3e4b93c13854a1776456ebed7f53ceb67e8 (diff) | |
parent | d8f795aa9ceaae73ad8890a1110fa6b4045843c7 (diff) |
Merged from viewer-release
Diffstat (limited to 'indra/newview/llfloaterland.cpp')
-rw-r--r-- | indra/newview/llfloaterland.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp index 98f940c233..913bb676b0 100644 --- a/indra/newview/llfloaterland.cpp +++ b/indra/newview/llfloaterland.cpp @@ -58,6 +58,7 @@ #include "llpanellandaudio.h" #include "llpanellandmedia.h" #include "llradiogroup.h" +#include "llresmgr.h" // getMonetaryString #include "llscrolllistctrl.h" #include "llscrolllistitem.h" #include "llscrolllistcell.h" @@ -739,7 +740,8 @@ void LLPanelLandGeneral::refresh() cost_per_sqm = (F32)parcel->getSalePrice() / (F32)area; } - mSaleInfoForSale1->setTextArg("[PRICE]", llformat("%d", parcel->getSalePrice())); + S32 price = parcel->getSalePrice(); + mSaleInfoForSale1->setTextArg("[PRICE]", LLResMgr::getInstance()->getMonetaryString(price)); mSaleInfoForSale1->setTextArg("[PRICE_PER_SQM]", llformat("%.1f", cost_per_sqm)); if (can_be_sold) { |