use home-grown solution for path_expand(), rather than wordexp() which is broken...
[ardour.git] / gtk2_ardour / fft_result.h
index 2042b2d0429ae25bb946a20b7228f9b6c84bfc73..2873138dfd93a09a8a1c015f9a3eeceaaf6cd3a5 100644 (file)
@@ -33,7 +33,7 @@ class FFTGraph;
 class FFTResult
 {
        public:
-               
+
                ~FFTResult();
 
                void analyzeWindow(float *window);
@@ -44,15 +44,15 @@ class FFTResult
                float avgAt(int x);
                float maxAt(int x);
                float minAt(int x);
-               
+
                float minimum() const { return _minimum; }
                float maximum() const { return _maximum; }
-               
+
                Gdk::Color get_color() const { return _color; }
-               
+
        private:
                FFTResult(FFTGraph *graph, Gdk::Color color, std::string trackname);
-               
+
                int     _averages;
 
                float*  _data_avg;
@@ -68,10 +68,10 @@ class FFTResult
                float   _maximum;
 
                FFTGraph *_graph;
-               
+
                Gdk::Color _color;
                std::string _trackname;
-               
+
        friend class FFTGraph;
 };