visualize port connections in mixer/processor when in < out
[ardour.git] / libs / ardour / pannable.cc
index fb890a5e341d409c5fc4c847adece87113e926d4..92e91f53c1d2068e7574360619103d6c6dd82f8a 100644 (file)
@@ -20,6 +20,7 @@
 #include "pbd/error.h"
 #include "pbd/convert.h"
 #include "pbd/compose.h"
+#include "pbd/boost_debug.h"
 
 #include "ardour/debug.h"
 #include "ardour/automation_control.h"
@@ -48,6 +49,8 @@ Pannable::Pannable (Session& s)
        , _has_state (false)
        , _responding_to_control_auto_state_change (0)
 {
+       //boost_debug_shared_ptr_mark_interesting (this, "pannable");
+       
        add_control (pan_azimuth_control);
        add_control (pan_elevation_control);
        add_control (pan_width_control);
@@ -182,7 +185,7 @@ Pannable::get_state ()
 }
 
 XMLNode&
-Pannable::state (bool full)
+Pannable::state (bool /*full*/)
 {
        XMLNode* node = new XMLNode (X_("Pannable"));
 
@@ -236,27 +239,27 @@ Pannable::set_state (const XMLNode& root, int version)
 
                        /* old school (alpha1-6) XML info */
 
-                       if ((*niter)->name() == pan_azimuth_control->name()) {
+                       if ((*niter)->name() == X_("azimuth")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
                                        pan_azimuth_control->set_value (atof (prop->value()));
                                }
-                       } else if ((*niter)->name() == pan_width_control->name()) {
+                       } else if ((*niter)->name() == X_("width")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
                                        pan_width_control->set_value (atof (prop->value()));
                                }
-                       } else if ((*niter)->name() == pan_elevation_control->name()) {
+                       } else if ((*niter)->name() == X_("elevation")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
                                        pan_elevation_control->set_value (atof (prop->value()));
                                }
-                       } else if ((*niter)->name() == pan_frontback_control->name()) {
+                       } else if ((*niter)->name() == X_("frontback")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
                                        pan_frontback_control->set_value (atof (prop->value()));
                                }
-                       } else if ((*niter)->name() == pan_lfe_control->name()) {
+                       } else if ((*niter)->name() == X_("lfe")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
                                        pan_lfe_control->set_value (atof (prop->value()));