Introduce a macro for imprecise configurations
[ardour.git] / libs / ardour / vca_manager.cc
index a6d9d2bc6f438bebb3d88f4ccf93991190a0deb3..20e9e38ca2aaf0b7e0bc7ec73f7a15df04fee546 100644 (file)
 #include "pbd/error.h"
 #include "pbd/replace_all.h"
 
+#include "ardour/boost_debug.h"
+#include "ardour/session.h"
 #include "ardour/slavable.h"
 #include "ardour/vca.h"
 #include "ardour/vca_manager.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace ARDOUR;
 using namespace Glib::Threads;
@@ -81,6 +83,7 @@ VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
                        }
 
                        boost::shared_ptr<VCA> vca = boost::shared_ptr<VCA> (new VCA (_session, num, name));
+                       BOOST_MARK_VCA (vca);
 
                        vca->init ();
 
@@ -91,6 +94,8 @@ VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
 
        VCAAdded (vcal); /* EMIT SIGNAL */
 
+       _session.set_dirty ();
+
        return 0;
 }
 
@@ -106,10 +111,12 @@ VCAManager::remove_vca (boost::shared_ptr<VCA> vca)
        /* this should cause deassignment and deletion */
 
        vca->DropReferences ();
+
+       _session.set_dirty ();
 }
 
 boost::shared_ptr<VCA>
-VCAManager::vca_by_number (uint32_t n) const
+VCAManager::vca_by_number (int32_t n) const
 {
        Mutex::Lock lm (lock);
 
@@ -153,6 +160,7 @@ VCAManager::set_state (XMLNode const& node, int version)
        for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
                if ((*i)->name() == VCA::xml_node_name) {
                        boost::shared_ptr<VCA> vca = boost::shared_ptr<VCA> (new VCA (_session, 0, X_("tobereset")));
+                       BOOST_MARK_VCA (vca);
 
                        if (vca->init() || vca->set_state (**i, version)) {
                                error << _("Cannot set state of a VCA") << endmsg;