diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-01 14:18:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-05 08:21:46 +0200 |
commit | 4442d226438c1f558021b2df9fe6e540e72cbc7e (patch) | |
tree | d505be371a0b5a87b692c98cb6d871f7944a8ab2 /vcl/quartz | |
parent | 619d5fceada2df7c7bc915cea51779fd115d0fcd (diff) |
convert OutDevSupportType to scoped enum
Change-Id: I7a1e4448dfff0ea6909149533d228829d980796c
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/salgdicommon.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 907bf087c1b1..aae7eff14868 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -1892,8 +1892,8 @@ bool AquaSalGraphics::supportsOperation( OutDevSupportType eType ) const bool bRet = false; switch( eType ) { - case OutDevSupport_TransparentRect: - case OutDevSupport_B2DDraw: + case OutDevSupportType::TransparentRect: + case OutDevSupportType::B2DDraw: bRet = true; break; default: |