remove operator= from GUIObjectState since its no longer required (the default will...
[ardour.git] / gtk2_ardour / gui_object.h
index 694a5e9212cdb7d4b99b5d4e100751d757085afa..dd56f4b34ca44ff8229aa478498d79ff41f9d8f8 100644 (file)
@@ -34,15 +34,13 @@ class GUIObjectState
 {
 public:
        GUIObjectState ();
-       
+
        XMLNode& get_state () const;
        int set_state (const XMLNode&);
 
        static const std::string xml_node_name;
        void load (const XMLNode&);
 
-       GUIObjectState& operator= (const GUIObjectState& other);
-
        std::string get_string (const std::string& id, const std::string& prop_name, bool* empty = 0);
 
        template<typename T> void set (const std::string& id, const std::string& prop_name, const T& val) {
@@ -59,7 +57,6 @@ public:
        static XMLNode* get_or_add_node (XMLNode *, const std::string &);
        
   private:
-       
        XMLNode _state;
 };