diff options
Diffstat (limited to 'indra/newview/lltool.cpp')
-rw-r--r-- | indra/newview/lltool.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/lltool.cpp b/indra/newview/lltool.cpp index 031358c3dc..18dd695ec1 100644 --- a/indra/newview/lltool.cpp +++ b/indra/newview/lltool.cpp @@ -163,7 +163,7 @@ bool LLTool::handleToolTip(S32 x, S32 y, MASK mask) return false; } -void LLTool::setMouseCapture( BOOL b ) +void LLTool::setMouseCapture( bool b ) { if( b ) { @@ -185,9 +185,9 @@ bool LLTool::hasMouseCapture() return gFocusMgr.getMouseCapture() == (mComposite ? mComposite : this); } -BOOL LLTool::handleKey(KEY key, MASK mask) +bool LLTool::handleKey(KEY key, MASK mask) { - return FALSE; + return false; } LLTool* LLTool::getOverrideTool(MASK mask) |