1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-30 07:29:29 +02:00

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.
This commit is contained in:
Paul Licameli 2017-07-04 06:25:35 -04:00
parent e7065d9e86
commit bc281fa7b4

View File

@ -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();