From 1e0b04a9cb67c6f8943d0a7fadd6c7e0eb41fdbb Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 14 Jan 2014 05:36:24 +0000 Subject: [PATCH] add missing GetVeto method git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75624 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 8426e63750..191fd45884 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -4085,6 +4085,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; };