summaryrefslogtreecommitdiffstats
path: root/tests/auto/qtransform
diff options
context:
space:
mode:
authorSamuel Rødal <sroedal@trolltech.com>2010-03-11 15:21:43 +0100
committerSamuel Rødal <sroedal@trolltech.com>2010-03-11 18:14:19 +0100
commit4fc638c0b4562f4b1e9c9a367535e4b570602942 (patch)
tree4ec5b4b31db69397be8ea3c0ea4cce382d7d809b /tests/auto/qtransform
parent65f5cecdd0343d816d9abb8342bd8b2faecdf3b8 (diff)
Fixed bug in QTransform::type() after using operator/ or operator*.
The m_dirty variable is not a bit flag any more. This caused the switch in QTransform::type() to not match any of the transformation types, and m_type was left at TxNone. Task-number: QTBUG-8557 Reviewed-by: Gunnar Sletta
Diffstat (limited to 'tests/auto/qtransform')
-rw-r--r--tests/auto/qtransform/tst_qtransform.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/qtransform/tst_qtransform.cpp b/tests/auto/qtransform/tst_qtransform.cpp
index 827a4865c2..a3ded8eda5 100644
--- a/tests/auto/qtransform/tst_qtransform.cpp
+++ b/tests/auto/qtransform/tst_qtransform.cpp
@@ -610,6 +610,11 @@ void tst_QTransform::types()
m4.rotate(45);
QCOMPARE(m4.type(), QTransform::TxRotate);
+
+ QTransform m5;
+ m5.scale(5, 5);
+ m5 = m5.adjoint() / m5.determinant();
+ QCOMPARE(m5.type(), QTransform::TxScale);
}