summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-09-04 14:23:31 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-09-04 14:23:31 -0400
commita980a8f30870d35a5a45cbf52169f7bf35cf95ce (patch)
tree4ff20d0ebb19b5cab8034709c4a653b12b9b94af /indra/llui
parentd5fa10180344d419d5d9a9fe580044f28aa64e43 (diff)
Swat a few more buzzing BOOLs.
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llluafloater.cpp2
-rw-r--r--indra/llui/llluafloater.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llluafloater.cpp b/indra/llui/llluafloater.cpp
index ca80a2c451..ccdadc6ae0 100644
--- a/indra/llui/llluafloater.cpp
+++ b/indra/llui/llluafloater.cpp
@@ -157,7 +157,7 @@ LLLuaFloater::~LLLuaFloater()
post(LLSD());
}
-BOOL LLLuaFloater::postBuild()
+bool LLLuaFloater::postBuild()
{
for (LLView *view : *getChildList())
{
diff --git a/indra/llui/llluafloater.h b/indra/llui/llluafloater.h
index d0641d41b0..41132f926d 100644
--- a/indra/llui/llluafloater.h
+++ b/indra/llui/llluafloater.h
@@ -34,7 +34,7 @@ class LLLuaFloater : public LLFloater
{
public:
LLLuaFloater(const LLSD &key);
- BOOL postBuild();
+ bool postBuild();
virtual ~LLLuaFloater();
void registerCallback(const std::string &ctrl_name, const std::string &event);