diff options
author | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
commit | cd17687f01420952712a500107e0f93e7ab8d5f8 (patch) | |
tree | ce48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llfloaterbuy.cpp | |
parent | Second Life viewer sources 1.19.0.5 (diff) | |
download | meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2 meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz |
Second Life viewer sources 1.19.1.0
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llfloaterbuy.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/newview/llfloaterbuy.cpp b/linden/indra/newview/llfloaterbuy.cpp index 47d7ab5..95a7b41 100644 --- a/linden/indra/newview/llfloaterbuy.cpp +++ b/linden/indra/newview/llfloaterbuy.cpp | |||
@@ -121,11 +121,11 @@ void LLFloaterBuy::show(const LLSaleInfo& sale_info) | |||
121 | switch (sale_info.getSaleType()) | 121 | switch (sale_info.getSaleType()) |
122 | { | 122 | { |
123 | case LLSaleInfo::FS_ORIGINAL: | 123 | case LLSaleInfo::FS_ORIGINAL: |
124 | title = sInstance->childGetText("title_buy_text"); | 124 | title = sInstance->getString("title_buy_text"); |
125 | break; | 125 | break; |
126 | case LLSaleInfo::FS_COPY: | 126 | case LLSaleInfo::FS_COPY: |
127 | default: | 127 | default: |
128 | title = sInstance->childGetText("title_buy_copy_text"); | 128 | title = sInstance->getString("title_buy_copy_text"); |
129 | break; | 129 | break; |
130 | } | 130 | } |
131 | title.setArg("[NAME]", node->mName); | 131 | title.setArg("[NAME]", node->mName); |
@@ -165,15 +165,15 @@ void LLFloaterBuy::show(const LLSaleInfo& sale_info) | |||
165 | LLString text = node->mName; | 165 | LLString text = node->mName; |
166 | if (!(next_owner_mask & PERM_COPY)) | 166 | if (!(next_owner_mask & PERM_COPY)) |
167 | { | 167 | { |
168 | text.append(sInstance->childGetText("no_copy_text")); | 168 | text.append(sInstance->getString("no_copy_text")); |
169 | } | 169 | } |
170 | if (!(next_owner_mask & PERM_MODIFY)) | 170 | if (!(next_owner_mask & PERM_MODIFY)) |
171 | { | 171 | { |
172 | text.append(sInstance->childGetText("no_modify_text")); | 172 | text.append(sInstance->getString("no_modify_text")); |
173 | } | 173 | } |
174 | if (!(next_owner_mask & PERM_TRANSFER)) | 174 | if (!(next_owner_mask & PERM_TRANSFER)) |
175 | { | 175 | { |
176 | text.append(sInstance->childGetText("no_transfer_text")); | 176 | text.append(sInstance->getString("no_transfer_text")); |
177 | } | 177 | } |
178 | 178 | ||
179 | row["columns"][1]["column"] = "text"; | 179 | row["columns"][1]["column"] = "text"; |