summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-05-29 23:45:16 +0200
committerRobin Gareus <robin@gareus.org>2017-05-29 23:45:16 +0200
commit628e60f8fda6be4ce5790a3a226531b164c61e68 (patch)
tree75d2d8c8d569ec10a71e9df34a5722b45e001535
parentd67436af3bf6d1f71ae062d4a50054d847bfb18b (diff)
NO-OP: whitespace
-rw-r--r--libs/ardour/session.cc2
-rw-r--r--libs/pbd/pbd/xml++.h10
-rw-r--r--libs/pbd/xml++.cc2
3 files changed, 7 insertions, 7 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index 4d046b3436..e5d73d642d 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -3403,7 +3403,7 @@ Session::new_route_from_template (uint32_t how_many, PresentationInfo::order_t i
/* new routes start off unsoloed to avoid issues related to
upstream / downstream buses. */
- node_copy.remove_node_and_delete(X_("Controllable"), X_("name"), X_("solo"));
+ node_copy.remove_node_and_delete (X_("Controllable"), X_("name"), X_("solo"));
boost::shared_ptr<Route> route (XMLRouteFactory (node_copy, 3000));
diff --git a/libs/pbd/pbd/xml++.h b/libs/pbd/pbd/xml++.h
index 6c099dc0c3..4b012c910e 100644
--- a/libs/pbd/pbd/xml++.h
+++ b/libs/pbd/pbd/xml++.h
@@ -179,13 +179,13 @@ public:
void remove_property_recursively(const std::string&);
/** Remove all nodes with the name passed to remove_nodes */
- void remove_nodes(const std::string&);
+ void remove_nodes (const std::string&);
/** Remove and delete all nodes with the name passed to remove_nodes */
- void remove_nodes_and_delete(const std::string&);
+ void remove_nodes_and_delete (const std::string&);
/** Remove and delete all nodes with property prop matching val */
- void remove_nodes_and_delete(const std::string& propname, const std::string& val);
- /** Remove and delete first node with given name and prop matching val */
- void remove_node_and_delete(const std::string& n, const std::string& propname, const std::string& val);
+ void remove_nodes_and_delete (const std::string& propname, const std::string& val);
+ /** Remove and delete first node with given name and prop matching val */
+ void remove_node_and_delete (const std::string& n, const std::string& propname, const std::string& val);
void dump (std::ostream &, std::string p = "") const;
diff --git a/libs/pbd/xml++.cc b/libs/pbd/xml++.cc
index d5d863e9e5..23ecfabc91 100644
--- a/libs/pbd/xml++.cc
+++ b/libs/pbd/xml++.cc
@@ -667,7 +667,7 @@ XMLNode::remove_node_and_delete(const string& n, const string& propname,
XMLProperty const * prop = (*i)->property (propname);
if (prop && prop->value() == val) {
delete *i;
- _children.erase(i);
+ _children.erase (i);
break;
}
}