diff options
| author | Hecklezz <tj8@live.com.au> | 2025-12-13 01:16:26 +1000 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-12-16 00:30:30 +0200 |
| commit | 59088a4824be5dc131b86ea355300a4c42b1670a (patch) | |
| tree | 74bd65fada7394d1272224db5a66c30c8e8c7d01 /indra/newview/lltoolview.cpp | |
| parent | a1eee717de59c0b1f514cedb7a7614d4b0a62e65 (diff) | |
Cleaned up unnecessary fake bool usage where appropriate
Signed-off-by: Hecklezz <tj8@live.com.au>
Diffstat (limited to 'indra/newview/lltoolview.cpp')
| -rw-r--r-- | indra/newview/lltoolview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/lltoolview.cpp b/indra/newview/lltoolview.cpp index 179aae1e02..cd1d90ea9e 100644 --- a/indra/newview/lltoolview.cpp +++ b/indra/newview/lltoolview.cpp @@ -109,8 +109,8 @@ LLToolView::~LLToolView() // // Can optionally ignore panel // if (contain->mPanel) // { -// contain->mPanel->setBackgroundVisible( FALSE ); -// contain->mPanel->setBorderVisible( FALSE ); +// contain->mPanel->setBackgroundVisible( false ); +// contain->mPanel->setBorderVisible( false ); // addChild(contain->mPanel); // } @@ -153,7 +153,7 @@ void LLToolView::draw() iter != mContainList.end(); ++iter) { LLToolContainer* contain = *iter; - BOOL state = (contain->mTool == selected); + bool state = (contain->mTool == selected); contain->mButton->setToggleState( state ); if (contain->mPanel) { |
