summaryrefslogtreecommitdiff
path: root/vcl/headless
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-01 14:18:39 +0200
committerNoel Grandin <noel@peralex.com>2016-09-05 08:21:46 +0200
commit4442d226438c1f558021b2df9fe6e540e72cbc7e (patch)
treed505be371a0b5a87b692c98cb6d871f7944a8ab2 /vcl/headless
parent619d5fceada2df7c7bc915cea51779fd115d0fcd (diff)
convert OutDevSupportType to scoped enum
Change-Id: I7a1e4448dfff0ea6909149533d228829d980796c
Diffstat (limited to 'vcl/headless')
-rw-r--r--vcl/headless/svpgdi.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index e3218f649606..f26a8d6733ea 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -1400,8 +1400,8 @@ bool SvpSalGraphics::supportsOperation(OutDevSupportType eType) const
{
switch (eType)
{
- case OutDevSupport_TransparentRect:
- case OutDevSupport_B2DDraw:
+ case OutDevSupportType::TransparentRect:
+ case OutDevSupportType::B2DDraw:
return true;
}
return false;