diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-28 19:14:17 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-28 20:13:55 +1000 |
commit | c91554fbca5b2e7977a8ae12e64725f31eca87d1 (patch) | |
tree | e7bef032cb92af03330ef744ba8f63a2fe1ec334 /vcl/source/outdev/outdev.cxx | |
parent | dea3ab9db68502b4f8306eb79c944ab87660888e (diff) |
VCL: Move InitFillColor from outdev.cxx to outdevstate.cxx
Change-Id: Ia6752c8ab95fc5dc9846c939d1f8767f17f6ced6
Diffstat (limited to 'vcl/source/outdev/outdev.cxx')
-rw-r--r-- | vcl/source/outdev/outdev.cxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx index ecf8cd4a5a5c..92fe33d96356 100644 --- a/vcl/source/outdev/outdev.cxx +++ b/vcl/source/outdev/outdev.cxx @@ -938,27 +938,6 @@ void OutputDevice::ImplGetFrameDev( const Point& rPt, const Point& rDevPt, const } -void OutputDevice::InitFillColor() -{ - DBG_TESTSOLARMUTEX(); - - if( mbFillColor ) - { - if( ROP_0 == meRasterOp ) - mpGraphics->SetROPFillColor( SAL_ROP_0 ); - else if( ROP_1 == meRasterOp ) - mpGraphics->SetROPFillColor( SAL_ROP_1 ); - else if( ROP_INVERT == meRasterOp ) - mpGraphics->SetROPFillColor( SAL_ROP_INVERT ); - else - mpGraphics->SetFillColor( ImplColorToSal( maFillColor ) ); - } - else - mpGraphics->SetFillColor(); - - mbInitFillColor = false; -} - void OutputDevice::SetDrawMode( sal_uLong nDrawMode ) { |