summaryrefslogtreecommitdiff
path: root/include/vcl/prntypes.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-05 09:36:04 +0200
committerNoel Grandin <noel@peralex.com>2016-09-05 10:38:51 +0200
commit3dfbf76e587b7ed7ee40ef2b4c4ef4805df22900 (patch)
tree27fc2ac80b24c55765c9960038dce6267d487248 /include/vcl/prntypes.hxx
parent2c39312bae5973eeac408cb5a615db946c01517d (diff)
convert DuplexMode to scoped enum
Change-Id: Ic6f6e11437e75d17630683196c1b94dc25dd888f
Diffstat (limited to 'include/vcl/prntypes.hxx')
-rw-r--r--include/vcl/prntypes.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vcl/prntypes.hxx b/include/vcl/prntypes.hxx
index 169271ecc63e..f39544bab8de 100644
--- a/include/vcl/prntypes.hxx
+++ b/include/vcl/prntypes.hxx
@@ -25,7 +25,8 @@
#include <o3tl/typed_flags_set.hxx>
-enum DuplexMode { DUPLEX_UNKNOWN, DUPLEX_OFF, DUPLEX_LONGEDGE, DUPLEX_SHORTEDGE };
+// aapears to be a copy of css::view::DuplexMode
+enum class DuplexMode { Unknown, Off, LongEdge, ShortEdge };
enum class Orientation { Portrait, Landscape };