summaryrefslogtreecommitdiffstats
path: root/src/printsupport/kernel/qplatformprintdevice.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/printsupport/kernel/qplatformprintdevice.cpp')
-rw-r--r--src/printsupport/kernel/qplatformprintdevice.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/printsupport/kernel/qplatformprintdevice.cpp b/src/printsupport/kernel/qplatformprintdevice.cpp
index 8a39047bbf3..748ac50d865 100644
--- a/src/printsupport/kernel/qplatformprintdevice.cpp
+++ b/src/printsupport/kernel/qplatformprintdevice.cpp
@@ -259,9 +259,9 @@ QMarginsF QPlatformPrintDevice::printableMargins(const QPageSize &pageSize,
QPageLayout::Orientation orientation,
int resolution) const
{
- Q_UNUSED(pageSize)
- Q_UNUSED(orientation)
- Q_UNUSED(resolution)
+ Q_UNUSED(pageSize);
+ Q_UNUSED(orientation);
+ Q_UNUSED(resolution);
return QMarginsF(0, 0, 0, 0);
}
@@ -361,23 +361,23 @@ void QPlatformPrintDevice::loadMimeTypes() const
QVariant QPlatformPrintDevice::property(QPrintDevice::PrintDevicePropertyKey key) const
{
- Q_UNUSED(key)
+ Q_UNUSED(key);
return QVariant();
}
bool QPlatformPrintDevice::setProperty(QPrintDevice::PrintDevicePropertyKey key, const QVariant &value)
{
- Q_UNUSED(key)
- Q_UNUSED(value)
+ Q_UNUSED(key);
+ Q_UNUSED(value);
return false;
}
bool QPlatformPrintDevice::isFeatureAvailable(QPrintDevice::PrintDevicePropertyKey key, const QVariant &params) const
{
- Q_UNUSED(key)
- Q_UNUSED(params)
+ Q_UNUSED(key);
+ Q_UNUSED(params);
return false;
}