NO-OP: whitespace
authorRobin Gareus <robin@gareus.org>
Mon, 29 May 2017 21:45:16 +0000 (23:45 +0200)
committerRobin Gareus <robin@gareus.org>
Mon, 29 May 2017 21:45:16 +0000 (23:45 +0200)
libs/ardour/session.cc
libs/pbd/pbd/xml++.h
libs/pbd/xml++.cc

index 4d046b34367f9c4bf8f3b0578eb7b45e4fdef765..e5d73d642dfe388840cac8c4a0c516eeec070b52 100644 (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));
 
index 6c099dc0c39588534a33067b154ae5612145a13f..4b012c910e6d5b8fdc064cc5b899f46aee0531b4 100644 (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;
 
index d5d863e9e588e2fe814b4fe5cf75f47c70cbdc62..23ecfabc9146e7e8a87d76159d582f55af85e65b 100644 (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;
                        }
                }