Skip to content

Commit 449a5a1

Browse files
RyeMuttakleshchev
authored andcommitted
Fix tabs in various source files introduced as part of legacy search
Signed-off-by: Rye <[email protected]>
1 parent be3810d commit 449a5a1

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

indra/newview/llpaneldirbrowser.cpp

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ void LLPanelDirBrowser::processDirPeopleReply(LLMessageSystem *msg, void**)
422422
for (S32 i = 0; i < rows; i++)
423423
{
424424
msg->getStringFast(_PREHASH_QueryReplies,_PREHASH_FirstName, first_name, i);
425-
msg->getStringFast(_PREHASH_QueryReplies,_PREHASH_LastName, last_name, i);
425+
msg->getStringFast(_PREHASH_QueryReplies,_PREHASH_LastName, last_name, i);
426426
msg->getUUIDFast( _PREHASH_QueryReplies,_PREHASH_AgentID, agent_id, i);
427427
// msg->getU8Fast( _PREHASH_QueryReplies,_PREHASH_Online, online, i);
428428
// unused
@@ -469,10 +469,10 @@ void LLPanelDirBrowser::processDirPeopleReply(LLMessageSystem *msg, void**)
469469

470470
void LLPanelDirBrowser::processDirPlacesReply(LLMessageSystem* msg, void**)
471471
{
472-
LLUUID agent_id;
473-
LLUUID query_id;
474-
LLUUID parcel_id;
475-
std::string name;
472+
LLUUID agent_id;
473+
LLUUID query_id;
474+
LLUUID parcel_id;
475+
std::string name;
476476
bool is_for_sale = false;
477477
bool is_auction = false;
478478
F32 dwell;
@@ -557,8 +557,8 @@ void LLPanelDirBrowser::processDirEventsReply(LLMessageSystem* msg, void**)
557557
LLUUID agent_id;
558558
LLUUID query_id;
559559
LLUUID owner_id;
560-
std::string name;
561-
std::string date;
560+
std::string name;
561+
std::string date;
562562
bool show_pg = gSavedSettings.getBOOL("ShowPGEvents");
563563
bool show_mature = gSavedSettings.getBOOL("ShowMatureEvents");
564564
bool show_adult = gSavedSettings.getBOOL("ShowAdultEvents");
@@ -703,7 +703,7 @@ void LLPanelDirBrowser::processDirGroupsReply(LLMessageSystem* msg, void**)
703703

704704
LLUUID query_id;
705705
LLUUID group_id;
706-
std::string group_name;
706+
std::string group_name;
707707
S32 members;
708708
F32 search_order;
709709

@@ -733,10 +733,10 @@ void LLPanelDirBrowser::processDirGroupsReply(LLMessageSystem* msg, void**)
733733

734734
for (i = 0; i < rows; i++)
735735
{
736-
msg->getUUIDFast(_PREHASH_QueryReplies, _PREHASH_GroupID, group_id, i );
737-
msg->getStringFast(_PREHASH_QueryReplies, _PREHASH_GroupName, group_name, i);
738-
msg->getS32Fast(_PREHASH_QueryReplies, _PREHASH_Members, members, i );
739-
msg->getF32Fast(_PREHASH_QueryReplies, _PREHASH_SearchOrder, search_order, i );
736+
msg->getUUIDFast(_PREHASH_QueryReplies, _PREHASH_GroupID, group_id, i );
737+
msg->getStringFast(_PREHASH_QueryReplies, _PREHASH_GroupName, group_name, i);
738+
msg->getS32Fast(_PREHASH_QueryReplies, _PREHASH_Members, members, i );
739+
msg->getF32Fast(_PREHASH_QueryReplies, _PREHASH_SearchOrder, search_order, i );
740740

741741
if (group_id.isNull())
742742
{
@@ -831,8 +831,8 @@ void LLPanelDirBrowser::processDirClassifiedReply(LLMessageSystem* msg, void**)
831831
{
832832
LLUUID classified_id;
833833
std::string name;
834-
U32 creation_date = 0; // unix timestamp
835-
U32 expiration_date = 0; // future use
834+
U32 creation_date = 0; // unix timestamp
835+
U32 expiration_date = 0; // future use
836836
S32 price_for_listing = 0;
837837
msg->getUUID("QueryReplies", "ClassifiedID", classified_id, i);
838838
msg->getString("QueryReplies", "Name", name, i);
@@ -863,7 +863,7 @@ void LLPanelDirBrowser::processDirLandReply(LLMessageSystem *msg, void**)
863863
LLUUID agent_id;
864864
LLUUID query_id;
865865
LLUUID parcel_id;
866-
std::string name;
866+
std::string name;
867867
std::string land_sku;
868868
std::string land_type;
869869
bool auction = false;

indra/newview/llpaneldirbrowser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ const S32 AUCTION_CODE = 7; // for auction place
157157
const S32 POPULAR_CODE = 8; // popular by dwell
158158

159159
// mask values for search flags
160-
const S32 SEARCH_NONE = 0; // should try not to send this to the search engine
160+
const S32 SEARCH_NONE = 0; // should try not to send this to the search engine
161161
const S32 SEARCH_PG = 1;
162162
const S32 SEARCH_MATURE = 2;
163163
const S32 SEARCH_ADULT = 4;

indra/newview/llpaneldirevents.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ void LLPanelDirEvents::setDay(S32 day)
100100
internal_time = utc_to_pacific_time(utc_time, is_daylight_savings());
101101

102102
std::string buffer = llformat("%d/%d",
103-
1 + internal_time->tm_mon, // Jan = 0
104-
internal_time->tm_mday); // 2001 = 101
103+
1 + internal_time->tm_mon, // Jan = 0
104+
internal_time->tm_mday); // 2001 = 101
105105
childSetValue("date_text", buffer);
106106
}
107107

@@ -132,8 +132,8 @@ void LLPanelDirEvents::performQueryOrDelete(U32 event_id)
132132
internal_time = utc_to_pacific_time(utc_time, is_daylight_savings());
133133

134134
std::string buffer = llformat("%d/%d",
135-
1 + internal_time->tm_mon, // Jan = 0
136-
internal_time->tm_mday); // 2001 = 101
135+
1 + internal_time->tm_mon, // Jan = 0
136+
internal_time->tm_mday); // 2001 = 101
137137
childSetValue("date_text", buffer);
138138

139139
// Record the relative day so back and forward buttons

0 commit comments

Comments
 (0)