From 54a69edf6c08d1ab95abae06e143f81bcdd98399 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 15 Jun 2004 22:24:49 +0000 Subject: [PATCH] Enum becomes public git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/event.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/wx/event.h b/include/wx/event.h index 08bfe769b4..75b961517c 100644 --- a/include/wx/event.h +++ b/include/wx/event.h @@ -1763,9 +1763,11 @@ public: wxWindow* GetCurrentFocus() const { return m_focus; } void SetCurrentFocus(wxWindow *win) { m_focus = win; } + // Set flags + void SetFlags(long flags) { m_flags = flags; } + virtual wxEvent *Clone() const { return new wxNavigationKeyEvent(*this); } -private: enum { IsForward = 0x0001, -- 2.45.2