remove debug output

This commit is contained in:
Paul Davis 2022-06-29 08:17:08 -06:00
parent ca49bc00f0
commit f631f742fa
2 changed files with 0 additions and 20 deletions

View File

@ -175,11 +175,9 @@ Editor::canvas_event_time (GdkEvent const * event, double* pcx, double* pcy) con
timepos_t pos (canvas_event_sample (event, pcx, pcy));
if (default_time_domain() == Temporal::AudioTime) {
cerr << "E::cet returns audio\n";
return pos;
}
cerr << "E::cet returns beats\n";
return timepos_t (pos.beats());
}

View File

@ -1130,10 +1130,6 @@ MidiRegionView::model_changed()
return;
}
#ifndef NDEBUG
Timing t;
#endif
if (_active_notes) {
// Currently recording
const samplecnt_t zoom = trackview.editor().get_current_zoom();
@ -1271,11 +1267,6 @@ MidiRegionView::model_changed()
_marked_for_selection.clear ();
_marked_for_velocity.clear ();
_pending_note_selection.clear ();
#ifndef NDEBUG
t.update ();
std::cerr << "REDISPLAY(model) of " << region()->name() << " complete after " << t.elapsed_msecs() << std::endl;
#endif
}
void
@ -1285,10 +1276,6 @@ MidiRegionView::view_changed()
return;
}
#ifndef NDEBUG
Timing t;
#endif
if (_active_notes) {
// Currently recording
const samplecnt_t zoom = trackview.editor().get_current_zoom();
@ -1349,11 +1336,6 @@ MidiRegionView::view_changed()
update_sysexes();
update_patch_changes ();
#ifndef NDEBUG
t.update ();
std::cerr << "REDISPLAY(view) of " << region()->name() << " complete after " << t.elapsed_msecs() << std::endl;
#endif
}
void