diff options
author | Jacek Antonelli | 2008-10-17 20:01:38 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-10-17 20:01:38 -0500 |
commit | fdf944fb0355249d73c4e25ee86e9ffd378e7d4b (patch) | |
tree | 2e5c51fe0e6d5757f984721e01cc097801d927e7 /linden/indra/newview/llpanelplace.cpp | |
parent | Rebranded Windows-specific installer/support files. (diff) | |
parent | Updated source to SL version 1.21.6. (diff) | |
download | meta-impy-fdf944fb0355249d73c4e25ee86e9ffd378e7d4b.zip meta-impy-fdf944fb0355249d73c4e25ee86e9ffd378e7d4b.tar.gz meta-impy-fdf944fb0355249d73c4e25ee86e9ffd378e7d4b.tar.bz2 meta-impy-fdf944fb0355249d73c4e25ee86e9ffd378e7d4b.tar.xz |
Merge branch 'merge-1.21.6' into rebranding
Conflicts:
linden/indra/newview/installers/windows/installer_template.nsi
linden/indra/newview/llappviewer.cpp
Diffstat (limited to 'linden/indra/newview/llpanelplace.cpp')
-rw-r--r-- | linden/indra/newview/llpanelplace.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linden/indra/newview/llpanelplace.cpp b/linden/indra/newview/llpanelplace.cpp index 37ad05e..d8813b3 100644 --- a/linden/indra/newview/llpanelplace.cpp +++ b/linden/indra/newview/llpanelplace.cpp | |||
@@ -270,21 +270,21 @@ void LLPanelPlace::processParcelInfoReply(LLMessageSystem *msg, void **) | |||
270 | } | 270 | } |
271 | 271 | ||
272 | std::string info_text; | 272 | std::string info_text; |
273 | LLUIString traffic = self->getUIString("traffic_text"); | 273 | LLUIString traffic = self->getString("traffic_text"); |
274 | traffic.setArg("[TRAFFIC]", llformat("%d ", (int)dwell)); | 274 | traffic.setArg("[TRAFFIC]", llformat("%d ", (int)dwell)); |
275 | info_text = traffic; | 275 | info_text = traffic; |
276 | LLUIString area = self->getUIString("area_text"); | 276 | LLUIString area = self->getString("area_text"); |
277 | area.setArg("[AREA]", llformat("%d", actual_area)); | 277 | area.setArg("[AREA]", llformat("%d", actual_area)); |
278 | info_text += area; | 278 | info_text += area; |
279 | if (flags & DFQ_FOR_SALE) | 279 | if (flags & DFQ_FOR_SALE) |
280 | { | 280 | { |
281 | LLUIString forsale = self->getUIString("forsale_text"); | 281 | LLUIString forsale = self->getString("forsale_text"); |
282 | forsale.setArg("[PRICE]", llformat("%d", sale_price)); | 282 | forsale.setArg("[PRICE]", llformat("%d", sale_price)); |
283 | info_text += forsale; | 283 | info_text += forsale; |
284 | } | 284 | } |
285 | if (auction_id != 0) | 285 | if (auction_id != 0) |
286 | { | 286 | { |
287 | LLUIString auction = self->getUIString("auction_text"); | 287 | LLUIString auction = self->getString("auction_text"); |
288 | auction.setArg("[ID]", llformat("%010d ", auction_id)); | 288 | auction.setArg("[ID]", llformat("%010d ", auction_id)); |
289 | info_text += auction; | 289 | info_text += auction; |
290 | } | 290 | } |