mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 06:03:49 +01:00
Fix for broken build (::None)
None clashed with something else under linux, probably a macro expansion.
This commit is contained in:
@@ -1798,7 +1798,7 @@ void VSTEffect::ExportPresets()
|
||||
//
|
||||
// Passing a valid parent will cause some effects dialogs to malfunction
|
||||
// upon returning from the FileNames::SelectFile().
|
||||
path = FileNames::SelectFile(FileNames::Operation::None,
|
||||
path = FileNames::SelectFile(FileNames::Operation::_None,
|
||||
_("Save VST Preset As:"),
|
||||
FileNames::DataDir(),
|
||||
wxEmptyString,
|
||||
@@ -1850,7 +1850,7 @@ void VSTEffect::ImportPresets()
|
||||
wxString path;
|
||||
|
||||
// Ask the user for the real name
|
||||
path = FileNames::SelectFile(FileNames::Operation::None,
|
||||
path = FileNames::SelectFile(FileNames::Operation::_None,
|
||||
_("Load VST Preset:"),
|
||||
FileNames::DataDir(),
|
||||
wxEmptyString,
|
||||
|
||||
Reference in New Issue
Block a user