mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
NO-OP: whitespace
This commit is contained in:
parent
d67436af3b
commit
628e60f8fd
3 changed files with 7 additions and 7 deletions
|
|
@ -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
|
/* new routes start off unsoloed to avoid issues related to
|
||||||
upstream / downstream buses. */
|
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));
|
boost::shared_ptr<Route> route (XMLRouteFactory (node_copy, 3000));
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -179,13 +179,13 @@ public:
|
||||||
void remove_property_recursively(const std::string&);
|
void remove_property_recursively(const std::string&);
|
||||||
|
|
||||||
/** Remove all nodes with the name passed to remove_nodes */
|
/** 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 */
|
/** 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 */
|
/** Remove and delete all nodes with property prop matching val */
|
||||||
void remove_nodes_and_delete(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 */
|
/** 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_node_and_delete (const std::string& n, const std::string& propname, const std::string& val);
|
||||||
|
|
||||||
void dump (std::ostream &, std::string p = "") const;
|
void dump (std::ostream &, std::string p = "") const;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -667,7 +667,7 @@ XMLNode::remove_node_and_delete(const string& n, const string& propname,
|
||||||
XMLProperty const * prop = (*i)->property (propname);
|
XMLProperty const * prop = (*i)->property (propname);
|
||||||
if (prop && prop->value() == val) {
|
if (prop && prop->value() == val) {
|
||||||
delete *i;
|
delete *i;
|
||||||
_children.erase(i);
|
_children.erase (i);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue