diff options
author | Jonathan Yap <jhwelch@gmail.com> | 2014-06-17 05:45:20 -0400 |
---|---|---|
committer | Jonathan Yap <jhwelch@gmail.com> | 2014-06-17 05:45:20 -0400 |
commit | e2c4d2a0a10e1f69bb074e3be620ce3ecd613969 (patch) | |
tree | 1e248e97e4db275f0a8c99deda3224c97eb2b2e5 | |
parent | ae7e074e7c8c35693fe8a5b888e96b911a46b43b (diff) |
STORM-2034 Adjust comment block indent
-rwxr-xr-x | indra/newview/llpanelmaininventory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index 46826c29ef..6c8765c62d 100755 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -707,10 +707,10 @@ void LLFloaterInventoryFinder::onTimeAgo(LLUICtrl *ctrl, void *user_data) U32 hours = (U32)self->mSpinSinceHours->get(); if (hours >= 24) { -// Try to handle both cases of spinner clicking and text input in a sensible fashion as best as possible. -// There is no way to tell if someone has clicked the spinner to get to 24 or input 24 manually, so in this -// case add to days. Any value > 24 means they have input the hours manually, so do not add to the current -// day value. + // Try to handle both cases of spinner clicking and text input in a sensible fashion as best as possible. + // There is no way to tell if someone has clicked the spinner to get to 24 or input 24 manually, so in + // this case add to days. Any value > 24 means they have input the hours manually, so do not add to the + // current day value. if (24 == hours) // Got to 24 via spinner clicking or text input of 24 { days = days + hours / 24; |