diff options
author | Jonathan Yap <none@none> | 2011-04-19 13:24:46 -0400 |
---|---|---|
committer | Jonathan Yap <none@none> | 2011-04-19 13:24:46 -0400 |
commit | 838b38d238425c8fd8c0116e14cb0883940bcef5 (patch) | |
tree | 8a3d2195136d6ee6d62a13cf155ee75b9da4601e /indra/newview | |
parent | def000ea49cb4bed7894d1534ce80d6753cbefdc (diff) |
STORM-1128 Add space after a comma
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llfloaterworldmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp index 2672747605..f8a4ce7ad0 100755 --- a/indra/newview/llfloaterworldmap.cpp +++ b/indra/newview/llfloaterworldmap.cpp @@ -92,7 +92,7 @@ struct SortRegionNames { inline bool operator ()(std::pair <U64, LLSimInfo*> const& _left, std::pair <U64, LLSimInfo*> const& _right) { - return(LLStringUtil::compareInsensitive(_left.second->getName(),_right.second->getName()) < 0); + return(LLStringUtil::compareInsensitive(_left.second->getName(), _right.second->getName()) < 0); } }; |