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
11ed48ab
Commit
11ed48ab
authored
9 years ago
by
andreykproductengine
Browse files
Options
Downloads
Patches
Plain Diff
MAINT-5097 FIXED crash in LLFloaterPay::onGive
parent
d6d13e20
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/llfloaterpay.cpp
+19
-4
19 additions, 4 deletions
indra/newview/llfloaterpay.cpp
indra/newview/skins/default/xui/en/notifications.xml
+11
-0
11 additions, 0 deletions
indra/newview/skins/default/xui/en/notifications.xml
with
30 additions
and
4 deletions
indra/newview/llfloaterpay.cpp
+
19
−
4
View file @
11ed48ab
...
...
@@ -367,7 +367,8 @@ void LLFloaterPay::payViaObject(money_callback callback, LLSafeHandle<LLObjectSe
LLSelectNode
*
node
=
selection
->
getFirstRootNode
();
if
(
!
node
)
{
//FIXME: notify user object no longer exists
// object no longer exists
LLNotificationsUtil
::
add
(
"PayObjectFailed"
);
floater
->
closeFloater
();
return
;
}
...
...
@@ -491,12 +492,22 @@ void LLFloaterPay::onGive(void* data)
}
if
(
amount
>
PAY_AMOUNT_NOTIFICATION
&&
gStatusBar
&&
gStatusBar
->
getBalance
()
>
amount
)
{
LLUUID
payee_id
;
BOOL
is_group
;
LLUUID
payee_id
=
LLUUID
::
null
;
BOOL
is_group
=
false
;
if
(
floater
->
mObjectSelection
.
notNull
())
{
LLSelectNode
*
node
=
floater
->
mObjectSelection
->
getFirstRootNode
();
node
->
mPermissions
->
getOwnership
(
payee_id
,
is_group
);
if
(
node
)
{
node
->
mPermissions
->
getOwnership
(
payee_id
,
is_group
);
}
else
{
// object no longer exists
LLNotificationsUtil
::
add
(
"PayObjectFailed"
);
floater
->
closeFloater
();
return
;
}
}
else
{
...
...
@@ -562,6 +573,10 @@ void LLFloaterPay::give(S32 amount)
msg
->
sendReliable
(
region
->
getHost
()
);
}
}
else
{
LLNotificationsUtil
::
add
(
"PayObjectFailed"
);
}
}
else
{
...
...
This diff is collapsed.
Click to expand it.
indra/newview/skins/default/xui/en/notifications.xml
+
11
−
0
View file @
11ed48ab
...
...
@@ -5275,6 +5275,17 @@ Warning: The 'Pay object' click action has been set, but it will only
yestext=
"Pay"
/>
</notification>
<notification
icon=
"alertmodal.tga"
name=
"PayObjectFailed"
type=
"alertmodal"
>
Payment failed: object was not found.
<tag>
fail
</tag>
<usetemplate
name=
"okbutton"
yestext=
"OK"
/>
</notification>
<notification
icon=
"alertmodal.tga"
name=
"OpenObjectCannotCopy"
...
...
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