remove operator= from GUIObjectState since its no longer required (the default will...
[ardour.git] / gtk2_ardour / gui_object.cc
index 84c9fe7c673088e6a847c372c6756fa42d557c03..3e21f82fa424280bd76d56991081b0c5bc7453f3 100644 (file)
@@ -38,6 +38,7 @@ GUIObjectState::get_node (const XMLNode* parent, const string& id)
 {
        XMLNodeList const & children = parent->children ();
        for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
+
                if ((*i)->name() != X_("Object")) {
                        continue;
                }
@@ -81,6 +82,7 @@ string
 GUIObjectState::get_string (const string& id, const string& prop_name, bool* empty)
 {
        XMLNode* child = get_node (&_state, id);
+
        if (!child) {
                if (empty) {
                        *empty = true;
@@ -126,13 +128,6 @@ GUIObjectState::load (const XMLNode& node)
        (void) set_state (node);
 }
 
-GUIObjectState&
-GUIObjectState::operator= (const GUIObjectState& other)
-{
-       _state = other._state;
-       return *this;
-}
-
 std::list<string>
 GUIObjectState::all_ids () const
 {