NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / surfaces / mackie / control_group.h
index 4955098225f58b2f6ec9f08d97409d2e0e116fa3..e79a60f42f455473a8db2936abbd35789407e845 100644 (file)
@@ -19,21 +19,21 @@ public:
                : _name (name) {}
 
        virtual ~Group() {}
-       
+
        virtual bool is_strip() const { return false; }
        virtual bool is_master() const { return false; }
-       
+
        virtual void add (Control & control);
-       
+
        const std::string & name() const { return _name; }
        void set_name (const std::string & rhs) { _name = rhs; }
-       
+
        typedef std::vector<Control*> Controls;
        const Controls & controls() const { return _controls; }
-       
+
 protected:
        Controls _controls;
-       
+
 private:
        std::string _name;
 };