summaryrefslogtreecommitdiff
path: root/libs/ardour/export_preset.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /libs/ardour/export_preset.cc
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/export_preset.cc')
-rw-r--r--libs/ardour/export_preset.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/libs/ardour/export_preset.cc b/libs/ardour/export_preset.cc
index 093803daa6..92fcb9e5a7 100644
--- a/libs/ardour/export_preset.cc
+++ b/libs/ardour/export_preset.cc
@@ -37,7 +37,7 @@ ExportPreset::ExportPreset (string filename, Session & s) :
if ((prop = root->property ("name"))) {
set_name (prop->value());
}
-
+
XMLNode * instant_xml = get_instant_xml ();
if (instant_xml) {
XMLNode * instant_copy = new XMLNode (*instant_xml);
@@ -56,7 +56,7 @@ ExportPreset::set_name (string const & name)
{
_name = name;
- XMLNode * node;
+ XMLNode * node;
if ((node = global.root())) {
node->add_property ("name", name);
}
@@ -84,7 +84,7 @@ ExportPreset::set_global_state (XMLNode & state)
{
delete global.root ();
global.set_root (&state);
-
+
set_id (_id.to_s());
set_name (_name);
}
@@ -94,7 +94,7 @@ ExportPreset::set_local_state (XMLNode & state)
{
delete local;
local = &state;
-
+
set_id (_id.to_s());
set_name (_name);
}
@@ -119,7 +119,7 @@ XMLNode *
ExportPreset::get_instant_xml () const
{
XMLNode * instant_xml;
-
+
if ((instant_xml = session.instant_xml ("ExportPresets"))) {
XMLNodeList children = instant_xml->children ("ExportPreset");
for (XMLNodeList::iterator it = children.begin(); it != children.end(); ++it) {
@@ -129,7 +129,7 @@ ExportPreset::get_instant_xml () const
}
}
}
-
+
return 0;
}
@@ -139,9 +139,9 @@ ExportPreset::save_instant_xml () const
if (!local) { return; }
/* First remove old, then add new */
-
+
remove_instant_xml ();
-
+
XMLNode * instant_xml;
if ((instant_xml = session.instant_xml ("ExportPresets"))) {
instant_xml->add_child_copy (*local);