summaryrefslogtreecommitdiff
path: root/libs/ardour/plugin.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-09-27 04:20:31 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-09-27 04:20:31 +0000
commite79a7e8ff95d50fec527e6f6381cd30bcf57c8f8 (patch)
treefc9dbe8d8e0a8b363bfd3044b81058d72e91a24c /libs/ardour/plugin.cc
parent0fe9b6310013549b509da2311b16c56e0b498d7d (diff)
auto-re-connect ALSA seq ports at startup, if they were connected; may break OS X compilation till tomorrow morning (US Eastern TZ)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2489 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/plugin.cc')
-rw-r--r--libs/ardour/plugin.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/plugin.cc b/libs/ardour/plugin.cc
index d95ab702ac..7b956b564b 100644
--- a/libs/ardour/plugin.cc
+++ b/libs/ardour/plugin.cc
@@ -33,6 +33,7 @@
#include <pbd/error.h>
#include <pbd/pathscanner.h>
#include <pbd/xml++.h>
+#include <pbd/stacktrace.h>
#include <ardour/ardour.h>
#include <ardour/session.h>
@@ -112,7 +113,7 @@ Plugin::get_nth_control (uint32_t n, bool do_not_create)
Plugin::ParameterDescriptor desc;
get_parameter_descriptor (n, desc);
-
+
controls[n] = new PortControllable (describe_parameter (n), *this, n,
desc.lower, desc.upper, desc.toggled, desc.logarithmic);
}