summaryrefslogtreecommitdiffstats
path: root/src/printsupport/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'src/printsupport/kernel')
-rw-r--r--src/printsupport/kernel/qplatformprintdevice.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/printsupport/kernel/qplatformprintdevice.h b/src/printsupport/kernel/qplatformprintdevice.h
index 14701271c3..d95a5add9b 100644
--- a/src/printsupport/kernel/qplatformprintdevice.h
+++ b/src/printsupport/kernel/qplatformprintdevice.h
@@ -1,6 +1,7 @@
/****************************************************************************
**
** Copyright (C) 2014 John Layt <jlayt@kde.org>
+** Copyright (C) 2018 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtPrintSupport module of the Qt Toolkit.
@@ -151,16 +152,16 @@ protected:
bool m_isRemote;
- bool m_supportsMultipleCopies;
- bool m_supportsCollateCopies;
+ mutable bool m_supportsMultipleCopies;
+ mutable bool m_supportsCollateCopies;
mutable bool m_havePageSizes;
mutable QList<QPageSize> m_pageSizes;
- bool m_supportsCustomPageSizes;
+ mutable bool m_supportsCustomPageSizes;
- QSize m_minimumPhysicalPageSize;
- QSize m_maximumPhysicalPageSize;
+ mutable QSize m_minimumPhysicalPageSize;
+ mutable QSize m_maximumPhysicalPageSize;
mutable bool m_haveResolutions;
mutable QList<int> m_resolutions;