X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fcolor.h;h=62baa04fb77d33a2817ac72119fb7913719bef4c;hb=54d76cf22cb55862d5ebf52dfa098fcfe8d246f8;hp=d38964cec6b75b2207062d8ba5b5b1d41124fce0;hpb=b5318fd86e61cb9065346a5b959809636ffe5dce;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/color.h b/synfig-core/trunk/src/synfig/color.h index d38964c..62baa04 100644 --- a/synfig-core/trunk/src/synfig/color.h +++ b/synfig-core/trunk/src/synfig/color.h @@ -6,6 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -211,9 +212,9 @@ public: public: // ETL/trunk/ETL/_gaussian.h does: // SR1=SR2=SR3=typename T::value_type(); - // and expects that to give it initialised colors + // and expects that to give it initialized colors // Otherwise the 'gaussian' blur type is random. - Color() :r_(0), g_(0), b_(0), a_(0) { } + Color() :a_(0), r_(0), g_(0), b_(0) { } Color(const value_type &f) :a_(f),r_(f), g_(f), b_(f) { } Color(int f) :a_(f),r_(f), g_(f), b_(f) { }