diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/dbgui/csvcontrol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/dbgui/csvcontrol.cxx b/sc/source/ui/dbgui/csvcontrol.cxx index c7be42b01b88..b868b580425f 100644 --- a/sc/source/ui/dbgui/csvcontrol.cxx +++ b/sc/source/ui/dbgui/csvcontrol.cxx @@ -260,7 +260,7 @@ void ScCsvControl::ImplInvertRect( OutputDevice& rOutDev, const Rectangle& rRect rOutDev.Push( PushFlags::LINECOLOR | PushFlags::FILLCOLOR | PushFlags::RASTEROP ); rOutDev.SetLineColor( Color( COL_BLACK ) ); rOutDev.SetFillColor( Color( COL_BLACK ) ); - rOutDev.SetRasterOp( ROP_INVERT ); + rOutDev.SetRasterOp( RasterOp::Invert ); rOutDev.DrawRect( rRect ); rOutDev.Pop(); } |