summaryrefslogtreecommitdiff
path: root/indra/newview/llpathfindingpathtool.h
diff options
context:
space:
mode:
authorAnsariel <ansariel.hiller@phoenixviewer.com>2024-02-18 12:52:19 +0100
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-02-18 15:51:54 +0200
commitc285f59ce2a05703e3a1232fcaf3ee3aea714b3f (patch)
tree1dbc789653709c93dbdc6d0db6759c6c264f9ba8 /indra/newview/llpathfindingpathtool.h
parente83eff446802694ef2b556c230937a6c4fef7654 (diff)
Replace BOOL with bool in llwindow and dependent classes
Diffstat (limited to 'indra/newview/llpathfindingpathtool.h')
-rw-r--r--indra/newview/llpathfindingpathtool.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llpathfindingpathtool.h b/indra/newview/llpathfindingpathtool.h
index 88cb3a15f8..1f55573c58 100644
--- a/indra/newview/llpathfindingpathtool.h
+++ b/indra/newview/llpathfindingpathtool.h
@@ -66,15 +66,15 @@ public:
typedef boost::signals2::signal<void (void)> path_event_signal_t;
typedef boost::signals2::connection path_event_slot_t;
- virtual BOOL handleMouseDown(S32 pX, S32 pY, MASK pMask);
- virtual BOOL handleMouseUp(S32 pX, S32 pY, MASK pMask);
- virtual BOOL handleMiddleMouseDown(S32 pX, S32 pY, MASK pMask);
- virtual BOOL handleMiddleMouseUp(S32 pX, S32 pY, MASK pMask);
- virtual BOOL handleRightMouseDown(S32 pX, S32 pY, MASK pMask);
- virtual BOOL handleRightMouseUp(S32 pX, S32 pY, MASK pMask);
- virtual BOOL handleDoubleClick(S32 x, S32 y, MASK mask);
+ virtual bool handleMouseDown(S32 pX, S32 pY, MASK pMask);
+ virtual bool handleMouseUp(S32 pX, S32 pY, MASK pMask);
+ virtual bool handleMiddleMouseDown(S32 pX, S32 pY, MASK pMask);
+ virtual bool handleMiddleMouseUp(S32 pX, S32 pY, MASK pMask);
+ virtual bool handleRightMouseDown(S32 pX, S32 pY, MASK pMask);
+ virtual bool handleRightMouseUp(S32 pX, S32 pY, MASK pMask);
+ virtual bool handleDoubleClick(S32 x, S32 y, MASK mask);
- virtual BOOL handleHover(S32 pX, S32 pY, MASK pMask);
+ virtual bool handleHover(S32 pX, S32 pY, MASK pMask);
virtual BOOL handleKey(KEY pKey, MASK pMask);