Remove debug messages, cleanup output (1/2)
This commit is contained in:
parent
10109c3147
commit
5d175786e8
@ -2210,8 +2210,6 @@ ARDOUR_UI::update_clocks ()
|
|||||||
void
|
void
|
||||||
ARDOUR_UI::start_clocking ()
|
ARDOUR_UI::start_clocking ()
|
||||||
{
|
{
|
||||||
std::cerr << "start clocking\n";
|
|
||||||
|
|
||||||
if (UIConfiguration::instance().get_no_strobe()) {
|
if (UIConfiguration::instance().get_no_strobe()) {
|
||||||
if (!_session) {
|
if (!_session) {
|
||||||
return;
|
return;
|
||||||
|
@ -122,7 +122,6 @@ ARDOUR_UI::create_xrun_marker (samplepos_t where)
|
|||||||
void
|
void
|
||||||
ARDOUR_UI::halt_on_xrun_message ()
|
ARDOUR_UI::halt_on_xrun_message ()
|
||||||
{
|
{
|
||||||
cerr << "HALT on xrun\n";
|
|
||||||
ArdourMessageDialog msg (_main_window, _("Recording was stopped because your system could not keep up."));
|
ArdourMessageDialog msg (_main_window, _("Recording was stopped because your system could not keep up."));
|
||||||
msg.run ();
|
msg.run ();
|
||||||
}
|
}
|
||||||
|
@ -649,7 +649,6 @@ Editor::Editor ()
|
|||||||
|
|
||||||
_cursors = new MouseCursors;
|
_cursors = new MouseCursors;
|
||||||
_cursors->set_cursor_set (UIConfiguration::instance().get_icon_set());
|
_cursors->set_cursor_set (UIConfiguration::instance().get_icon_set());
|
||||||
cerr << "Set cursor set to " << UIConfiguration::instance().get_icon_set() << endl;
|
|
||||||
|
|
||||||
/* Push default cursor to ever-present bottom of cursor stack. */
|
/* Push default cursor to ever-present bottom of cursor stack. */
|
||||||
push_canvas_cursor(_cursors->grabber);
|
push_canvas_cursor(_cursors->grabber);
|
||||||
|
@ -4751,8 +4751,6 @@ MidiRegionView::note_to_y(uint8_t note) const
|
|||||||
void
|
void
|
||||||
MidiRegionView::quantize_selected_notes ()
|
MidiRegionView::quantize_selected_notes ()
|
||||||
{
|
{
|
||||||
std::cerr << "QSN!\n";
|
|
||||||
|
|
||||||
RegionSelection rs;
|
RegionSelection rs;
|
||||||
rs.push_back (this);
|
rs.push_back (this);
|
||||||
|
|
||||||
|
@ -200,9 +200,6 @@ PluginUIWindow::PluginUIWindow (std::shared_ptr<PlugInsertBase> pib,
|
|||||||
|
|
||||||
PluginUIWindow::~PluginUIWindow ()
|
PluginUIWindow::~PluginUIWindow ()
|
||||||
{
|
{
|
||||||
#ifndef NDEBUG
|
|
||||||
cerr << "PluginWindow deleted for " << this << endl;
|
|
||||||
#endif
|
|
||||||
delete _pluginui;
|
delete _pluginui;
|
||||||
|
|
||||||
if (the_plugin_window == this) {
|
if (the_plugin_window == this) {
|
||||||
|
Loading…
Reference in New Issue
Block a user