mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-20 09:31:15 +02:00
CommandManager keys by CommandId, not plain wxString
This commit is contained in:
@@ -286,8 +286,11 @@ using FileExtensions = wxArrayStringEx;
|
||||
using FilePath = wxString;
|
||||
using FilePaths = wxArrayStringEx;
|
||||
|
||||
using CommandID = wxString;
|
||||
using CommandIDs = std::vector< CommandID >;
|
||||
// Identifies a menu command or macro.
|
||||
// Case-insensitive comparison
|
||||
struct CommandIdTag;
|
||||
using CommandID = TaggedIdentifier< CommandIdTag, false >;
|
||||
using CommandIDs = std::vector<CommandID>;
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// A native 64-bit integer...used when referring to any number of samples
|
||||
|
Reference in New Issue
Block a user