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
aa7e8e38
Commit
aa7e8e38
authored
14 years ago
by
Oz Linden
Browse files
Options
Downloads
Plain Diff
merge fix for storm-529
parents
317f5ecf
1abfd822
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/contributions.txt
+3
-0
3 additions, 0 deletions
doc/contributions.txt
indra/newview/llsidepaneliteminfo.cpp
+7
-2
7 additions, 2 deletions
indra/newview/llsidepaneliteminfo.cpp
indra/newview/llsidepaneliteminfo.h
+1
-0
1 addition, 0 deletions
indra/newview/llsidepaneliteminfo.h
with
11 additions
and
2 deletions
doc/contributions.txt
+
3
−
0
View file @
aa7e8e38
...
@@ -372,6 +372,7 @@ Khyota Wulluf
...
@@ -372,6 +372,7 @@ Khyota Wulluf
VWR-9966
VWR-9966
Kitty Barnett
Kitty Barnett
VWR-19699
VWR-19699
STORM-288
Kunnis Basiat
Kunnis Basiat
VWR-82
VWR-82
VWR-102
VWR-102
...
@@ -774,10 +775,12 @@ WolfPup Lowenhar
...
@@ -774,10 +775,12 @@ WolfPup Lowenhar
STORM-143
STORM-143
STORM-255
STORM-255
STORM-256
STORM-256
STORM-288
STORM-535
STORM-535
STORM-544
STORM-544
STORM-654
STORM-654
STORM-674
STORM-674
STORM-776
VWR-20741
VWR-20741
VWR-20933
VWR-20933
Zai Lynch
Zai Lynch
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llsidepaneliteminfo.cpp
+
7
−
2
View file @
aa7e8e38
...
@@ -71,12 +71,12 @@ void LLItemPropertiesObserver::changed(U32 mask)
...
@@ -71,12 +71,12 @@ void LLItemPropertiesObserver::changed(U32 mask)
const
std
::
set
<
LLUUID
>&
mChangedItemIDs
=
gInventory
.
getChangedIDs
();
const
std
::
set
<
LLUUID
>&
mChangedItemIDs
=
gInventory
.
getChangedIDs
();
std
::
set
<
LLUUID
>::
const_iterator
it
;
std
::
set
<
LLUUID
>::
const_iterator
it
;
const
LLUUID
&
object
_id
=
mFloater
->
get
Object
ID
();
const
LLUUID
&
item
_id
=
mFloater
->
get
Item
ID
();
for
(
it
=
mChangedItemIDs
.
begin
();
it
!=
mChangedItemIDs
.
end
();
it
++
)
for
(
it
=
mChangedItemIDs
.
begin
();
it
!=
mChangedItemIDs
.
end
();
it
++
)
{
{
// set dirty for 'item profile panel' only if changed item is the item for which 'item profile panel' is shown (STORM-288)
// set dirty for 'item profile panel' only if changed item is the item for which 'item profile panel' is shown (STORM-288)
if
(
*
it
==
object
_id
)
if
(
*
it
==
item
_id
)
{
{
// if there's a change we're interested in.
// if there's a change we're interested in.
if
((
mask
&
(
LLInventoryObserver
::
LABEL
|
LLInventoryObserver
::
INTERNAL
|
LLInventoryObserver
::
REMOVE
))
!=
0
)
if
((
mask
&
(
LLInventoryObserver
::
LABEL
|
LLInventoryObserver
::
INTERNAL
|
LLInventoryObserver
::
REMOVE
))
!=
0
)
...
@@ -196,6 +196,11 @@ const LLUUID& LLSidepanelItemInfo::getObjectID() const
...
@@ -196,6 +196,11 @@ const LLUUID& LLSidepanelItemInfo::getObjectID() const
return
mObjectID
;
return
mObjectID
;
}
}
const
LLUUID
&
LLSidepanelItemInfo
::
getItemID
()
const
{
return
mItemID
;
}
void
LLSidepanelItemInfo
::
reset
()
void
LLSidepanelItemInfo
::
reset
()
{
{
LLSidepanelInventorySubpanel
::
reset
();
LLSidepanelInventorySubpanel
::
reset
();
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llsidepaneliteminfo.h
+
1
−
0
View file @
aa7e8e38
...
@@ -55,6 +55,7 @@ class LLSidepanelItemInfo : public LLSidepanelInventorySubpanel
...
@@ -55,6 +55,7 @@ class LLSidepanelItemInfo : public LLSidepanelInventorySubpanel
void
setEditMode
(
BOOL
edit
);
void
setEditMode
(
BOOL
edit
);
const
LLUUID
&
getObjectID
()
const
;
const
LLUUID
&
getObjectID
()
const
;
const
LLUUID
&
getItemID
()
const
;
protected:
protected:
/*virtual*/
void
refresh
();
/*virtual*/
void
refresh
();
...
...
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