Code

Refactoring SPColor to C++ and removing legacy CMYK implementation
[inkscape.git] / src / gradient-chemistry.cpp
index 0690ef140c480efe083600cad8c5f71b2cbc8b76..d3b8f79114cd44ba3ddc9c3def17b4a8a6dda6d0 100644 (file)
@@ -1230,7 +1230,7 @@ sp_gradient_vector_for_object(SPDocument *const doc, SPDesktop *const desktop,
                 rgba = sp_desktop_get_color(desktop, is_fill);
             }
         } else if (paint.isColor()) {
-            rgba = sp_color_get_rgba32_ualpha(&paint.value.color, 0xff);
+            rgba = paint.value.color.toRGBA32( 0xff );
         } else {
             // if o doesn't use flat color, then take current color of the desktop.
             rgba = sp_desktop_get_color(desktop, is_fill);