summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterland.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfloaterland.cpp')
-rw-r--r--indra/newview/llfloaterland.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/indra/newview/llfloaterland.cpp b/indra/newview/llfloaterland.cpp
index 3492f4fff8..77ebe88a09 100644
--- a/indra/newview/llfloaterland.cpp
+++ b/indra/newview/llfloaterland.cpp
@@ -570,7 +570,7 @@ void LLPanelLandGeneral::refresh()
else if(parcel->getAuctionID())
{
char auction_str[MAX_STRING]; /*Flawfinder: ignore*/
- snprintf(auction_str, sizeof(auction_str), "Auction ID: %u", parcel->getAuctionID()); /*Flawfinder: ignore*/
+ snprintf(auction_str, sizeof(auction_str), "Auction ID: %u", parcel->getAuctionID()); /* Flawfinder: ignore */
mTextSalePending->setText(auction_str);
mTextSalePending->setEnabled(TRUE);
}
@@ -710,13 +710,13 @@ void LLPanelLandGeneral::refresh()
&dwell);
// Area
- snprintf(price, sizeof(price), "%d sq. m.", area); /*Flawfinder: ignore*/
+ snprintf(price, sizeof(price), "%d sq. m.", area); /* Flawfinder: ignore */
label = AREA;
mTextPriceLabel->setText(label);
mTextPrice->setText(price);
- snprintf(price, sizeof(price), "%.0f", dwell); /*Flawfinder: ignore*/
+ snprintf(price, sizeof(price), "%.0f", dwell); /* Flawfinder: ignore */
mTextDwell->setText(price);
if(region_owner)
@@ -761,7 +761,7 @@ void LLPanelLandGeneral::refreshNames()
char owner_first[MAX_STRING]; /*Flawfinder: ignore*/
char owner_last[MAX_STRING]; /*Flawfinder: ignore*/
gCacheName->getName(parcel->getOwnerID(), owner_first, owner_last);
- snprintf(buffer, sizeof(buffer), "%s %s", owner_first, owner_last); /*Flawfinder: ignore*/
+ snprintf(buffer, sizeof(buffer), "%s %s", owner_first, owner_last); /* Flawfinder: ignore */
}
if(LLParcel::OS_LEASE_PENDING == parcel->getOwnershipStatus())
@@ -922,8 +922,8 @@ void LLPanelLandGeneral::onClickBuyPass(void* data)
F32 pass_hours = parcel->getPassHours();
char cost[256], time[256]; /*Flawfinder: ignore*/
- snprintf(cost, sizeof(cost), "%d", pass_price); /*Flawfinder: ignore*/
- snprintf(time, sizeof(time), "%.2f", pass_hours); /*Flawfinder: ignore*/
+ snprintf(cost, sizeof(cost), "%d", pass_price); /* Flawfinder: ignore */
+ snprintf(time, sizeof(time), "%.2f", pass_hours); /* Flawfinder: ignore */
LLStringBase<char>::format_map_t args;
args["[COST]"] = cost;
@@ -1247,7 +1247,7 @@ void LLPanelLandObjects::refresh()
if (parcel_object_bonus != 1.0f)
{
- snprintf(count, sizeof(count), "Region Object Bonus Factor: %.2f", /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "Region Object Bonus Factor: %.2f", /* Flawfinder: ignore */
parcel_object_bonus);
mParcelObjectBonus->setText(count);
}
@@ -1258,35 +1258,35 @@ void LLPanelLandObjects::refresh()
if (sw_total > sw_max)
{
- snprintf(count, sizeof(count), "%d out of %d (%d will be deleted)", /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d out of %d (%d will be deleted)", /* Flawfinder: ignore */
sw_total, sw_max, sw_total - sw_max);
}
else
{
- snprintf(count, sizeof(count), "%d out of %d (%d available)", /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d out of %d (%d available)", /* Flawfinder: ignore */
sw_total, sw_max, sw_max - sw_total);
}
mSWTotalObjects->setText(count);
- snprintf(count, sizeof(count), "%d", max); /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d", max); /* Flawfinder: ignore */
mObjectContribution->setText(count);
- snprintf(count, sizeof(count), "%d", total); /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d", total); /* Flawfinder: ignore */
mTotalObjects->setText(count);
- snprintf(count, sizeof(count), "%d", owned); /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d", owned); /* Flawfinder: ignore */
mOwnerObjects->setText(count);
- snprintf(count, sizeof(count), "%d", group); /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d", group); /* Flawfinder: ignore */
mGroupObjects->setText(count);
- snprintf(count, sizeof(count), "%d", other); /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d", other); /* Flawfinder: ignore */
mOtherObjects->setText(count);
- snprintf(count, sizeof(count), "%d", selected); /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d", selected); /* Flawfinder: ignore */
mSelectedObjects->setText(count);
- snprintf(count, sizeof(count), "%d", mOtherTime); /*Flawfinder: ignore*/
+ snprintf(count, sizeof(count), "%d", mOtherTime); /* Flawfinder: ignore */
mCleanOtherObjectsTime->setText(count);
BOOL can_return_owned = LLViewerParcelMgr::isParcelModifiableByAgent(parcel, GP_LAND_RETURN_GROUP_OWNED);
@@ -1617,7 +1617,7 @@ void LLPanelLandObjects::processParcelObjectOwnersReply(LLMessageSystem *msg, vo
// Placeholder for name.
row->addColumn("", FONT, self->mColWidth[2]);
- snprintf(object_count_str, sizeof(object_count_str), "%d", object_count); /*Flawfinder: ignore*/
+ snprintf(object_count_str, sizeof(object_count_str), "%d", object_count); /* Flawfinder: ignore */
row->addColumn(object_count_str, FONT, self->mColWidth[3]);
if (is_group_owned)
@@ -2175,7 +2175,7 @@ void LLPanelLandOptions::refresh()
else
{
char buffer[256]; /*Flawfinder: ignore*/
- snprintf(buffer, sizeof(buffer), "Landing Point: %d, %d, %d", /*Flawfinder: ignore*/
+ snprintf(buffer, sizeof(buffer), "Landing Point: %d, %d, %d", /* Flawfinder: ignore */
llround(pos.mV[VX]),
llround(pos.mV[VY]),
llround(pos.mV[VZ]));
@@ -2559,14 +2559,14 @@ void LLPanelLandAccess::refresh()
char group_name[MAX_STRING]; /*Flawfinder: ignore*/
gCacheName->getGroupName(parcel->getGroupID(), group_name);
- snprintf(label, sizeof(label), "Group: %s", group_name); /*Flawfinder: ignore*/
+ snprintf(label, sizeof(label), "Group: %s", group_name); /* Flawfinder: ignore */
mCheckGroup->setLabel( label );
S32 count = parcel->mAccessList.size();
BOOL use_list = parcel->getParcelFlag(PF_USE_ACCESS_LIST);
mCheckAccess->set( use_list );
- snprintf(label, sizeof(label), "Avatars: (%d listed, %d max)", /*Flawfinder: ignore*/
+ snprintf(label, sizeof(label), "Avatars: (%d listed, %d max)", /* Flawfinder: ignore */
count, PARCEL_MAX_ACCESS_LIST);
mCheckAccess->setLabel( label );
@@ -2586,7 +2586,7 @@ void LLPanelLandAccess::refresh()
if (seconds >= 120)
{
char buf[30]; /*Flawfinder: ignore*/
- snprintf(buf, sizeof(buf), "%d minutes", (seconds/60)); /*Flawfinder: ignore*/
+ snprintf(buf, sizeof(buf), "%d minutes", (seconds/60)); /* Flawfinder: ignore */
suffix.append(buf);
}
else if (seconds >= 60)
@@ -2596,7 +2596,7 @@ void LLPanelLandAccess::refresh()
else
{
char buf[30]; /*Flawfinder: ignore*/
- snprintf(buf, sizeof(buf), "%d seconds", seconds); /*Flawfinder: ignore*/
+ snprintf(buf, sizeof(buf), "%d seconds", seconds); /* Flawfinder: ignore */
suffix.append(buf);
}
suffix.append(" remaining)");
@@ -2661,7 +2661,7 @@ void LLPanelLandAccess::refreshNames()
gCacheName->getGroupName(parcel->getGroupID(), group_name);
}
char label[MAX_STRING]; /*Flawfinder: ignore*/
- snprintf(label, sizeof(label), "Group: %s", group_name); /*Flawfinder: ignore*/
+ snprintf(label, sizeof(label), "Group: %s", group_name); /* Flawfinder: ignore */
mCheckGroup->setLabel(label);
}
@@ -2836,7 +2836,7 @@ void LLPanelLandBan::refresh()
BOOL use_ban = parcel->getParcelFlag(PF_USE_BAN_LIST);
mCheck->set( use_ban );
- snprintf(label, sizeof(label), "Ban these avatars: (%d listed, %d max)", /*Flawfinder: ignore*/
+ snprintf(label, sizeof(label), "Ban these avatars: (%d listed, %d max)", /* Flawfinder: ignore */
count, PARCEL_MAX_ACCESS_LIST);
mCheck->setLabel( label );
@@ -2855,7 +2855,7 @@ void LLPanelLandBan::refresh()
if (seconds >= 120)
{
char buf[30]; /*Flawfinder: ignore*/
- snprintf(buf, sizeof(buf), "%d minutes", (seconds/60)); /*Flawfinder: ignore*/
+ snprintf(buf, sizeof(buf), "%d minutes", (seconds/60)); /* Flawfinder: ignore */
suffix.append(buf);
}
else if (seconds >= 60)
@@ -2865,7 +2865,7 @@ void LLPanelLandBan::refresh()
else
{
char buf[30]; /*Flawfinder: ignore*/
- snprintf(buf, sizeof(buf), "%d seconds", seconds); /*Flawfinder: ignore*/
+ snprintf(buf, sizeof(buf), "%d seconds", seconds); /* Flawfinder: ignore */
suffix.append(buf);
}
suffix.append(" remaining)");