remove debugging stuff
authorNick Mainsbridge <beatroute@iprimus.com.au>
Tue, 29 Jan 2008 14:41:13 +0000 (14:41 +0000)
committerNick Mainsbridge <beatroute@iprimus.com.au>
Tue, 29 Jan 2008 14:41:13 +0000 (14:41 +0000)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2974 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/editor_tempodisplay.cc

index 7e0181725bf9aaeca318240d19d725bdb46b88a8..b01154d69ebdb2c662c9c6c013baa7c742d043ad 100644 (file)
@@ -321,7 +321,7 @@ Editor::mouse_add_new_tempo_event (nframes_t frame)
        session->add_command(new MementoCommand<TempoMap>(map, &before, &after));
        commit_reversible_command ();
        
-       map.dump (cerr);
+       //map.dump (cerr);
 }
 
 void
@@ -356,8 +356,6 @@ Editor::mouse_add_new_meter_event (nframes_t frame)
        BBT_Time requested;
 
        meter_dialog.get_bbt_time (requested);
-       cerr << "after requested bar: " << requested.bars << " beat " << requested.beats << endl;
-
 
        begin_reversible_command (_("add meter mark"));
         XMLNode &before = map.get_state();
@@ -365,7 +363,7 @@ Editor::mouse_add_new_meter_event (nframes_t frame)
        session->add_command(new MementoCommand<TempoMap>(map, &before, &map.get_state()));
        commit_reversible_command ();
        
-       map.dump (cerr);
+       //map.dump (cerr);
 }
 
 void