fixed bug in clutter_color_darken/lighten()
authorTomas Frydrych <tf@openedhand.com>
Thu, 18 Jan 2007 07:21:41 +0000 (07:21 +0000)
committerTomas Frydrych <tf@openedhand.com>
Thu, 18 Jan 2007 07:21:41 +0000 (07:21 +0000)
ChangeLog
clutter/clutter-color.c

index 787f370..5395dea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-18  Tomas Frydrych  <tf@openedhand.com>
+       * clutter/clutter-color.c:
+       (clutter_color_darken):
+       (clutter_color_lighten):
+       Changed calls to clutter_color_shade calls to clutter_color_shadex
+       
 2007-01-17  Matthew Allum  <mallum@openedhand.com>
 
        * configure.ac:
index c29a542..af81fc8 100644 (file)
@@ -108,7 +108,7 @@ clutter_color_lighten (const ClutterColor *src,
                       ClutterColor       *dest)
 {
   /* 0x14ccd is ClutterFixed for 1.3 */
-  clutter_color_shade (src, dest, 0x14ccd);
+  clutter_color_shadex (src, dest, 0x14ccd);
 }
 
 /**
@@ -124,7 +124,7 @@ clutter_color_darken (const ClutterColor *src,
                      ClutterColor       *dest)
 {
   /* 0xb333 is ClutterFixed for 0.7 */
-  clutter_color_shade (src, dest, 0xb333);
+  clutter_color_shadex (src, dest, 0xb333);
 }
 
 /**