summaryrefslogtreecommitdiff
path: root/indra/newview/llaisapi.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-17 16:20:17 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-17 16:20:17 -0400
commit2d0b329003d0350c12ce4686f1261e68ce39573b (patch)
treebb7fc3bd0b8ea84f2be8349703a7ba4007a11e70 /indra/newview/llaisapi.cpp
parent56cf4297f3c603b8c39880ee20ce0fd6fb3341e5 (diff)
SH-4238 WIP - postpone calling notifyObservers until all deletes are processed.
Diffstat (limited to 'indra/newview/llaisapi.cpp')
-rwxr-xr-xindra/newview/llaisapi.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp
index 393e5c0a68..21f6482a06 100755
--- a/indra/newview/llaisapi.cpp
+++ b/indra/newview/llaisapi.cpp
@@ -476,7 +476,9 @@ void AISUpdate::doUpdate()
del_it != mObjectsDeleted.end(); ++del_it)
{
LL_DEBUGS("Inventory") << "deleted item " << *del_it << llendl;
- gInventory.onObjectDeletedFromServer(*del_it, false, false);
+ gInventory.onObjectDeletedFromServer(*del_it, false, false, false);
}
+
+ gInventory.notifyObservers();
}