diff options
author | Graham Linden <graham@lindenlab.com> | 2018-09-26 21:25:11 +0100 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2018-09-26 21:25:11 +0100 |
commit | 2783783575a9b712eb318b450dc5e6bb17d7f7c5 (patch) | |
tree | fdec4e4cf274e2a916e22d73d11afbce5bb669c0 /indra/llinventory | |
parent | 6d256d679e9cea63753266420ed79efa8b70dee2 (diff) | |
parent | 58aef8beaf79dc83546a7b080014ca5030733ac8 (diff) |
Merge to 5.2.0
Diffstat (limited to 'indra/llinventory')
-rw-r--r-- | indra/llinventory/llinventorytype.cpp | 2 | ||||
-rw-r--r-- | indra/llinventory/llinventorytype.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/indra/llinventory/llinventorytype.cpp b/indra/llinventory/llinventorytype.cpp index d1e6807f52..7399e1bca4 100644 --- a/indra/llinventory/llinventorytype.cpp +++ b/indra/llinventory/llinventorytype.cpp @@ -181,7 +181,7 @@ LLInventoryType::EType LLInventoryType::defaultForAssetType(LLAssetType::EType a } else { - return IT_NONE; + return IT_UNKNOWN; } } diff --git a/indra/llinventory/llinventorytype.h b/indra/llinventory/llinventorytype.h index fc3c78cf50..891ab217fd 100644 --- a/indra/llinventory/llinventorytype.h +++ b/indra/llinventory/llinventorytype.h @@ -66,6 +66,7 @@ public: IT_PERSON = 24, IT_COUNT = 25, + IT_UNKNOWN = 255, IT_NONE = -1 }; @@ -111,6 +112,7 @@ public: ICONNAME_MESH, ICONNAME_INVALID, + ICONNAME_UNKNOWN, ICONNAME_COUNT, ICONNAME_NONE = -1 }; |