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
7f5972c8
Commit
7f5972c8
authored
4 years ago
by
Rye Mutt
🍞
Browse files
Options
Downloads
Patches
Plain Diff
Small opts
parent
93370c23
Loading
Loading
Loading
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llui/llfloaterreg.h
+1
-1
1 addition, 1 deletion
indra/llui/llfloaterreg.h
indra/llui/llkeywords.cpp
+1
-1
1 addition, 1 deletion
indra/llui/llkeywords.cpp
with
2 additions
and
2 deletions
indra/llui/llfloaterreg.h
+
1
−
1
View file @
7f5972c8
...
...
@@ -101,7 +101,7 @@ class LLFloaterReg
}
static
void
add
(
const
std
::
string
&
name
,
const
std
::
string
&
file
,
const
LLFloaterBuildFunc
&
func
,
const
std
::
string
&
groupname
=
LLStringUtil
::
null
);
const
std
::
string
&
groupname
=
std
::
string
()
);
// Helpers
static
LLFloater
*
getLastFloaterInGroup
(
std
::
string_view
name
);
...
...
This diff is collapsed.
Click to expand it.
indra/llui/llkeywords.cpp
+
1
−
1
View file @
7f5972c8
...
...
@@ -164,7 +164,7 @@ std::string LLKeywords::getArguments(LLSD& arguments)
std
::
string
LLKeywords
::
getAttribute
(
const
std
::
string
&
key
)
{
attribute_iterator_t
it
=
mAttributes
.
find
(
key
);
return
(
it
!=
mAttributes
.
end
())
?
it
->
second
:
""
;
return
(
it
!=
mAttributes
.
end
())
?
it
->
second
:
std
::
string
()
;
}
LLColor4
LLKeywords
::
getColorGroup
(
const
std
::
string
&
key_in
)
...
...
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