summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@digia.com>2011-09-11 12:03:58 +0200
committerQt Commercial Integration <QtCommercial@digia.com>2012-01-31 12:25:10 +0200
commit3d3576eadd1bc84d67890a288eb46111ce67433c (patch)
tree68e65a69d0912fab95e0a5203b1886d0c186672f /tests
parent17332a87f61171ed1bfda16f4adf535956471520 (diff)
Fix set/paperSize(QPrinter::PaperSize) on Mac
This fixes the paper size setting on Mac as it would not return the same paper size that was set with setPaperSize() when calling paperSize(). Test is included. Task-number: QTBUG-20882
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qprinter/tst_qprinter.cpp25
1 files changed, 16 insertions, 9 deletions
diff --git a/tests/auto/qprinter/tst_qprinter.cpp b/tests/auto/qprinter/tst_qprinter.cpp
index 2cda5f0d51..67f2c4d877 100644
--- a/tests/auto/qprinter/tst_qprinter.cpp
+++ b/tests/auto/qprinter/tst_qprinter.cpp
@@ -577,15 +577,22 @@ void tst_QPrinter::outputFormatFromSuffix()
void tst_QPrinter::setGetPaperSize()
{
- QPrinter p;
- p.setOutputFormat(QPrinter::PdfFormat);
- QSizeF size(500, 10);
- p.setPaperSize(size, QPrinter::Millimeter);
- QCOMPARE(p.paperSize(QPrinter::Millimeter), size);
- QSizeF ptSize = p.paperSize(QPrinter::Point);
- //qDebug() << ptSize;
- QVERIFY(qAbs(ptSize.width() - size.width() * (72/25.4)) < 1E-4);
- QVERIFY(qAbs(ptSize.height() - size.height() * (72/25.4)) < 1E-4);
+ {
+ QPrinter p;
+ p.setOutputFormat(QPrinter::PdfFormat);
+ QSizeF size(500, 10);
+ p.setPaperSize(size, QPrinter::Millimeter);
+ QCOMPARE(p.paperSize(QPrinter::Millimeter), size);
+ QSizeF ptSize = p.paperSize(QPrinter::Point);
+ //qDebug() << ptSize;
+ QVERIFY(qAbs(ptSize.width() - size.width() * (72/25.4)) < 1E-4);
+ QVERIFY(qAbs(ptSize.height() - size.height() * (72/25.4)) < 1E-4);
+ }
+ {
+ QPrinter p;
+ p.setPaperSize(QPrinter::Legal);
+ QCOMPARE(p.paperSize(), QPrinter::Legal);
+ }
}
void tst_QPrinter::testPageMargins_data()