diff options
| author | Eli Linden <eli@lindenlab.com> | 2010-04-20 11:42:45 -0700 |
|---|---|---|
| committer | Eli Linden <eli@lindenlab.com> | 2010-04-20 11:42:45 -0700 |
| commit | 12893bc7b1194afaa4b9059665e34624abfcce1d (patch) | |
| tree | 67fe2a50777e4228e0177786eecf5f86d77cbc6e /indra/newview/llinventoryobserver.cpp | |
| parent | 5f80e5681c7a0e9f0fc5889ede435c79358fc639 (diff) | |
| parent | 47699b744cf99ae9f39530dc9a08455b0d92e0f0 (diff) | |
Merge
Diffstat (limited to 'indra/newview/llinventoryobserver.cpp')
| -rw-r--r-- | indra/newview/llinventoryobserver.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llinventoryobserver.cpp b/indra/newview/llinventoryobserver.cpp index 544a815896..29d99d328a 100644 --- a/indra/newview/llinventoryobserver.cpp +++ b/indra/newview/llinventoryobserver.cpp @@ -148,6 +148,7 @@ void LLInventoryCompletionObserver::watchItem(const LLUUID& id) LLInventoryFetchItemsObserver::LLInventoryFetchItemsObserver(const LLUUID& item_id) : LLInventoryFetchObserver(item_id), + mNumTries(MAX_NUM_NOTIFICATIONS_TO_PROCESS) { mIDs.clear(); @@ -155,7 +156,9 @@ LLInventoryFetchItemsObserver::LLInventoryFetchItemsObserver(const LLUUID& item_ } LLInventoryFetchItemsObserver::LLInventoryFetchItemsObserver(const uuid_vec_t& item_ids) : - LLInventoryFetchObserver(item_ids) + LLInventoryFetchObserver(item_ids), + + mNumTries(MAX_NUM_NOTIFICATIONS_TO_PROCESS) { } |
