summaryrefslogtreecommitdiff
path: root/libs/ardour/io_processor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-06-17 15:50:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-06-17 15:50:29 +0000
commit1e8047f0ed022b617716184450479e39dead058d (patch)
tree8d1126753685331237b2397226c2d884a57d3a7b /libs/ardour/io_processor.cc
parent34930fc8cf6f5b552b7cc853b7ce008ea9fb1aaf (diff)
solo models work again (amazing how hard this was); remove crufty debug output; remove scrollbars on editor (and temporarily lose zoom controls)
git-svn-id: svn://localhost/ardour2/branches/3.0@5207 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/io_processor.cc')
-rw-r--r--libs/ardour/io_processor.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/ardour/io_processor.cc b/libs/ardour/io_processor.cc
index cfa2b4c689..87d679bbac 100644
--- a/libs/ardour/io_processor.cc
+++ b/libs/ardour/io_processor.cc
@@ -64,8 +64,6 @@ IOProcessor::IOProcessor (Session& s, bool with_input, bool with_output,
if (with_output) {
_output.reset (new IO(s, io_name.empty() ? proc_name : io_name, IO::Output, dtype));
}
-
- cerr << "fresh create IOP name = " << proc_name << " in = " << _input << " out = " << _output << endl;
}
/* create an IOProcessor that proxies to an existing IO object */
@@ -76,7 +74,6 @@ IOProcessor::IOProcessor (Session& s, boost::shared_ptr<IO> in, boost::shared_pt
, _input (in)
, _output (out)
{
- cerr << "XML create IOP name = " << proc_name << " in = " << in << " out = " << out << endl;
if (in) {
_own_input = false;
} else {
@@ -165,8 +162,6 @@ IOProcessor::set_state (const XMLNode& node)
_own_output = (prop->value() == "yes");
}
- cerr << _name << " own input = " << _own_input << " output = " << _own_output << endl;
-
/* don't attempt to set state for a proxied IO that we don't own */
XMLNodeList nlist = node.children();