diff options
| author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-04-24 19:49:27 +0200 |
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-04-24 20:55:37 +0300 |
| commit | 5f4d312c8d2b6ba0fd13279ccfc569acd4f37c82 (patch) | |
| tree | 4751db8f95f7c7651e37a77c3ccbe79d031d86c5 /indra/newview/lloutfitslist.cpp | |
| parent | 4c54488470a37f53f46c9d4694644a10b92b9790 (diff) | |
Fix BOOL vs bool issues after merge
Diffstat (limited to 'indra/newview/lloutfitslist.cpp')
| -rw-r--r-- | indra/newview/lloutfitslist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp index a7f9f53b9f..060f10d813 100644 --- a/indra/newview/lloutfitslist.cpp +++ b/indra/newview/lloutfitslist.cpp @@ -1356,7 +1356,7 @@ bool LLOutfitAccordionCtrlTab::handleToolTip(S32 x, S32 y, MASK mask) .delay_time(LLView::getTooltipTimeout()) .create_callback(boost::bind(&LLInspectTextureUtil::createInventoryToolTip, _1)) .create_params(params)); - return TRUE; + return true; } return LLAccordionCtrlTab::handleToolTip(x, y, mask); |
