From: dooglus Date: Wed, 26 Sep 2007 22:39:45 +0000 (+0000) Subject: Reorder the members to avoid warnings. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=b56d24128559f35ad8f5ef59476b9292d50dc8e6;p=synfig.git Reorder the members to avoid warnings. git-svn-id: http://svn.voria.com/code@769 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/color.h b/synfig-core/trunk/src/synfig/color.h index d38964c..0d460b1 100644 --- a/synfig-core/trunk/src/synfig/color.h +++ b/synfig-core/trunk/src/synfig/color.h @@ -213,7 +213,7 @@ public: // SR1=SR2=SR3=typename T::value_type(); // and expects that to give it initialised 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) { }