diff options
author | Oz Linden <oz@lindenlab.com> | 2014-08-06 16:18:45 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-08-06 16:18:45 -0400 |
commit | 7ede86c97a1a6d903c7d2fc1f15a384d1283d866 (patch) | |
tree | f678de009c1242abf8f94d59e55fde77b0a04e4b /indra/newview/llfloatertopobjects.cpp | |
parent | 7062026da4d6cbdeb6a039f0e6ec387586269c65 (diff) | |
parent | 4fffc8c8e458ed13993fd0d5bc07ff641cb56005 (diff) |
merge changes for STORM-2031
Diffstat (limited to 'indra/newview/llfloatertopobjects.cpp')
-rwxr-xr-x | indra/newview/llfloatertopobjects.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfloatertopobjects.cpp b/indra/newview/llfloatertopobjects.cpp index 3a167cfc77..d604b8619a 100755 --- a/indra/newview/llfloatertopobjects.cpp +++ b/indra/newview/llfloatertopobjects.cpp @@ -208,7 +208,7 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data) columns[column_num++]["font"] = "SANSSERIF"; columns[column_num]["column"] = "location"; - columns[column_num]["value"] = llformat("<%0.1f,%0.1f,%0.1f>", location_x, location_y, location_z); + columns[column_num]["value"] = llformat("<%0.f, %0.f, %0.f>", location_x, location_y, location_z); columns[column_num++]["font"] = "SANSSERIF"; columns[column_num]["column"] = "parcel"; @@ -258,6 +258,8 @@ void LLFloaterTopObjects::handleReply(LLMessageSystem *msg, void** data) format.setArg("[COUNT]", llformat("%d", total_count)); format.setArg("[TIME]", llformat("%0.3f", mtotalScore)); getChild<LLUICtrl>("title_text")->setValue(LLSD(format)); + list->setColumnLabel("URLs", getString("URLs")); + list->setColumnLabel("memory", getString("memory")); } else { |