Fix some mangled whitespace (noop).
[ardour.git] / libs / ardour / ardour / scene_change.h
index 4ad0ce5f398a0b765dd20c3d384177fdb9421d98..ee711985b5500bf2bad910004b4f53980d20376e 100644 (file)
@@ -30,22 +30,22 @@ namespace ARDOUR
 class SceneChange : public PBD::Stateful
 {
   public:
-        SceneChange ();
-        virtual ~SceneChange () {};
+       SceneChange ();
+       virtual ~SceneChange () {};
 
        static boost::shared_ptr<SceneChange> factory (const XMLNode&, int version);
        static std::string xml_node_name;
 
-        uint32_t color() const;
-        void set_color (uint32_t);
-        bool color_out_of_bounds() const { return _color == out_of_bound_color; }
-        static const uint32_t out_of_bound_color;
+       uint32_t color() const;
+       void set_color (uint32_t);
+       bool color_out_of_bounds() const { return _color == out_of_bound_color; }
+       static const uint32_t out_of_bound_color;
         
-        PBD::Signal0<void> ColorChanged;
+       PBD::Signal0<void> ColorChanged;
 
-    protected:
-        /* derived classes are responsible for serializing & deserializing this value */
-        uint32_t _color;
+protected:
+       /* derived classes are responsible for serializing & deserializing this value */
+       uint32_t _color;
 
 };