summaryrefslogtreecommitdiffstats
path: root/src/printsupport/dialogs
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-05-31 17:13:55 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-05-31 21:35:01 +0000
commitdc2476c75e749d1c04f2b12d54f408afa201ae37 (patch)
treeac665b189ef94c563c3b16d297ba22cc85f5e1d9 /src/printsupport/dialogs
parent6c3603f2ad2fbc3c047925568450ae10427c2e63 (diff)
Fix clang develop build
A mismatch of enums after a rename. Change-Id: Ib28e4607f20583afcb9210fdef7f52d95c63e3dd Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> Reviewed-by: Andy Shaw <andy.shaw@qt.io>
Diffstat (limited to 'src/printsupport/dialogs')
-rw-r--r--src/printsupport/dialogs/qprintdialog_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printsupport/dialogs/qprintdialog_unix.cpp b/src/printsupport/dialogs/qprintdialog_unix.cpp
index 9e89277c43..5390a8b2f2 100644
--- a/src/printsupport/dialogs/qprintdialog_unix.cpp
+++ b/src/printsupport/dialogs/qprintdialog_unix.cpp
@@ -711,7 +711,7 @@ void QPrintDialogPrivate::selectPrinter(const QPrinter::OutputFormat outputForma
case QPrint::DuplexNone:
options.noDuplex->setChecked(true); break;
case QPrint::DuplexLongSide:
- case QPrinter::DuplexAuto:
+ case QPrint::DuplexAuto:
options.duplexLong->setChecked(true); break;
case QPrint::DuplexShortSide:
options.duplexShort->setChecked(true); break;