summaryrefslogtreecommitdiff
path: root/vcl/workben/outdevgrind.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/workben/outdevgrind.cxx')
-rw-r--r--vcl/workben/outdevgrind.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/vcl/workben/outdevgrind.cxx b/vcl/workben/outdevgrind.cxx
index 277a370486a8..341b509905ba 100644
--- a/vcl/workben/outdevgrind.cxx
+++ b/vcl/workben/outdevgrind.cxx
@@ -151,7 +151,7 @@ void setupMethodStubs( functor_vector_type& res )
const Wallpaper aWallpaper( aWhiteColor );
GDIMetaFile aMtf;
- aMtf.AddAction( new MetaFillColorAction(Color(COL_RED),true) );
+ aMtf.AddAction( new MetaFillColorAction(COL_RED,true) );
aMtf.AddAction( new MetaRectAction(aRect) );
#ifdef FIXME_NEEDS_LOVE
@@ -630,38 +630,38 @@ void outDevGrind(vcl::RenderContext& rTarget)
const functor_vector_type::const_iterator end = aMethods.end();
while( iter != end )
{
- rTarget.SetLineColor( Color(COL_BLACK) );
- rTarget.SetFillColor( Color(COL_GREEN) );
+ rTarget.SetLineColor( COL_BLACK );
+ rTarget.SetFillColor( COL_GREEN );
rTarget.SetRasterOp( RasterOp::OverPaint );
rTarget.SetClipRegion();
grindFunc( rTarget, iter, nTurns, "w/o clip, w/o xor" );
- rTarget.SetLineColor( Color(COL_BLACK) );
- rTarget.SetFillColor( Color(COL_GREEN) );
+ rTarget.SetLineColor( COL_BLACK );
+ rTarget.SetFillColor( COL_GREEN );
rTarget.SetRasterOp( RasterOp::OverPaint );
rTarget.SetClipRegion( vcl::Region( aClipRect ) );
grindFunc( rTarget, iter, nTurns, "with rect clip, w/o xor" );
- rTarget.SetLineColor( Color(COL_BLACK) );
- rTarget.SetFillColor( Color(COL_GREEN) );
+ rTarget.SetLineColor( COL_BLACK );
+ rTarget.SetFillColor( COL_GREEN );
rTarget.SetRasterOp( RasterOp::OverPaint );
rTarget.SetClipRegion( vcl::Region( aClipPoly ) );
grindFunc( rTarget, iter, nTurns, "with complex clip, w/o xor" );
- rTarget.SetLineColor( Color(COL_BLACK) );
- rTarget.SetFillColor( Color(COL_GREEN) );
+ rTarget.SetLineColor( COL_BLACK );
+ rTarget.SetFillColor( COL_GREEN );
rTarget.SetRasterOp( RasterOp::Xor );
rTarget.SetClipRegion();
grindFunc( rTarget, iter, nTurns, "w/o clip, with xor" );
- rTarget.SetLineColor( Color(COL_BLACK) );
- rTarget.SetFillColor( Color(COL_GREEN) );
+ rTarget.SetLineColor( COL_BLACK );
+ rTarget.SetFillColor( COL_GREEN );
rTarget.SetRasterOp( RasterOp::Xor );
rTarget.SetClipRegion( vcl::Region( aClipRect ) );
grindFunc( rTarget, iter, nTurns, "with rect clip, with xor" );
- rTarget.SetLineColor( Color(COL_BLACK) );
- rTarget.SetFillColor( Color(COL_GREEN) );
+ rTarget.SetLineColor( COL_BLACK );
+ rTarget.SetFillColor( COL_GREEN );
rTarget.SetRasterOp( RasterOp::Xor );
rTarget.SetClipRegion( vcl::Region( aClipPoly ) );
grindFunc( rTarget, iter, nTurns, "with complex clip, with xor" );