diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-11-19 16:00:40 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2009-11-19 16:00:40 -0500 |
commit | 62ce5fa4628672c8f9b95faac2797ce82c59deed (patch) | |
tree | f84d20d1f1eda68082afbeae2ab15c78f535e557 /indra/newview/llinventoryobserver.h | |
parent | 0c95f8bf30bc6ec9835c5a298bf27115a2a92047 (diff) |
For EXT-2623 - object missing wearables and attachments on initial login
--HG--
branch : avatar-pipeline
Diffstat (limited to 'indra/newview/llinventoryobserver.h')
-rw-r--r-- | indra/newview/llinventoryobserver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llinventoryobserver.h b/indra/newview/llinventoryobserver.h index 384e6292e8..3a083e913b 100644 --- a/indra/newview/llinventoryobserver.h +++ b/indra/newview/llinventoryobserver.h @@ -106,7 +106,7 @@ protected: class LLInventoryFetchObserver : public LLInventoryObserver { public: - LLInventoryFetchObserver() {} + LLInventoryFetchObserver(bool retry_if_missing = false): mRetryIfMissing(retry_if_missing) {} virtual void changed(U32 mask); typedef std::vector<LLUUID> item_ref_t; @@ -116,6 +116,7 @@ public: virtual void done() = 0; protected: + bool mRetryIfMissing; item_ref_t mComplete; item_ref_t mIncomplete; }; |