Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / gamma.cpp
index 1c8f523..f1d1add 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file gamma.cpp
 **     \brief Template File
 **
-**     $Id: gamma.cpp,v 1.1.1.1 2005/01/04 01:23:14 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -152,7 +152,7 @@ Gamma::set_black_level(float x)
        if(x==black_level) return;
 
        black_level=x;
-       
+
        // Rebuild tables
        refresh_gamma_r();
        refresh_gamma_g();
@@ -166,7 +166,7 @@ Gamma::set_red_blue_level(float x)
        if(x==red_blue_level) return;
 
        red_blue_level=x;
-       
+
        // Rebuild tables
        refresh_gamma_r();
        refresh_gamma_g();
@@ -179,7 +179,7 @@ Gamma::set_all(float r, float g, float b, float black, float red_blue)
        // If nothing has changed, then don't recompute the tables
        if(gamma_r==r && gamma_g==g && gamma_b==b && black_level==black && red_blue_level==red_blue)
                return;
-       
+
        gamma_r=r;
        gamma_g=g;
        gamma_b=b;