mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-02 12:35:11 +02:00
movable_ptr(_with_deleter) -> std::unique_ptr
This commit is contained in:
@@ -307,7 +307,7 @@ void Importer::WriteImportItems()
|
||||
} while( true );
|
||||
}
|
||||
|
||||
movable_ptr<ExtImportItem> Importer::CreateDefaultImportItem()
|
||||
std::unique_ptr<ExtImportItem> Importer::CreateDefaultImportItem()
|
||||
{
|
||||
auto new_item = std::make_unique<ExtImportItem>();
|
||||
new_item->extensions.Add(wxT("*"));
|
||||
|
||||
Reference in New Issue
Block a user