diff options
Diffstat (limited to 'vcl/backendtest')
-rw-r--r-- | vcl/backendtest/outputdevice/common.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/backendtest/outputdevice/common.cxx b/vcl/backendtest/outputdevice/common.cxx index 256aede7e863..ac2646498642 100644 --- a/vcl/backendtest/outputdevice/common.cxx +++ b/vcl/backendtest/outputdevice/common.cxx @@ -35,19 +35,19 @@ void checkValue(Bitmap::ScopedWriteAccess& pAccess, int x, int y, Color aExpecte if (nColorDelta <= nColorDeltaThresh) { if (bColorize) - pAccess->SetPixel(y, x, Color(COL_LIGHTGREEN)); + pAccess->SetPixel(y, x, COL_LIGHTGREEN); } else if (bQuirkMode) { nNumberOfQuirks++; if (bColorize) - pAccess->SetPixel(y, x, Color(COL_YELLOW)); + pAccess->SetPixel(y, x, COL_YELLOW); } else { nNumberOfErrors++; if (bColorize) - pAccess->SetPixel(y, x, Color(COL_LIGHTRED)); + pAccess->SetPixel(y, x, COL_LIGHTRED); } } |