summaryrefslogtreecommitdiffstats
path: root/src/printsupport/dialogs/qprintdialog_unix.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <[email protected]>2018-05-31 17:13:55 +0200
committerAllan Sandfeld Jensen <[email protected]>2018-05-31 21:35:01 +0000
commitdc2476c75e749d1c04f2b12d54f408afa201ae37 (patch)
treeac665b189ef94c563c3b16d297ba22cc85f5e1d9 /src/printsupport/dialogs/qprintdialog_unix.cpp
parent6c3603f2ad2fbc3c047925568450ae10427c2e63 (diff)
Fix clang develop build
A mismatch of enums after a rename. Change-Id: Ib28e4607f20583afcb9210fdef7f52d95c63e3dd Reviewed-by: Michael Weghorn <[email protected]> Reviewed-by: Andy Shaw <[email protected]>
Diffstat (limited to 'src/printsupport/dialogs/qprintdialog_unix.cpp')
-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 9e89277c43e..5390a8b2f23 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;