13
0

Remove unused method..

git-svn-id: svn://localhost/ardour2/branches/3.0@5119 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-06-03 10:35:02 +00:00
parent a75e811edb
commit 1aadfeba45
2 changed files with 0 additions and 10 deletions

View File

@ -120,7 +120,6 @@ class Playlist : public SessionObject,
nframes64_t find_next_transient (nframes64_t position, int dir);
void foreach_region (sigc::slot<void, boost::shared_ptr<Region>, void *>, void *);
void foreach_region (sigc::slot<void, boost::shared_ptr<Region> >);
XMLNode& get_state ();

View File

@ -2396,15 +2396,6 @@ Playlist::update_after_tempo_map_change ()
thaw ();
}
void
Playlist::foreach_region (sigc::slot<void, boost::shared_ptr<Region>, void *> s, void* arg)
{
RegionLock rl (this, false);
for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
s (*i, arg);
}
}
void
Playlist::foreach_region (sigc::slot<void, boost::shared_ptr<Region> > s)
{