diff options
author | Jacek Antonelli | 2008-08-15 23:45:14 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:14 -0500 |
commit | 075b5b41dcf4be2c33a4473889fefcbffb1a8fe5 (patch) | |
tree | 945b9c3a40691e01cd67f6f94324f8b3ded61574 /linden/indra/newview/llpanelplace.cpp | |
parent | Second Life viewer sources 1.18.4.1-RC (diff) | |
download | meta-impy-075b5b41dcf4be2c33a4473889fefcbffb1a8fe5.zip meta-impy-075b5b41dcf4be2c33a4473889fefcbffb1a8fe5.tar.gz meta-impy-075b5b41dcf4be2c33a4473889fefcbffb1a8fe5.tar.bz2 meta-impy-075b5b41dcf4be2c33a4473889fefcbffb1a8fe5.tar.xz |
Second Life viewer sources 1.18.4.2-RC
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llpanelplace.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/newview/llpanelplace.cpp b/linden/indra/newview/llpanelplace.cpp index 2176fdc..93a86dc 100644 --- a/linden/indra/newview/llpanelplace.cpp +++ b/linden/indra/newview/llpanelplace.cpp | |||
@@ -195,21 +195,21 @@ void LLPanelPlace::processParcelInfoReply(LLMessageSystem *msg, void **) | |||
195 | self->mDescEditor->setText(LLString(desc)); | 195 | self->mDescEditor->setText(LLString(desc)); |
196 | 196 | ||
197 | LLString info_text; | 197 | LLString info_text; |
198 | LLUIString traffic = self->childGetText("traffic_text"); | 198 | LLUIString traffic = self->getUIString("traffic_text"); |
199 | traffic.setArg("[TRAFFIC]", llformat("%.0f", dwell)); | 199 | traffic.setArg("[TRAFFIC]", llformat("%.0f", dwell)); |
200 | info_text = traffic; | 200 | info_text = traffic; |
201 | LLUIString area = self->childGetText("area_text"); | 201 | LLUIString area = self->getUIString("area_text"); |
202 | traffic.setArg("[AREA]", llformat("%d", actual_area)); | 202 | area.setArg("[AREA]", llformat("%d", actual_area)); |
203 | info_text += area; | 203 | info_text += area; |
204 | if (flags & DFQ_FOR_SALE) | 204 | if (flags & DFQ_FOR_SALE) |
205 | { | 205 | { |
206 | LLUIString forsale = self->childGetText("forsale_text"); | 206 | LLUIString forsale = self->getUIString("forsale_text"); |
207 | traffic.setArg("[PRICE]", llformat("%d", sale_price)); | 207 | forsale.setArg("[PRICE]", llformat("%d", sale_price)); |
208 | info_text += forsale; | 208 | info_text += forsale; |
209 | } | 209 | } |
210 | if (auction_id != 0) | 210 | if (auction_id != 0) |
211 | { | 211 | { |
212 | LLUIString auction = self->childGetText("auction_text"); | 212 | LLUIString auction = self->getUIString("auction_text"); |
213 | auction.setArg("[ID]", llformat("%010d", auction_id)); | 213 | auction.setArg("[ID]", llformat("%010d", auction_id)); |
214 | info_text += auction; | 214 | info_text += auction; |
215 | } | 215 | } |