13
0

NO-OP: whitespace

This commit is contained in:
Robin Gareus 2017-05-29 23:45:16 +02:00
parent d67436af3b
commit 628e60f8fd
3 changed files with 7 additions and 7 deletions

View File

@ -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));

View File

@ -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;

View File

@ -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;
}
}