Write "operator()" instead of "operator ()", "operator&" instead of "operator &"...
[synfig.git] / synfig-studio / trunk / src / synfigapp / blineconvert.h
index f3fd890..74c98d4 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file blineconvert.h
 **     \brief Template Header
 **
-**     $Id: blineconvert.h,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -57,7 +57,7 @@ public:
                :curind(o.curind), tangentscale(o.tangentscale), error(o.error)
                {}
 
-               const cpindex & operator = (const cpindex & rhs)
+               const cpindex & operator=(const cpindex & rhs)
                {
                        curind = rhs.curind;
                        tangentscale = rhs.tangentscale;
@@ -65,7 +65,7 @@ public:
                        return *this;
                }
 
-               bool operator < (const cpindex &rhs) const
+               bool operator<(const cpindex &rhs) const
                {
                        return curind < rhs.curind;
                }
@@ -106,7 +106,7 @@ public:
        BLineConverter();
 
        static void EnforceMinWidth(std::list<synfig::BLinePoint> &bline, synfig::Real min_pressure);
-       void operator ()(std::list<synfig::BLinePoint> &out, const std::list<synfig::Point> &in,const std::list<synfig::Real> &in_w);
+       void operator()(std::list<synfig::BLinePoint> &out, const std::list<synfig::Point> &in,const std::list<synfig::Real> &in_w);
 };
 
 }; // END of namespace synfigapp