From 7f3cd4d682f2976186bdb1ad7d7aabcf483294ee Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 14 Jan 2014 05:35:33 +0000 Subject: [PATCH] add missing GetVeto method git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_3_0_BRANCH@75622 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/event.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/interface/wx/event.h b/interface/wx/event.h index a736f9f12b..52bb60970b 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -4083,6 +4083,11 @@ public: You can only veto a shutdown if CanVeto() returns @true. */ void Veto(bool veto = true); + + /** + Returns whether the Veto flag was set. + */ + bool GetVeto() const; };