From: Vadim Zeitlin Date: Fri, 9 Jul 2004 10:42:14 +0000 (+0000) Subject: added wxNavigationKeyEvent::IsBackward to be able to call wxWindow::Navigate(IsBackwa... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f2de9fee23d60a9033133aff7597b7ee4901a31d added wxNavigationKeyEvent::IsBackward to be able to call wxWindow::Navigate(IsBackward) and not only Navigate(IsForward) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28195 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/event.h b/include/wx/event.h index 46d21a54ff..5ce6242d57 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -1797,6 +1797,7 @@ public: enum { + IsBackward = 0x0000, IsForward = 0x0001, WinChange = 0x0002 };