]> git.saurik.com Git - wxWidgets.git/commit
Replace public wxEvtHandler::ProcessEventHere() with private TryHere().
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 9 May 2010 14:55:46 +0000 (14:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 9 May 2010 14:55:46 +0000 (14:55 +0000)
commit512220b67b4daffb5aeaaef411d82db1db7205c9
tree225c7d69be54708fd46e9cfaa3d098eb737759a2
parent44070fd37901a9fac597314730b55de6b9461382
Replace public wxEvtHandler::ProcessEventHere() with private TryHere().

ProcessEventHere() doesn't have to be public any more now that we have
ProcessEventLocally() which is safe to call from the outside (i.e. doesn't
forget about the chained event handlers and validators).

Still keep this function because it makes the code more modular and also
because we might want to make it virtual for consistency with TryBefore() and
TryAfter() later. Also rename it to TryHere() to make the symmetry with these
functions more manifest.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64264 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
include/wx/event.h
interface/wx/event.h
interface/wx/window.h
src/common/event.cpp
src/common/wincmn.cpp