diff options
author | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-09-13 19:38:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 19:38:35 +0300 |
commit | 611ba19457da6dc1daf11b23cca973ad788b51ba (patch) | |
tree | 2b55c1ae96de33e0d29ad3b65ecd5caf9b0cc42b /indra/newview | |
parent | 7ced89435d702b8a6bc02908769bed47e20d6ec0 (diff) | |
parent | 2841ca7229e076f9ddd1b2ec2e77099bab7753d9 (diff) |
Merge PR#2515 Fix remaining occurrences of fake BOOL by Ansariel
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterluadebug.cpp | 2 | ||||
-rw-r--r-- | indra/newview/llfloaterluascripts.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterluadebug.cpp b/indra/newview/llfloaterluadebug.cpp index dc989fe15d..06877df816 100644 --- a/indra/newview/llfloaterluadebug.cpp +++ b/indra/newview/llfloaterluadebug.cpp @@ -69,7 +69,7 @@ bool LLFloaterLUADebug::postBuild() mLineInput->setCommitCallback(boost::bind(&LLFloaterLUADebug::onExecuteClicked, this)); mLineInput->setSelectAllonCommit(false); - return TRUE; + return true; } LLFloaterLUADebug::~LLFloaterLUADebug() diff --git a/indra/newview/llfloaterluascripts.cpp b/indra/newview/llfloaterluascripts.cpp index 79623cdefb..0eba45ec29 100644 --- a/indra/newview/llfloaterluascripts.cpp +++ b/indra/newview/llfloaterluascripts.cpp @@ -72,7 +72,7 @@ bool LLFloaterLUAScripts::postBuild() mContextMenuHandle = menu->getHandle(); } - return TRUE; + return true; } LLFloaterLUAScripts::~LLFloaterLUAScripts() |