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
b7973b30
Commit
b7973b30
authored
14 years ago
by
Leslie Linden
Browse files
Options
Downloads
Plain Diff
Automated merge with
ssh://hg.lindenlab.com/richard/viewer-social-2/
parents
1d34e7b9
8cfb11ab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llavataractions.cpp
+11
-30
11 additions, 30 deletions
indra/newview/llavataractions.cpp
with
11 additions
and
30 deletions
indra/newview/llavataractions.cpp
+
11
−
30
View file @
b7973b30
...
@@ -279,7 +279,7 @@ bool LLAvatarActions::isCalling(const LLUUID &id)
...
@@ -279,7 +279,7 @@ bool LLAvatarActions::isCalling(const LLUUID &id)
//static
//static
bool
LLAvatarActions
::
canCall
()
bool
LLAvatarActions
::
canCall
()
{
{
return
LLVoiceClient
::
getInstance
()
->
voiceEnabled
()
&&
LLVoiceClient
::
getInstance
()
->
isVoiceWorking
();
return
LLVoiceClient
::
getInstance
()
->
voiceEnabled
()
&&
LLVoiceClient
::
getInstance
()
->
isVoiceWorking
();
}
}
// static
// static
...
@@ -300,40 +300,21 @@ void LLAvatarActions::startConference(const uuid_vec_t& ids)
...
@@ -300,40 +300,21 @@ void LLAvatarActions::startConference(const uuid_vec_t& ids)
make_ui_sound
(
"UISndStartIM"
);
make_ui_sound
(
"UISndStartIM"
);
}
}
static
void
on_avatar_name_show_profile
(
const
LLUUID
&
agent_id
,
const
LLAvatarName
&
av_name
)
{
llinfos
<<
"opening web profile for "
<<
av_name
.
mUsername
<<
llendl
;
std
::
string
url
=
getProfileURL
(
av_name
.
mUsername
);
// PROFILES: open in webkit window
LLWeb
::
loadWebURLInternal
(
url
,
""
,
agent_id
.
asString
());
}
// static
// static
void
LLAvatarActions
::
showProfile
(
const
LLUUID
&
id
)
void
LLAvatarActions
::
showProfile
(
const
LLUUID
&
id
)
{
{
if
(
id
.
notNull
())
if
(
id
.
notNull
())
{
{
LLSD
params
;
LLAvatarNameCache
::
get
(
id
,
boost
::
bind
(
&
on_avatar_name_show_profile
,
_1
,
_2
));
params
[
"id"
]
=
id
;
params
[
"open_tab_name"
]
=
"panel_profile"
;
// PROFILES: open in webkit window
std
::
string
full_name
;
if
(
gCacheName
->
getFullName
(
id
,
full_name
))
{
std
::
string
agent_name
=
LLCacheName
::
buildUsername
(
full_name
);
llinfos
<<
"opening web profile for "
<<
agent_name
<<
llendl
;
std
::
string
url
=
getProfileURL
(
agent_name
);
LLWeb
::
loadWebURLInternal
(
url
,
""
,
id
.
asString
());
}
else
{
llwarns
<<
"no name info for agent id "
<<
id
<<
llendl
;
}
#if 0
//Show own profile
if(gAgent.getID() == id)
{
LLSideTray::getInstance()->showPanel("panel_me", params);
}
//Show other user profile
else
{
LLSideTray::getInstance()->showPanel("panel_profile_view", params);
}
#endif
}
}
}
}
...
...
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