summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2008-09-19 16:56:01 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2008-09-19 16:56:01 +0000
commit68f04adec110a991e2b2c1657e67a7dc791decc1 (patch)
treee5a47603b50d0e17e69ffcfd904424ed06180ddf /libs/ardour/export_handler.cc
parentfa4bca989b18259456ec713b8f02e061ec8bc8e2 (diff)
* Added PBD::UUID
* uuid headers are needed for building! * Export presets and format profiles use UUID * Moved ExportPreset class away from ExportProfileManager * Workaround for Gtk::NoteBook bug in ExportMainDialog git-svn-id: svn://localhost/ardour2/branches/3.0@3762 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/export_handler.cc')
-rw-r--r--libs/ardour/export_handler.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 9173449bec..fd76b2e9e0 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -44,18 +44,12 @@ namespace ARDOUR
ExportElementFactory::ExportElementFactory (Session & session) :
session (session)
{
- XMLProperty * prop;
- XMLNode * instant_node = ARDOUR::Config->instant_xml ("ExportFormatSpecification");
- if (instant_node && (prop = instant_node->property ("id-counter"))) {
- ExportFormatSpecification::init_counter (atoi (prop->value()));
- }
+
}
ExportElementFactory::~ExportElementFactory ()
{
- XMLNode * instant_node = new XMLNode ("ExportFormatSpecification");
- instant_node->add_property ("id-counter", to_string (ExportFormatSpecification::counter(), std::dec));
- ARDOUR::Config->add_instant_xml (*instant_node);
+
}
ExportElementFactory::TimespanPtr