Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
efa26485
Commit
efa26485
authored
13 years ago
by
Jonathan Yap
Browse files
Options
Downloads
Patches
Plain Diff
STORM-1128 Sort the results of using search in the World Map
parent
f633aef1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/contributions.txt
+2
-0
2 additions, 0 deletions
doc/contributions.txt
indra/newview/llfloaterworldmap.cpp
+15
-3
15 additions, 3 deletions
indra/newview/llfloaterworldmap.cpp
with
17 additions
and
3 deletions
doc/contributions.txt
+
2
−
0
View file @
efa26485
...
@@ -414,6 +414,7 @@ Jonathan Yap
...
@@ -414,6 +414,7 @@ Jonathan Yap
STORM-1020
STORM-1020
STORM-1064
STORM-1064
STORM-1077
STORM-1077
STORM-1128
Kage Pixel
Kage Pixel
VWR-11
VWR-11
Ken March
Ken March
...
@@ -644,6 +645,7 @@ Robin Cornelius
...
@@ -644,6 +645,7 @@ Robin Cornelius
STORM-422
STORM-422
STORM-960
STORM-960
STORM-1019
STORM-1019
STORM-1128
VWR-2488
VWR-2488
VWR-9557
VWR-9557
VWR-10579
VWR-10579
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llfloaterworldmap.cpp
+
15
−
3
View file @
efa26485
...
@@ -96,6 +96,14 @@ enum EPanDirection
...
@@ -96,6 +96,14 @@ enum EPanDirection
// Values in pixels per region
// Values in pixels per region
static
const
F32
ZOOM_MAX
=
128.
f
;
static
const
F32
ZOOM_MAX
=
128.
f
;
struct
SortRegionNames
{
inline
bool
operator
()(
std
::
pair
<
U64
,
LLSimInfo
*>&
_left
,
std
::
pair
<
U64
,
LLSimInfo
*>&
_right
)
{
return
(
LLStringUtil
::
compareInsensitive
(
_left
.
second
->
getName
(),
_right
.
second
->
getName
())
<
0
);
}
};
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// Globals
// Globals
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
...
@@ -1483,10 +1491,14 @@ void LLFloaterWorldMap::updateSims(bool found_null_sim)
...
@@ -1483,10 +1491,14 @@ void LLFloaterWorldMap::updateSims(bool found_null_sim)
S32
name_length
=
mCompletingRegionName
.
length
();
S32
name_length
=
mCompletingRegionName
.
length
();
LLSD
match
;
LLSD
match
;
S32
num_results
=
0
;
S32
num_results
=
0
;
std
::
map
<
U64
,
LLSimInfo
*>::
const_iterator
it
;
for
(
it
=
LLWorldMap
::
getInstance
()
->
getRegionMap
().
begin
();
it
!=
LLWorldMap
::
getInstance
()
->
getRegionMap
().
end
();
++
it
)
std
::
vector
<
std
::
pair
<
U64
,
LLSimInfo
*>>
simInfoVec
(
LLWorldMap
::
getInstance
()
->
getRegionMap
().
begin
(),
LLWorldMap
::
getInstance
()
->
getRegionMap
().
end
());
std
::
sort
(
simInfoVec
.
begin
(),
simInfoVec
.
end
(),
SortRegionNames
());
std
::
vector
<
std
::
pair
<
U64
,
LLSimInfo
*>>::
const_iterator
it
;
for
(
it
=
simInfoVec
.
begin
();
it
!=
simInfoVec
.
end
();
++
it
)
{
{
LLSimInfo
*
info
=
it
->
second
;
LLSimInfo
*
info
=
it
->
second
;
std
::
string
sim_name_lower
=
info
->
getName
();
std
::
string
sim_name_lower
=
info
->
getName
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment