1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-02 07:03:50 +01:00

Possible MSVC buildbot fix.

The buildbot was reporting "error C2440: 'default argument' : cannot convert from 'initializer-list' to 'const wxString &'" for prefs.h
This commit is contained in:
James Crook
2018-04-02 19:46:08 +01:00
parent 1eafc323d5
commit d68500fe2b

View File

@@ -99,7 +99,7 @@ public:
size_t defaultSymbol,
const int intValues[] = nullptr, // must have same size as symbols
const wxString &oldKey = {}
const wxString &oldKey = wxString("")
)
: EnumSetting{ key, symbols, nSymbols, defaultSymbol }
, mIntValues{ intValues }