summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/gui/painting/qwmatrix/tst_qwmatrix.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/auto/gui/painting/qwmatrix/tst_qwmatrix.cpp b/tests/auto/gui/painting/qwmatrix/tst_qwmatrix.cpp
index 0e7372d9d8..06abc5a68c 100644
--- a/tests/auto/gui/painting/qwmatrix/tst_qwmatrix.cpp
+++ b/tests/auto/gui/painting/qwmatrix/tst_qwmatrix.cpp
@@ -64,10 +64,8 @@ public slots:
void cleanup();
private slots:
void mapRect_data();
- void operator_star_qrect_data();
void mapToPolygon_data();
void mapRect();
- void operator_star_qrect();
void operator_star_qwmatrix();
void assignments();
void mapToPolygon();
@@ -105,11 +103,6 @@ void tst_QWMatrix::mapRect_data()
mapping_data();
}
-void tst_QWMatrix::operator_star_qrect_data()
-{
- mapping_data();
-}
-
void tst_QWMatrix::mapToPolygon_data()
{
mapping_data();
@@ -307,20 +300,6 @@ void tst_QWMatrix::mapRect()
QTEST( QPolygon( matrix.mapRect(src) ), "res" );
}
-void tst_QWMatrix::operator_star_qrect()
-{
-#if 0 // QT_VERSION >= 0x030100
- QFETCH( QMatrix, matrix );
- QFETCH( QRect, src );
- QFETCH( QPolygon, res );
-
- QCOMPARE( (matrix * src), QRegion(res) );
-#else
- QSKIP( "Not tested with Qt versions < 3.1", SkipAll);
-#endif
-}
-
-
void tst_QWMatrix::operator_star_qwmatrix()
{
#if 0