aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/tst_qtgraphicaleffects.cpp
diff options
context:
space:
mode:
authorMarko Niemelä <marko.a.niemela@nokia.com>2012-01-10 13:25:20 +0200
committerMarko Niemelä <marko.a.niemela@nokia.com>2012-01-10 13:25:20 +0200
commit143980a396c798b61726855323b6f82bb5c4bc03 (patch)
tree3573ea65a4465c87738060be60eca8aa8023d431 /tests/auto/tst_qtgraphicaleffects.cpp
parentc2de8fcefab55a33f7809e44bdeb90e7186c447c (diff)
Renamed property maximumRadius -> samples in many effects
Diffstat (limited to 'tests/auto/tst_qtgraphicaleffects.cpp')
-rw-r--r--tests/auto/tst_qtgraphicaleffects.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/tst_qtgraphicaleffects.cpp b/tests/auto/tst_qtgraphicaleffects.cpp
index 9ce397e..d26bf94 100644
--- a/tests/auto/tst_qtgraphicaleffects.cpp
+++ b/tests/auto/tst_qtgraphicaleffects.cpp
@@ -368,7 +368,7 @@ void tst_qtgraphicaleffects::gaussianBlur()
// Default values
QCOMPARE(obj->property("radius").toDouble(), 0.0);
- QCOMPARE(obj->property("maximumRadius").toInt(), 0);
+ QCOMPARE(obj->property("samples").toInt(), 0);
QCOMPARE(obj->property("transparentBorder").toBool(), false);
double res = obj->property("deviation").toDouble();
@@ -397,7 +397,7 @@ void tst_qtgraphicaleffects::dropShadow()
// Default values
QCOMPARE(obj->property("radius").toDouble(), 0.0);
- QCOMPARE(obj->property("maximumRadius").toInt(), 0);
+ QCOMPARE(obj->property("samples").toInt(), 0);
QCOMPARE(obj->property("horizontalOffset").toDouble(), 0.0);
QCOMPARE(obj->property("verticalOffset").toDouble(), 0.0);
QCOMPARE(obj->property("cached").toBool(), false);
@@ -428,7 +428,7 @@ void tst_qtgraphicaleffects::innerShadow()
// Default values
QCOMPARE(obj->property("radius").toDouble(), 0.0);
- QCOMPARE(obj->property("maximumRadius").toInt(), 0);
+ QCOMPARE(obj->property("samples").toInt(), 0);
QCOMPARE(obj->property("horizontalOffset").toDouble(), 0.0);
QCOMPARE(obj->property("verticalOffset").toDouble(), 0.0);
QCOMPARE(obj->property("cached").toBool(), false);
@@ -507,7 +507,7 @@ void tst_qtgraphicaleffects::glow()
// Default values
QCOMPARE(obj->property("radius").toDouble(), 0.0);
- QCOMPARE(obj->property("maximumRadius").toInt(), 0);
+ QCOMPARE(obj->property("samples").toInt(), 0);
QCOMPARE(obj->property("cached").toBool(), false);
QCOMPARE(obj->property("spread").toDouble(), 0.0);
QCOMPARE(obj->property("color").toString(), QString("#ffffff"));
@@ -718,7 +718,7 @@ void tst_qtgraphicaleffects::maskedBlur()
QCOMPARE(obj->property("source").toInt(), 0);
QCOMPARE(obj->property("maskSource").toInt(), 0);
QCOMPARE(obj->property("radius").toDouble(), 0.0);
- QCOMPARE(obj->property("maximumRadius").toInt(), 0);
+ QCOMPARE(obj->property("samples").toInt(), 0);
QCOMPARE(obj->property("cached").toBool(), false);
QCOMPARE(obj->property("transparentBorder").toBool(), false);
QCOMPARE(obj->property("fast").toBool(), false);