From f1df928b4bc1df7bc8ab6871c5273b04d0b77dea Mon Sep 17 00:00:00 2001 From: Todd Stinson Date: Wed, 11 Apr 2012 13:58:26 -0700 Subject: Removing debug messaging that was accidentally committed. --- indra/newview/llpathfindingpathtool.cpp | 20 -------------------- indra/newview/llpathfindingpathtool.h | 1 - 2 files changed, 21 deletions(-) diff --git a/indra/newview/llpathfindingpathtool.cpp b/indra/newview/llpathfindingpathtool.cpp index 0497a8972f..23fdd43b0b 100644 --- a/indra/newview/llpathfindingpathtool.cpp +++ b/indra/newview/llpathfindingpathtool.cpp @@ -68,8 +68,6 @@ BOOL LLPathfindingPathTool::handleMouseDown(S32 pX, S32 pY, MASK pMask) { BOOL returnVal = FALSE; - llinfos << "STINSON DEBUG: got here" << llendl; - if (!mIsLeftMouseButtonHeld && !mIsMiddleMouseButtonHeld && !mIsRightMouseButtonHeld && isAnyPathToolModKeys(pMask)) { computeFinalPoints(pX, pY, pMask); @@ -86,8 +84,6 @@ BOOL LLPathfindingPathTool::handleMouseUp(S32 pX, S32 pY, MASK pMask) { BOOL returnVal = FALSE; - llinfos << "STINSON DEBUG: got here" << llendl; - if (mIsLeftMouseButtonHeld && !mIsMiddleMouseButtonHeld && !mIsRightMouseButtonHeld && isAnyPathToolModKeys(pMask)) { computeFinalPoints(pX, pY, pMask); @@ -101,8 +97,6 @@ BOOL LLPathfindingPathTool::handleMouseUp(S32 pX, S32 pY, MASK pMask) BOOL LLPathfindingPathTool::handleMiddleMouseDown(S32 pX, S32 pY, MASK pMask) { - llinfos << "STINSON DEBUG: got here" << llendl; - setMouseCapture(TRUE); mIsMiddleMouseButtonHeld = true; gViewerWindow->setCursor(UI_CURSOR_TOOLNO); @@ -112,8 +106,6 @@ BOOL LLPathfindingPathTool::handleMiddleMouseDown(S32 pX, S32 pY, MASK pMask) BOOL LLPathfindingPathTool::handleMiddleMouseUp(S32 pX, S32 pY, MASK pMask) { - llinfos << "STINSON DEBUG: got here" << llendl; - if (!mIsLeftMouseButtonHeld && mIsMiddleMouseButtonHeld && !mIsRightMouseButtonHeld) { setMouseCapture(FALSE); @@ -125,8 +117,6 @@ BOOL LLPathfindingPathTool::handleMiddleMouseUp(S32 pX, S32 pY, MASK pMask) BOOL LLPathfindingPathTool::handleRightMouseDown(S32 pX, S32 pY, MASK pMask) { - llinfos << "STINSON DEBUG: got here" << llendl; - setMouseCapture(TRUE); mIsRightMouseButtonHeld = true; gViewerWindow->setCursor(UI_CURSOR_TOOLNO); @@ -136,8 +126,6 @@ BOOL LLPathfindingPathTool::handleRightMouseDown(S32 pX, S32 pY, MASK pMask) BOOL LLPathfindingPathTool::handleRightMouseUp(S32 pX, S32 pY, MASK pMask) { - llinfos << "STINSON DEBUG: got here" << llendl; - if (!mIsLeftMouseButtonHeld && !mIsMiddleMouseButtonHeld && mIsRightMouseButtonHeld) { setMouseCapture(FALSE); @@ -149,20 +137,12 @@ BOOL LLPathfindingPathTool::handleRightMouseUp(S32 pX, S32 pY, MASK pMask) BOOL LLPathfindingPathTool::handleDoubleClick(S32 pX, S32 pY, MASK pMask) { - llinfos << "STINSON DEBUG: got here" << llendl; - return TRUE; } -void LLPathfindingPathTool::onMouseCaptureLost() -{ - llinfos << "STINSON DEBUG: got here" << llendl; -} - BOOL LLPathfindingPathTool::handleHover(S32 pX, S32 pY, MASK pMask) { BOOL returnVal = FALSE; - llinfos << "STINSON DEBUG: got here" << llendl; if (!mIsMiddleMouseButtonHeld && !mIsRightMouseButtonHeld && isAnyPathToolModKeys(pMask)) { diff --git a/indra/newview/llpathfindingpathtool.h b/indra/newview/llpathfindingpathtool.h index 15ce97fe67..fd55dd8335 100644 --- a/indra/newview/llpathfindingpathtool.h +++ b/indra/newview/llpathfindingpathtool.h @@ -74,7 +74,6 @@ public: 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 void onMouseCaptureLost(); virtual BOOL handleHover(S32 pX, S32 pY, MASK pMask); -- cgit v1.2.3