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
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
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 Archive
Alchemy Viewer
Commits
d5b0f0b3
Commit
d5b0f0b3
authored
9 years ago
by
Cinder
Browse files
Options
Downloads
Patches
Plain Diff
Fix chat triggers
parent
38713b78
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
indra/newview/llchatutilities.cpp
+2
-2
2 additions, 2 deletions
indra/newview/llchatutilities.cpp
indra/newview/llchatutilities.h
+0
-3
0 additions, 3 deletions
indra/newview/llchatutilities.h
with
2 additions
and
5 deletions
indra/newview/llchatutilities.cpp
+
2
−
2
View file @
d5b0f0b3
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
// legacy callback glue
// legacy callback glue
extern
void
send_chat_from_viewer
(
const
std
::
string
&
utf8_out_text
,
EChatType
type
,
S32
channel
);
extern
void
send_chat_from_viewer
(
const
std
::
string
&
utf8_out_text
,
EChatType
type
,
S32
channel
);
/* static */
std
::
unordered_
map
<
std
::
string
,
EChatType
>
sChatTypeTriggers
=
{
const
std
::
map
<
std
::
string
,
EChatType
>
sChatTypeTriggers
=
{
{
LLStringExplicit
(
"/whisper"
),
CHAT_TYPE_WHISPER
},
{
LLStringExplicit
(
"/whisper"
),
CHAT_TYPE_WHISPER
},
{
LLStringExplicit
(
"/shout"
),
CHAT_TYPE_SHOUT
}
{
LLStringExplicit
(
"/shout"
),
CHAT_TYPE_SHOUT
}
};
};
...
@@ -115,7 +115,7 @@ EChatType LLChatUtilities::processChatTypeTriggers(EChatType type, std::string &
...
@@ -115,7 +115,7 @@ EChatType LLChatUtilities::processChatTypeTriggers(EChatType type, std::string &
if
(
!
LLStringUtil
::
compareInsensitive
(
trigger
,
ti
.
first
))
if
(
!
LLStringUtil
::
compareInsensitive
(
trigger
,
ti
.
first
))
{
{
U32
trigger_length
=
ti
.
first
.
length
();
size_t
trigger_length
=
ti
.
first
.
length
();
// It's to remove space after trigger name
// It's to remove space after trigger name
if
(
length
>
trigger_length
&&
str
[
trigger_length
]
==
' '
)
if
(
length
>
trigger_length
&&
str
[
trigger_length
]
==
' '
)
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llchatutilities.h
+
0
−
3
View file @
d5b0f0b3
...
@@ -27,12 +27,9 @@
...
@@ -27,12 +27,9 @@
#define LL_CHATUTILITIES_H
#define LL_CHATUTILITIES_H
#include
"llchat.h"
#include
"llchat.h"
#include
<unordered_map>
namespace
LLChatUtilities
namespace
LLChatUtilities
{
{
static
std
::
unordered_map
<
std
::
string
,
EChatType
>
sChatTypeTriggers
;
// Send a chat (after stripping /20foo channel chats).
// Send a chat (after stripping /20foo channel chats).
// "Animate" means the nodding animation for regular text.
// "Animate" means the nodding animation for regular text.
void
sendChatFromViewer
(
const
LLWString
&
wtext
,
EChatType
type
,
BOOL
animate
);
void
sendChatFromViewer
(
const
LLWString
&
wtext
,
EChatType
type
,
BOOL
animate
);
...
...
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