Fix complaint from xgettext about empty string

This commit is contained in:
Paul Licameli 2021-05-21 20:41:27 -04:00
parent 7605763fa0
commit 010fe7bff2
1 changed files with 1 additions and 1 deletions

View File

@ -1213,7 +1213,7 @@ bool CommandManager::HandleCommandEntry(AudacityProject &project,
mNiceName = NiceName;
}
else {
mNiceName = XO("");
mNiceName = {};
}
const CommandContext context{ project, evt, entry->index, entry->parameter };