Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / ardour / progress.h
index 6cd66bdcbe4606ff5c257d147bb8305178b4e38c..10b7d759600e1624aa9eb37e9bc01fd4bfbac8bf 100644 (file)
@@ -24,7 +24,7 @@
 
 namespace ARDOUR {
 
-/** A class to handle reporting of progress of something */    
+/** A class to handle reporting of progress of something */
 class Progress
 {
 public:
@@ -36,7 +36,7 @@ public:
        void descend (float);
 
        bool cancelled () const;
-       
+
 protected:
        void cancel ();
 
@@ -48,7 +48,7 @@ private:
 
        struct Level {
                Level (float a) : allocation (a), normalised (0) {}
-               
+
                float allocation;
                float normalised;
        };