summaryrefslogtreecommitdiff
path: root/indra/llinventory
diff options
context:
space:
mode:
authorAnsariel <ansariel.hiller@phoenixviewer.com>2024-03-01 13:48:46 +0100
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-03-01 15:33:16 +0200
commite160758b5c32f7b4b9622a5c25c7c53070395c7d (patch)
treecead84a0acc6be4b4eaa14bf85408e0c2f42c076 /indra/llinventory
parentc8d5974f998ac223412ea3fe2f93613c86d50908 (diff)
Convert remaining TRUE/FALSE to true/false
Diffstat (limited to 'indra/llinventory')
-rw-r--r--indra/llinventory/tests/inventorymisc_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llinventory/tests/inventorymisc_test.cpp b/indra/llinventory/tests/inventorymisc_test.cpp
index 039fa938dd..0f38dd9104 100644
--- a/indra/llinventory/tests/inventorymisc_test.cpp
+++ b/indra/llinventory/tests/inventorymisc_test.cpp
@@ -374,7 +374,7 @@ namespace tut
LLPointer<LLInventoryItem> src1 = create_random_inventory_item();
std::ostringstream ostream;
- src1->exportLegacyStream(ostream, TRUE);
+ src1->exportLegacyStream(ostream, true);
std::istringstream istream(ostream.str());
LLPointer<LLInventoryItem> src2 = new LLInventoryItem();
@@ -496,7 +496,7 @@ namespace tut
LLPointer<LLInventoryCategory> src1 = create_random_inventory_cat();
std::ostringstream ostream;
- src1->exportLegacyStream(ostream, TRUE);
+ src1->exportLegacyStream(ostream, true);
std::istringstream istream(ostream.str());
LLPointer<LLInventoryCategory> src2 = new LLInventoryCategory();