summaryrefslogtreecommitdiff
path: root/indra/llinventory
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2024-08-27 16:27:34 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2024-08-27 16:27:34 +0300
commit27ce2a23a286709c90579db31c2551e0c3f292e7 (patch)
treee79d4f065c1d47ce9e9bbd2f2f20d089c7c9027c /indra/llinventory
parent2142a4590ab1973a22e2db3aeccfe4d9e616471f (diff)
code clean up
Diffstat (limited to 'indra/llinventory')
-rw-r--r--indra/llinventory/llfoldertype.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/llinventory/llfoldertype.cpp b/indra/llinventory/llfoldertype.cpp
index c8ef1ccc1b..95deb46431 100644
--- a/indra/llinventory/llfoldertype.cpp
+++ b/indra/llinventory/llfoldertype.cpp
@@ -225,11 +225,12 @@ const std::string &LLFolderType::badLookup()
LLSD LLFolderType::getTypeNames()
{
LLSD type_names;
- for (S32 type = FT_TEXTURE; type < FT_COUNT; ++type)
+ const LLFolderDictionary *dict = LLFolderDictionary::getInstance();
+ for (S32 type = 0; type < FT_COUNT; ++type)
{
- if (lookupIsEnsembleType((LLFolderType::EType)type)) continue;
+ if (lookupIsEnsembleType(LLFolderType::EType(type))) continue;
- const FolderEntry *entry = LLFolderDictionary::getInstance()->lookup((LLFolderType::EType)type);
+ const FolderEntry *entry = dict->lookup(LLFolderType::EType(type));
//skip llfoldertype_bad_lookup
if (entry)
{