diff options
| author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-02-21 21:05:14 +0100 |
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-21 23:14:31 +0200 |
| commit | 60d3dd98a44230c21803c1606552ee098ed9fa7c (patch) | |
| tree | af0aa11c458ca86f786560e0875f7e018e1a16b9 /indra/newview/llfloatermap.cpp | |
| parent | 855eea7ddf9e1de9226036ca94ccb03ac0e311b9 (diff) | |
Convert remaining BOOL to bool
Diffstat (limited to 'indra/newview/llfloatermap.cpp')
| -rwxr-xr-x | indra/newview/llfloatermap.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llfloatermap.cpp b/indra/newview/llfloatermap.cpp index 8cf6e2e307..900816675d 100755 --- a/indra/newview/llfloatermap.cpp +++ b/indra/newview/llfloatermap.cpp @@ -122,7 +122,7 @@ bool LLFloaterMap::handleDoubleClick(S32 x, S32 y, MASK mask) // If floater is minimized, minimap should be shown on doubleclick (STORM-299) if (isMinimized()) { - setMinimized(FALSE); + setMinimized(false); return true; } @@ -229,13 +229,13 @@ void LLFloaterMap::draw() // Note: we can't just gAgent.check cameraMouselook() because the transition states are wrong. if(gAgentCamera.cameraMouselook()) { - setMouseOpaque(FALSE); - getDragHandle()->setMouseOpaque(FALSE); + setMouseOpaque(false); + getDragHandle()->setMouseOpaque(false); } else { - setMouseOpaque(TRUE); - getDragHandle()->setMouseOpaque(TRUE); + setMouseOpaque(true); + getDragHandle()->setMouseOpaque(true); } LLFloater::draw(); |
