aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpanelplace.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llpanelplace.cpp8
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 }