summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRye <rye@alchemyviewer.org>2025-11-27 09:02:41 -0500
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-11-27 21:09:39 +0200
commit449a5a1467390297d568720a87de2851589bef15 (patch)
tree3b9e308f5ad1519c9fbbfbb3296404cb3416905d
parentbe3810d559741deb500fde68948874bc6f10610e (diff)
Fix tabs in various source files introduced as part of legacy search
Signed-off-by: Rye <rye@alchemyviewer.org>
-rw-r--r--indra/newview/llpaneldirbrowser.cpp30
-rw-r--r--indra/newview/llpaneldirbrowser.h2
-rw-r--r--indra/newview/llpaneldirevents.cpp8
3 files changed, 20 insertions, 20 deletions
diff --git a/indra/newview/llpaneldirbrowser.cpp b/indra/newview/llpaneldirbrowser.cpp
index 2105becfb6..8c981cad55 100644
--- a/indra/newview/llpaneldirbrowser.cpp
+++ b/indra/newview/llpaneldirbrowser.cpp
@@ -422,7 +422,7 @@ void LLPanelDirBrowser::processDirPeopleReply(LLMessageSystem *msg, void**)
for (S32 i = 0; i < rows; i++)
{
msg->getStringFast(_PREHASH_QueryReplies,_PREHASH_FirstName, first_name, i);
- msg->getStringFast(_PREHASH_QueryReplies,_PREHASH_LastName, last_name, i);
+ msg->getStringFast(_PREHASH_QueryReplies,_PREHASH_LastName, last_name, i);
msg->getUUIDFast( _PREHASH_QueryReplies,_PREHASH_AgentID, agent_id, i);
// msg->getU8Fast( _PREHASH_QueryReplies,_PREHASH_Online, online, i);
// unused
@@ -469,10 +469,10 @@ void LLPanelDirBrowser::processDirPeopleReply(LLMessageSystem *msg, void**)
void LLPanelDirBrowser::processDirPlacesReply(LLMessageSystem* msg, void**)
{
- LLUUID agent_id;
- LLUUID query_id;
- LLUUID parcel_id;
- std::string name;
+ LLUUID agent_id;
+ LLUUID query_id;
+ LLUUID parcel_id;
+ std::string name;
bool is_for_sale = false;
bool is_auction = false;
F32 dwell;
@@ -557,8 +557,8 @@ void LLPanelDirBrowser::processDirEventsReply(LLMessageSystem* msg, void**)
LLUUID agent_id;
LLUUID query_id;
LLUUID owner_id;
- std::string name;
- std::string date;
+ std::string name;
+ std::string date;
bool show_pg = gSavedSettings.getBOOL("ShowPGEvents");
bool show_mature = gSavedSettings.getBOOL("ShowMatureEvents");
bool show_adult = gSavedSettings.getBOOL("ShowAdultEvents");
@@ -703,7 +703,7 @@ void LLPanelDirBrowser::processDirGroupsReply(LLMessageSystem* msg, void**)
LLUUID query_id;
LLUUID group_id;
- std::string group_name;
+ std::string group_name;
S32 members;
F32 search_order;
@@ -733,10 +733,10 @@ void LLPanelDirBrowser::processDirGroupsReply(LLMessageSystem* msg, void**)
for (i = 0; i < rows; i++)
{
- msg->getUUIDFast(_PREHASH_QueryReplies, _PREHASH_GroupID, group_id, i );
- msg->getStringFast(_PREHASH_QueryReplies, _PREHASH_GroupName, group_name, i);
- msg->getS32Fast(_PREHASH_QueryReplies, _PREHASH_Members, members, i );
- msg->getF32Fast(_PREHASH_QueryReplies, _PREHASH_SearchOrder, search_order, i );
+ msg->getUUIDFast(_PREHASH_QueryReplies, _PREHASH_GroupID, group_id, i );
+ msg->getStringFast(_PREHASH_QueryReplies, _PREHASH_GroupName, group_name, i);
+ msg->getS32Fast(_PREHASH_QueryReplies, _PREHASH_Members, members, i );
+ msg->getF32Fast(_PREHASH_QueryReplies, _PREHASH_SearchOrder, search_order, i );
if (group_id.isNull())
{
@@ -831,8 +831,8 @@ void LLPanelDirBrowser::processDirClassifiedReply(LLMessageSystem* msg, void**)
{
LLUUID classified_id;
std::string name;
- U32 creation_date = 0; // unix timestamp
- U32 expiration_date = 0; // future use
+ U32 creation_date = 0; // unix timestamp
+ U32 expiration_date = 0; // future use
S32 price_for_listing = 0;
msg->getUUID("QueryReplies", "ClassifiedID", classified_id, i);
msg->getString("QueryReplies", "Name", name, i);
@@ -863,7 +863,7 @@ void LLPanelDirBrowser::processDirLandReply(LLMessageSystem *msg, void**)
LLUUID agent_id;
LLUUID query_id;
LLUUID parcel_id;
- std::string name;
+ std::string name;
std::string land_sku;
std::string land_type;
bool auction = false;
diff --git a/indra/newview/llpaneldirbrowser.h b/indra/newview/llpaneldirbrowser.h
index cb947f8507..f422affc4b 100644
--- a/indra/newview/llpaneldirbrowser.h
+++ b/indra/newview/llpaneldirbrowser.h
@@ -157,7 +157,7 @@ const S32 AUCTION_CODE = 7; // for auction place
const S32 POPULAR_CODE = 8; // popular by dwell
// mask values for search flags
-const S32 SEARCH_NONE = 0; // should try not to send this to the search engine
+const S32 SEARCH_NONE = 0; // should try not to send this to the search engine
const S32 SEARCH_PG = 1;
const S32 SEARCH_MATURE = 2;
const S32 SEARCH_ADULT = 4;
diff --git a/indra/newview/llpaneldirevents.cpp b/indra/newview/llpaneldirevents.cpp
index eb02b3901d..227ed877cd 100644
--- a/indra/newview/llpaneldirevents.cpp
+++ b/indra/newview/llpaneldirevents.cpp
@@ -100,8 +100,8 @@ void LLPanelDirEvents::setDay(S32 day)
internal_time = utc_to_pacific_time(utc_time, is_daylight_savings());
std::string buffer = llformat("%d/%d",
- 1 + internal_time->tm_mon, // Jan = 0
- internal_time->tm_mday); // 2001 = 101
+ 1 + internal_time->tm_mon, // Jan = 0
+ internal_time->tm_mday); // 2001 = 101
childSetValue("date_text", buffer);
}
@@ -132,8 +132,8 @@ void LLPanelDirEvents::performQueryOrDelete(U32 event_id)
internal_time = utc_to_pacific_time(utc_time, is_daylight_savings());
std::string buffer = llformat("%d/%d",
- 1 + internal_time->tm_mon, // Jan = 0
- internal_time->tm_mday); // 2001 = 101
+ 1 + internal_time->tm_mon, // Jan = 0
+ internal_time->tm_mday); // 2001 = 101
childSetValue("date_text", buffer);
// Record the relative day so back and forward buttons