diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-21 11:06:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-21 11:42:53 +0000 |
commit | d235f643680084fd54e0b2dc95605e8781ac6b88 (patch) | |
tree | db45fa4b6086e6420b085400fd1b1fed4f00284a /include | |
parent | 584c745ea484e1f8047278fc83b41b30a90f884d (diff) |
convert OutDevViewType to scoped enum
Change-Id: Id980f09c198ca976c88b11030f5db9d6f010add1
Reviewed-on: https://gerrit.libreoffice.org/32274
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/outdev.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 0766de48f705..0baaaf332481 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -295,7 +295,7 @@ namespace o3tl enum OutDevType { OUTDEV_DONTKNOW, OUTDEV_WINDOW, OUTDEV_PRINTER, OUTDEV_VIRDEV }; -enum OutDevViewType { OUTDEV_VIEWTYPE_DONTKNOW, OUTDEV_VIEWTYPE_PRINTPREVIEW, OUTDEV_VIEWTYPE_SLIDESHOW }; +enum class OutDevViewType { DontKnow, PrintPreview, SlideShow }; // OutputDevice @@ -626,7 +626,7 @@ public: /** If this OutputDevice is used for displaying a Print Preview - the OutDevViewType should be set to 'OUTDEV_VIEWTYPE_PRINTPREVIEW'. + the OutDevViewType should be set to 'OutDevViewType::PrintPreview'. A View can then make painting decisions dependent on this OutDevViewType. E.g. text colors need to be handled differently, dependent on whether it's a PrintPreview or not. (see #106611# for more) |