summaryrefslogtreecommitdiff
path: root/libs/ardour/send.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-12-07 14:23:32 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-12-07 14:23:32 +0000
commit50aee542192e98016d44aa3f11f40bbe2e8367f6 (patch)
tree8a9d4c1d9c3d097b11ad61063f9c0d7de6efbe1d /libs/ardour/send.cc
parent20aeb5af0abd50dc01db503d65897c7dfebf6467 (diff)
remove visible "sound notes" button,add Config parameter to control this (which then saves the state the user selected), add control to the prefs dialog
git-svn-id: svn://localhost/ardour2/branches/3.0@10934 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/send.cc')
-rw-r--r--libs/ardour/send.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc
index f537c9dfdf..f299995ffa 100644
--- a/libs/ardour/send.cc
+++ b/libs/ardour/send.cc
@@ -21,6 +21,7 @@
#include <algorithm>
#include "pbd/xml++.h"
+#include "pbd/boost_debug.h"
#include "ardour/amp.h"
#include "ardour/send.h"
@@ -42,6 +43,8 @@ Send::Send (Session& s, boost::shared_ptr<Pannable> p, boost::shared_ptr<MuteMas
: Delivery (s, p, mm, string_compose (_("send %1"), (_bitslot = s.next_send_id()) + 1), r)
, _metering (false)
{
+ boost_debug_shared_ptr_mark_interesting (this, "send");
+
_amp.reset (new Amp (_session));
_meter.reset (new PeakMeter (_session));
}