meet rhythm ferret: cute, furry and always on time (ardour build now requires fftw3...
[ardour.git] / libs / ardour / ardour / session_selection.h
index a1dd31d7ff1fa29b535a668ac3701ed420cf6230..4169a3a51146df0d4b4d4af71480d0bde70abc50 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_session_named_selection_h__
@@ -29,7 +28,7 @@ namespace ARDOUR {
 template<class T> void 
 Session::foreach_named_selection (T& obj, void (T::*func)(NamedSelection&)) 
 {
-       LockMonitor lm (named_selection_lock, __LINE__, __FILE__);
+       Glib::Mutex::Lock lm (named_selection_lock);
        for (NamedSelectionList::iterator i = named_selections.begin(); i != named_selections.end(); i++) {
                (obj.*func) (**i);
        }