summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2008-06-06 04:23:40 +0000
committerSteven Bennetts <steve@lindenlab.com>2008-06-06 04:23:40 +0000
commit2b094c39c292b4952c2bcea2eeba7c6abc085b23 (patch)
treea5a19c4c1daaa5a5623bd8fdd7748528590d9b75 /indra/newview
parent015104ac24f046d5df4d9cc085420ce832168785 (diff)
DEV-16277 superfluous "Price" text appears in Edit tools
Note: trivial change.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llpanelpermissions.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/indra/newview/llpanelpermissions.cpp b/indra/newview/llpanelpermissions.cpp
index 449783285c..ae0b9c2811 100644
--- a/indra/newview/llpanelpermissions.cpp
+++ b/indra/newview/llpanelpermissions.cpp
@@ -230,7 +230,7 @@ void LLPanelPermissions::refresh()
}
childSetEnabled("Cost",false);
- childSetText("Cost",LLString(childGetText("Cost Default")));
+ childSetText("Cost",getString("Cost Default"));
childSetText("Edit Cost",LLString::null);
childSetEnabled("Edit Cost",false);
@@ -446,11 +446,11 @@ void LLPanelPermissions::refresh()
// If there are multiple items for sale then set text to PRICE PER UNIT.
if (num_for_sale > 1)
{
- childSetText("Cost",childGetText("Cost Per Unit"));
+ childSetText("Cost",getString("Cost Per Unit"));
}
else
{
- childSetText("Cost",childGetText("Cost Default"));
+ childSetText("Cost",getString("Cost Default"));
}
LLLineEditor *editPrice = getChild<LLLineEditor>("Edit Cost");
@@ -460,11 +460,11 @@ void LLPanelPermissions::refresh()
// set to the actual cost.
if (num_for_sale > 0 && is_for_sale_mixed)
{
- childSetText("Edit Cost",childGetText("Sale Mixed"));
+ childSetText("Edit Cost",getString("Sale Mixed"));
}
else if (num_for_sale > 0 && is_sale_price_mixed)
{
- childSetText("Edit Cost",childGetText("Cost Mixed"));
+ childSetText("Edit Cost",getString("Cost Mixed"));
}
else
{
@@ -491,15 +491,15 @@ void LLPanelPermissions::refresh()
// If multiple items are for sale, set text to TOTAL PRICE.
if (num_for_sale > 1)
- childSetText("Cost",childGetText("Cost Total"));
+ childSetText("Cost",getString("Cost Total"));
else
- childSetText("Cost",childGetText("Cost Default"));
+ childSetText("Cost",getString("Cost Default"));
}
// This is a public object.
else
{
childSetEnabled("Cost",false);
- childSetText("Cost",childGetText("Cost Default"));
+ childSetText("Cost",getString("Cost Default"));
childSetText("Edit Cost",LLString::null);
childSetEnabled("Edit Cost",false);
@@ -1057,7 +1057,7 @@ void LLPanelPermissions::setAllSaleInfo()
{
// Don't extract the price if it's labeled as MIXED or is empty.
const char *editPriceString = editPrice->getText().c_str();
- if (0 != strcmp(editPriceString,childGetText("Cost Mixed").c_str()) &&
+ if (0 != strcmp(editPriceString,getString("Cost Mixed").c_str()) &&
0 != strcmp(editPriceString,""))
{
price = atoi(editPriceString);