1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-13 08:06:32 +01:00

Fix Windows build

This commit is contained in:
Paul Licameli
2016-08-14 09:32:46 -04:00
parent 32f24eabb2
commit 41efaeeef0
3 changed files with 7 additions and 3 deletions

View File

@@ -44,7 +44,11 @@ struct SubMenuListEntry
: name(name_), menu( std::move(menu_) )
{}
// SubMenuListEntry( SubMenuListEntry&& ) = default;
SubMenuListEntry(SubMenuListEntry &&that)
: name(std::move(that.name))
, menu(std::move(that.menu))
{
}
wxString name;
std::unique_ptr<wxMenu> menu;