summaryrefslogtreecommitdiff
path: root/vcl/quartz/salgdicommon.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-10 09:47:59 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-10 12:05:34 +0000
commit961b715d9d28e50608ab487624ded5231ca7bb78 (patch)
treef8696f1d8966df667d4532c1c71e9ee1397f4423 /vcl/quartz/salgdicommon.cxx
parentaa544a002e534a313ad9dd365e80f052789d9963 (diff)
convert SAL_ROP to scoped enum
Change-Id: I2c49ec843c0f95e8246cdf9d3185c11e81a3bde3 Reviewed-on: https://gerrit.libreoffice.org/24824 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/quartz/salgdicommon.cxx')
-rw-r--r--vcl/quartz/salgdicommon.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx
index e493be1a75fe..3efe620c5f8d 100644
--- a/vcl/quartz/salgdicommon.cxx
+++ b/vcl/quartz/salgdicommon.cxx
@@ -498,7 +498,7 @@ static void getBoundRect( sal_uInt32 nPoints, const SalPoint *pPtAry,
static SalColor ImplGetROPSalColor( SalROPColor nROPColor )
{
SalColor nSalColor;
- if ( nROPColor == SAL_ROP_0 )
+ if ( nROPColor == SalROPColor::N0 )
{
nSalColor = MAKE_SALCOLOR( 0, 0, 0 );
}