diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llpanelclassified.cpp | 4 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_classified_info.xml | 54 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_pick_info.xml | 14 | 
3 files changed, 60 insertions, 12 deletions
| diff --git a/indra/newview/llpanelclassified.cpp b/indra/newview/llpanelclassified.cpp index 3f5d80c123..1e46827c1a 100644 --- a/indra/newview/llpanelclassified.cpp +++ b/indra/newview/llpanelclassified.cpp @@ -1231,12 +1231,14 @@ void LLPanelClassifiedInfo::processProperties(void* data, EAvatarProcessorType t  			static std::string mature_str = getString("type_mature");  			static std::string pg_str = getString("type_pg"); +			static LLUIString  price_str = getString("l$_price");  			bool mature = is_cf_mature(c_info->flags);  			childSetValue("content_type", mature ? mature_str : pg_str);  			childSetValue("auto_renew", is_cf_auto_renew(c_info->flags)); -			childSetTextArg("price_for_listing", "[PRICE]", llformat("%d", c_info->price_for_listing)); +			price_str.setArg("[PRICE]", llformat("%d", c_info->price_for_listing)); +			childSetValue("price_for_listing", LLSD(price_str));  			setInfoLoaded(true);  		} diff --git a/indra/newview/skins/default/xui/en/panel_classified_info.xml b/indra/newview/skins/default/xui/en/panel_classified_info.xml index 677bdbc3d2..31719aad20 100644 --- a/indra/newview/skins/default/xui/en/panel_classified_info.xml +++ b/indra/newview/skins/default/xui/en/panel_classified_info.xml @@ -18,6 +18,10 @@    name="type_pg">      General Content   </panel.string> + <panel.string +  name="l$_price"> +    L$[PRICE] + </panel.string>      <button       follows="top|right"       height="23" @@ -71,8 +75,11 @@           name="classified_snapshot"           top="20"           width="290" /> -        <text +        <text_editor +         allow_scroll="false" +         bg_visible="false"           follows="left|top|right" +         h_pad="0"           height="35"           width="290"           layout="topleft" @@ -81,35 +88,53 @@           left="10"           top_pad="10"           name="classified_name" +         read_only="true"           text_color="white" +         v_pad="0"           value="[name]"           use_ellipses="true" /> -        <text +        <text_editor +         allow_scroll="false" +         bg_visible="false"           follows="left|top" +         h_pad="0"           height="25"           layout="topleft"           left="10"           name="classified_location" +         read_only="true"           width="290"           word_wrap="true" +         v_pad="0"           value="[loading...]" /> -        <text +        <text_editor +         allow_scroll="false" +         bg_visible="false"           follows="left|top|right" +         h_pad="0"           height="18"           layout="topleft"           left="10"           name="content_type" +         read_only="true"           width="290"           top_pad="5" +         v_pad="0"           value="[content type]" /> -        <text +        <text_editor +         allow_html="true" +         allow_scroll="false" +         bg_visible="false"           follows="left|top|right" +         h_pad="0"           height="18"           layout="topleft"           left="10"           name="category" +         read_only="true"           width="290"           top_pad="5" +         v_pad="0"           value="[category]" />          <check_box           enabled="false" @@ -119,26 +144,37 @@           left="10"           name="auto_renew"           top_pad="5" +         v_pad="0"           width="290" /> -        <text +        <text_editor +         allow_scroll="false" +         bg_visible="false"           follows="left|top" +         h_pad="0"           halign="left"           height="16"           layout="topleft"           left="10"           name="price_for_listing" +         read_only="true"           top_pad="5"           tool_tip="Price for listing." -         width="105"> -         L$[PRICE] -        </text> -        <text +         v_pad="0" +         width="105" /> +        <text_editor +         allow_html="true" +         allow_scroll="false" +         bg_visible="false"           follows="left|top|right" +         h_pad="0"           height="200"           layout="topleft"           left="10" +         max_length="1023"           name="classified_desc" +         read_only="true"           width="290" +         v_pad="0"           value="[description]"           word_wrap="true" />      </panel> diff --git a/indra/newview/skins/default/xui/en/panel_pick_info.xml b/indra/newview/skins/default/xui/en/panel_pick_info.xml index 7489988722..375f369ba7 100644 --- a/indra/newview/skins/default/xui/en/panel_pick_info.xml +++ b/indra/newview/skins/default/xui/en/panel_pick_info.xml @@ -61,8 +61,11 @@           name="pick_snapshot"           top="20"           width="280" /> -        <text +        <text_editor +         allow_scroll="false" +         bg_visible="false"           follows="left|top|right" +         h_pad="0"           height="35"           width="280"           layout="topleft" @@ -71,17 +74,24 @@           left="10"           top_pad="10"           name="pick_name" +         read_only="true"           text_color="white" +         v_pad="0"           value="[name]"           use_ellipses="true" /> -        <text +        <text_editor +         allow_scroll="false" +         bg_visible="false"           follows="left|top|right" +         h_pad="0"           height="25"           layout="topleft"           left="10"           name="pick_location" +         read_only="true"           width="280"           word_wrap="true" +         v_pad="0"           value="[loading...]" />          <text_editor           bg_readonly_color="DkGray2" | 
