summaryrefslogtreecommitdiff
path: root/indra/llui/tests
diff options
context:
space:
mode:
authorHecklezz <tj8@live.com.au>2025-12-13 01:16:26 +1000
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-12-16 00:30:30 +0200
commit59088a4824be5dc131b86ea355300a4c42b1670a (patch)
tree74bd65fada7394d1272224db5a66c30c8e8c7d01 /indra/llui/tests
parenta1eee717de59c0b1f514cedb7a7614d4b0a62e65 (diff)
Cleaned up unnecessary fake bool usage where appropriate
Signed-off-by: Hecklezz <tj8@live.com.au>
Diffstat (limited to 'indra/llui/tests')
-rwxr-xr-xindra/llui/tests/llurlentry_stub.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llui/tests/llurlentry_stub.cpp b/indra/llui/tests/llurlentry_stub.cpp
index 95d1586495..8277c23691 100755
--- a/indra/llui/tests/llurlentry_stub.cpp
+++ b/indra/llui/tests/llurlentry_stub.cpp
@@ -50,16 +50,16 @@ LLAvatarNameCache::callback_connection_t LLAvatarNameCache::get(const LLUUID& ag
//
// Stub implementation for LLCacheName
//
-BOOL LLCacheName::getFullName(const LLUUID& id, std::string& fullname)
+bool LLCacheName::getFullName(const LLUUID& id, std::string& fullname)
{
fullname = "Lynx Linden";
- return TRUE;
+ return true;
}
-BOOL LLCacheName::getGroupName(const LLUUID& id, std::string& group)
+bool LLCacheName::getGroupName(const LLUUID& id, std::string& group)
{
group = "My Group";
- return TRUE;
+ return true;
}
boost::signals2::connection LLCacheName::get(const LLUUID& id, bool is_group, const LLCacheNameCallback& callback)