summaryrefslogtreecommitdiff
path: root/indra/newview/fsfloatersearch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/fsfloatersearch.cpp')
-rw-r--r--indra/newview/fsfloatersearch.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/indra/newview/fsfloatersearch.cpp b/indra/newview/fsfloatersearch.cpp
index ef5f70d34f..7e0a873452 100644
--- a/indra/newview/fsfloatersearch.cpp
+++ b/indra/newview/fsfloatersearch.cpp
@@ -322,7 +322,7 @@ void FSFloaterSearch::onClose(bool app_quitting)
}
}
-BOOL FSFloaterSearch::postBuild()
+bool FSFloaterSearch::postBuild()
{
childSetAction("people_profile_btn", boost::bind(&FSFloaterSearch::onBtnPeopleProfile, this));
childSetAction("people_message_btn", boost::bind(&FSFloaterSearch::onBtnPeopleIM, this));
@@ -813,7 +813,7 @@ FSPanelSearchPeople::~FSPanelSearchPeople()
}
}
-BOOL FSPanelSearchPeople::postBuild()
+bool FSPanelSearchPeople::postBuild()
{
mSearchComboBox = findChild<LLSearchComboBox>("people_edit");
mSearchResults = findChild<LLScrollListCtrl>("search_results_people");
@@ -1161,7 +1161,7 @@ FSPanelSearchGroups::~FSPanelSearchGroups()
{
}
-BOOL FSPanelSearchGroups::postBuild()
+bool FSPanelSearchGroups::postBuild()
{
mSearchComboBox = findChild<LLSearchComboBox>("groups_edit");
mSearchResults = findChild<LLScrollListCtrl>("search_results_groups");
@@ -1478,7 +1478,7 @@ FSPanelSearchPlaces::~FSPanelSearchPlaces()
{
}
-BOOL FSPanelSearchPlaces::postBuild()
+bool FSPanelSearchPlaces::postBuild()
{
mSearchComboBox = findChild<LLSearchComboBox>("places_edit");
mSearchResults = findChild<LLScrollListCtrl>("search_results_places");
@@ -1670,8 +1670,8 @@ void FSPanelSearchPlaces::processSearchReply(LLMessageSystem* msg, void**)
LLUUID query_id;
LLUUID parcel_id;
std::string name;
- BOOL for_sale;
- BOOL auction;
+ bool for_sale;
+ bool auction;
F32 dwell;
msg->getUUID("AgentData", "AgentID", agent_id);
@@ -1837,7 +1837,7 @@ FSPanelSearchLand::~FSPanelSearchLand()
{
}
-BOOL FSPanelSearchLand::postBuild()
+bool FSPanelSearchLand::postBuild()
{
mSearchResults = getChild<LLScrollListCtrl>("search_results_land");
mPriceEditor = findChild<LLLineEditor>("price_edit");
@@ -2057,8 +2057,8 @@ void FSPanelSearchLand::processSearchReply(LLMessageSystem* msg, void**)
std::string name;
std::string land_sku;
std::string land_type;
- BOOL auction;
- BOOL for_sale;
+ bool auction;
+ bool for_sale;
S32 price;
S32 area;
@@ -2242,7 +2242,7 @@ FSPanelSearchClassifieds::~FSPanelSearchClassifieds()
{
}
-BOOL FSPanelSearchClassifieds::postBuild()
+bool FSPanelSearchClassifieds::postBuild()
{
mSearchComboBox = findChild<LLSearchComboBox>("classifieds_edit");
mSearchResults = getChild<LLScrollListCtrl>("search_results_classifieds");
@@ -2303,7 +2303,7 @@ void FSPanelSearchClassifieds::find()
return;
}
U32 category = mClassifiedsCategory->getValue().asInteger();
- BOOL auto_renew = FALSE;
+ bool auto_renew = FALSE;
U32 flags = pack_classified_flags_request(auto_renew, inc_pg, inc_mature, inc_adult);
mResultsReceived = 0;
@@ -2564,7 +2564,7 @@ FSPanelSearchEvents::~FSPanelSearchEvents()
{
}
-BOOL FSPanelSearchEvents::postBuild()
+bool FSPanelSearchEvents::postBuild()
{
mSearchComboBox = findChild<LLSearchComboBox>("events_edit");
mSearchResults = getChild<LLScrollListCtrl>("search_results_events");
@@ -3035,7 +3035,7 @@ FSPanelSearchWeb::FSPanelSearchWeb() : FSSearchPanelBase()
}
}
-BOOL FSPanelSearchWeb::postBuild()
+bool FSPanelSearchWeb::postBuild()
{
mWebBrowser = getChild<LLMediaCtrl>("search_browser");
return TRUE;