Use American spelling: 'color'.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 16:14:49 +0000 (16:14 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 16:14:49 +0000 (16:14 +0000)
git-svn-id: http://svn.voria.com/code@1083 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp

index 537f1ec..87b59bb 100644 (file)
@@ -422,7 +422,7 @@ Rectangle::accelerated_render(Context context,Surface *surface,int quality, cons
                                surface->blit_to(subimage_pen,left,top,right-left,bottom-top);
                        }
 
-                       // fill surface with the rectangle's colour
+                       // fill surface with the rectangle's color
                        Surface::alpha_pen surface_pen(surface->begin(),get_amount(),get_blend_method());
                        surface->fill(color,surface_pen,w,h);
 
@@ -491,7 +491,7 @@ Rectangle::accelerated_render(Context context,Surface *surface,int quality, cons
 */
 
        // optimisation - if the whole tile is covered by this rectangle,
-       // and the rectangle is a solid colour, we don't need to render
+       // and the rectangle is a solid color, we don't need to render
        // what's behind us
        if (is_solid_color() && top == 0 && left == 0 && bottom == h && right == w)
        {