From a881fd7e66294ada222e1d618a7d47a0549a2342 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 1 Sep 2016 15:48:15 +0200 Subject: convert RasterOp to scoped enum Change-Id: I136423c105316c9b5b18e64d04a248fd7ac5590b --- sc/source/ui/dbgui/csvcontrol.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/source/ui') 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(); } -- cgit