1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 22:28:57 +02:00

Remove unused Sequence::Duplicate

This commit is contained in:
Paul Licameli 2016-03-31 13:44:36 -04:00
parent c78e91f6c1
commit 5477781ea8

View File

@ -75,9 +75,6 @@ class PROFILE_DLL_API Sequence final : public XMLTagHandler{
// DirManager as a parameter, because you might be copying // DirManager as a parameter, because you might be copying
// from one project to another... // from one project to another...
Sequence(const Sequence &orig, DirManager *projDirManager); Sequence(const Sequence &orig, DirManager *projDirManager);
Sequence *Duplicate(DirManager *projDirManager) const {
return new Sequence(*this, projDirManager);
}
~Sequence(); ~Sequence();