remove an identical odd namespacing typo
authorPaul Davis <paul@linuxaudiosystems.com>
Thu, 1 Aug 2013 14:46:22 +0000 (10:46 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 1 Aug 2013 14:46:22 +0000 (10:46 -0400)
libs/ardour/playlist.cc

index 60a04303a3b95b6347ddd5e10d1ea853426608ab..bb79801c9f0b45342f7de4e3d3650aa19d082af3 100644 (file)
@@ -284,7 +284,7 @@ Playlist::copy_regions (RegionList& newlist) const
        RegionReadLock rlock (const_cast<Playlist *> (this));
 
        for (RegionList::const_iterator i = regions.begin(); i != regions.end(); ++i) {
-               newlist.push_back (RegionFactory::RegionFactory::create (*i, true));
+               newlist.push_back (RegionFactory::create (*i, true));
        }
 }