diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-06-12 19:44:29 +0300 |
---|---|---|
committer | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-06-12 19:44:29 +0300 |
commit | 9eabffe430cd0c7b64f2cb796997dfd74a0cab82 (patch) | |
tree | b9dec3a15ef0dad1c117f7585dea16b2071d89f4 | |
parent | 929f9d8d5f2e7895016648557fa60c9d4a84baf6 (diff) |
SL-19825 do not mix bool and BOOL types
-rw-r--r-- | indra/llui/llfolderview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfolderview.cpp b/indra/llui/llfolderview.cpp index 7e5a9efb37..fa5ff76a2e 100644 --- a/indra/llui/llfolderview.cpp +++ b/indra/llui/llfolderview.cpp @@ -1472,7 +1472,7 @@ BOOL LLFolderView::handleRightMouseDown( S32 x, S32 y, MASK mask ) } } - bool item_clicked = false; + BOOL item_clicked = FALSE; for (selected_items_t::iterator item_it = mSelectedItems.begin(); item_it != mSelectedItems.end(); ++item_it) { item_clicked |= (*item_it)->getRect().pointInRect(x, y); |