diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-05-12 18:26:02 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-05-18 23:48:39 +0300 | 
| commit | cc8af5f37df1e200bc0b55740887a99157066e35 (patch) | |
| tree | 9c4eef31a08ab7b03e629501216cecba6036624e /indra/newview | |
| parent | d28e2c03a76151b7e6ba47fc892fb7c2c164c1e2 (diff) | |
SL-19649 Adjust other classes for new deleteAllChildren mechanics
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llinspecttoast.cpp | 7 | ||||
| -rw-r--r-- | indra/newview/llinventorymodel.cpp | 6 | 
2 files changed, 12 insertions, 1 deletions
diff --git a/indra/newview/llinspecttoast.cpp b/indra/newview/llinspecttoast.cpp index 68801b0895..6f93a78ca6 100644 --- a/indra/newview/llinspecttoast.cpp +++ b/indra/newview/llinspecttoast.cpp @@ -47,6 +47,7 @@ public:  	/*virtual*/ void onOpen(const LLSD& notification_id);  	/*virtual*/ BOOL handleToolTip(S32 x, S32 y, MASK mask); +    /*virtual*/ void deleteAllChildren();  	/*virtual*/ void removeChild(LLView* child);  private:  	void onToastDestroy(LLToast * toast); @@ -122,6 +123,12 @@ BOOL LLInspectToast::handleToolTip(S32 x, S32 y, MASK mask)  	return LLFloater::handleToolTip(x, y, mask);  } +void LLInspectToast::deleteAllChildren() +{ +    mPanel = NULL; +    LLInspect::deleteAllChildren(); +} +  // virtual  void LLInspectToast::removeChild(LLView* child)  { diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp index 0bbf201dc6..b4727de77f 100644 --- a/indra/newview/llinventorymodel.cpp +++ b/indra/newview/llinventorymodel.cpp @@ -594,7 +594,11 @@ const LLUUID LLInventoryModel::findCategoryUUIDForTypeInRoot(  		}  	} -	if(rv.isNull() && create_folder && root_id.notNull()) +	if(rv.isNull()  +       && root_id.notNull() +       && create_folder +       && preferred_type != LLFolderType::FT_MARKETPLACE_LISTINGS +       && preferred_type != LLFolderType::FT_OUTBOX)  	{  		if (isInventoryUsable())  | 
