NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / surfaces / mackie / fader.h
index e83e657e68c3c7979e466160913a8f079deda1ea..dae022c690eec428b7b69e3977366200f2b0f135 100644 (file)
@@ -10,7 +10,7 @@ namespace Mackie {
 class Fader : public Control
 {
   public:
-       
+
        Fader (int id, std::string name, Group & group)
                : Control (id, name, group)
                , position (0.0)
@@ -20,11 +20,11 @@ class Fader : public Control
 
        MidiByteArray set_position (float);
        MidiByteArray zero() { return set_position (0.0); }
-       
+
        MidiByteArray update_message ();
 
        static Control* factory (Surface&, int id, const char*, Group&);
-       
+
   private:
        float position;
        int   last_update_position;