1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 16:09:28 +02:00

Exclude Window menu if build with wx313

I'm not sure exactly when the Window menu started working again,
but when built with wx313, the system provides the Window menu
just fine on all OSX versions from 10.7 - 10.15.
This commit is contained in:
Leland Lucius 2020-05-23 21:10:38 -05:00
parent e9d2669a33
commit 1efb10cf78

View File

@ -5,7 +5,8 @@
// This file collects a few things specific to Mac and requiring some
// Objective-C++ . Avoid mixing languages elsewhere.
#ifdef __WXMAC__
// Only needed when using wxWidgets < 3.1.3
#if defined(__WXMAC__) && !wxCHECK_VERSION(3,1,3)
#include "../CommonCommandFlags.h"
#include "../Menus.h"