Comment typo fixes. (no bug, unreviewed, DONTBUILD)

--HG--
extra : rebase_source : 058fddab2d87b4c6dfcfb40fac71b2a39df8b000
This commit is contained in:
Cameron McCormack 2011-04-24 11:52:59 +12:00
Родитель 6448f71f0d
Коммит 54e695816d
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -6668,7 +6668,7 @@ PRUint16 nsWindow::GetMouseInputSource()
}
#endif
/*
* OnMouseWheel - mouse wheele event processing. This was originally embedded
* OnMouseWheel - mouse wheel event processing. This was originally embedded
* within the message case block. If returning true result should be returned
* immediately (no more processing).
*/
@ -6727,10 +6727,10 @@ PRBool nsWindow::OnMouseWheel(UINT msg, WPARAM wParam, LPARAM lParam, PRBool& ge
return PR_FALSE; // break
// The mousewheel event will be dispatched to the toplevel
// window. We need to give it to the child window
// window. We need to give it to the child window.
PRBool quit;
if (!HandleScrollingPlugins(msg, wParam, lParam, result, aRetValue, quit))
return quit; // return immediately if its not our window
return quit; // return immediately if it's not our window
// We should cancel the surplus delta if the current window is not
// same as previous.