diff options
| author | Eric M. Tulla (BigPapi) <tulla@lindenlab.com> | 2009-12-31 19:04:49 -0500 | 
|---|---|---|
| committer | Eric M. Tulla (BigPapi) <tulla@lindenlab.com> | 2009-12-31 19:04:49 -0500 | 
| commit | 32657e37ab14e3ea4b5ff719e147fd720e895d77 (patch) | |
| tree | 8b6a280879857f9a530f362f599e19037ae71fc0 /indra | |
| parent | eb5a76996a1b1ce2ef30b6106287caae998dcc85 (diff) | |
| parent | eef77735ce34172ced7bb0611167cdf974b2d570 (diff) | |
Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llagentwearables.cpp | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp index 79ba3fb51d..b221c28dcd 100644 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -2128,6 +2128,7 @@ void LLLibraryOutfitsFetch::done()  	}  	if (mOutfitsPopulated)  	{ +		gInventory.notifyObservers();  		delete this;  	}  } @@ -2162,6 +2163,11 @@ void LLLibraryOutfitsFetch::folderDone(void)  		// everything is already here - call done.  		outfitsDone();  	} +	else  +	{ +		gInventory.removeObserver(this); +		gInventory.addObserver(this); +	}  }  void LLLibraryOutfitsFetch::outfitsDone(void) @@ -2172,6 +2178,8 @@ void LLLibraryOutfitsFetch::outfitsDone(void)  								  LLInventoryModel::EXCLUDE_TRASH);  	LLInventoryFetchDescendentsObserver::folder_ref_t folders; +	 +	llassert(cat_array.count() > 0);  	for(S32 i = 0; i < cat_array.count(); ++i)  	{  		if (cat_array.get(i)->getName() != "More Outfits" && cat_array.get(i)->getName() != "Ruth"){ @@ -2186,6 +2194,11 @@ void LLLibraryOutfitsFetch::outfitsDone(void)  		// everything is already here - call done.  		contentsDone();  	} +	else +	{ +		gInventory.removeObserver(this); +		gInventory.addObserver(this); +	}  }  void LLLibraryOutfitsFetch::contentsDone(void) @@ -2199,7 +2212,6 @@ void LLLibraryOutfitsFetch::contentsDone(void)  														mOutfits[i].second);  		LLAppearanceManager::getInstance()->shallowCopyCategory(mOutfits[i].first, folder_id, NULL); -		gInventory.notifyObservers();  	}  	mOutfitsPopulated = true;  } | 
