X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fcolor.cpp;h=3305eb45f517f1b1ee4a61d74603ab2440551e9c;hb=b2c243deddefa52cd7e5ee9a50d2d2464bcef4ad;hp=d70ed3f752b1020d87ec7f726a48df31de959360;hpb=07da59469b799f82e19a99fc4b612d8240d70406;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/color.cpp b/synfig-core/trunk/src/synfig/color.cpp index d70ed3f..3305eb4 100644 --- a/synfig-core/trunk/src/synfig/color.cpp +++ b/synfig-core/trunk/src/synfig/color.cpp @@ -47,8 +47,6 @@ using namespace std; /* === G L O B A L S ======================================================= */ -String Color::hex_; - /* === P R O C E D U R E S ================================================= */ /* === M E T H O D S ======================================================= */ @@ -376,7 +374,7 @@ blendfunc_DIVIDE(Color &a,Color &b,float amount) // We add COLOR_EPSILON in order to avoid a divide-by-zero condition. // This causes DIVIDE to bias toward positive values, but the effect is - // really neglegable. There is a reason why we use COLOR_EPSILON--we + // really negligible. There is a reason why we use COLOR_EPSILON--we // want the change to be imperceptable. b.set_r(((b.get_r()/(a.get_r()+COLOR_EPSILON))-b.get_r())*(amount)+b.get_r());