diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2025-05-20 20:40:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-20 20:40:04 +0300 |
commit | 2cbff073edad0bb31d2a025b888a9fb2e90fe2cf (patch) | |
tree | a9627a2cc78621d37a74c29bdf3fcb0d9efe5ea1 /indra/newview/llinventoryfunctions.h | |
parent | 3de223aecf53ee6f69de8fba29aaa6593484d7e8 (diff) |
#4000 Cherry pick inventory LEAP functions from develop branch
Diffstat (limited to 'indra/newview/llinventoryfunctions.h')
-rw-r--r-- | indra/newview/llinventoryfunctions.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llinventoryfunctions.h b/indra/newview/llinventoryfunctions.h index a668cc31d8..b40fc051a0 100644 --- a/indra/newview/llinventoryfunctions.h +++ b/indra/newview/llinventoryfunctions.h @@ -192,7 +192,9 @@ class LLInventoryCollectFunctor { public: virtual ~LLInventoryCollectFunctor(){}; - virtual bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) = 0; + virtual bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) = 0; + + virtual bool exceedsLimit() { return false; } static bool itemTransferCommonlyAllowed(const LLInventoryItem* item); }; |