From bc281fa7b499357e7cbc3e6d5169aa33b0fa03fc Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 4 Jul 2017 06:25:35 -0400 Subject: [PATCH] Fix one of the patches to wxWidgets source for Mac... ... an inline function in a header was declared to return bool, but returned nothing. Now its type is void. This function's undefined return value was not used anywhere. --- mac/wxMac_additions/fullscreen.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mac/wxMac_additions/fullscreen.patch b/mac/wxMac_additions/fullscreen.patch index 22b9c568e..c5d045160 100644 --- a/mac/wxMac_additions/fullscreen.patch +++ b/mac/wxMac_additions/fullscreen.patch @@ -16,7 +16,7 @@ index ed731f7..0743ae9 100644 virtual bool ShowFullScreen(bool show, long style); -+ bool NotifyFullScreen( bool fullScreen ) { m_isFullScreen = fullScreen; } ++ void NotifyFullScreen( bool fullScreen ) { m_isFullScreen = fullScreen; } + virtual void ShowWithoutActivating();