diff options
author | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-24 05:06:13 (GMT) |
---|---|---|
committer | Leonardo Sobral Cunha <leo.cunha@nokia.com> | 2010-02-24 05:07:27 (GMT) |
commit | b9c5c6b562ffbaeb509cffd300898018357834f3 (patch) | |
tree | 0185bb5c9cf1babb87e4c73bf8de48f3b575bcaf /tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp | |
parent | 42e493f397436607d219edfc76a2e04fbb8c2a18 (diff) | |
download | Qt-b9c5c6b562ffbaeb509cffd300898018357834f3.zip Qt-b9c5c6b562ffbaeb509cffd300898018357834f3.tar.gz Qt-b9c5c6b562ffbaeb509cffd300898018357834f3.tar.bz2 |
Change autotest class prefix from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to QDeclarativeXXX.
Diffstat (limited to 'tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp')
-rw-r--r-- | tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp b/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp index f29ed18..ed37c43 100644 --- a/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp +++ b/tests/auto/declarative/qdeclarativeflipable/tst_qdeclarativeflipable.cpp @@ -47,11 +47,11 @@ #include <private/qdeclarativerectangle_p.h> #include <math.h> -class tst_qmlgraphicsflipable : public QObject +class tst_qdeclarativeflipable : public QObject { Q_OBJECT public: - tst_qmlgraphicsflipable(); + tst_qdeclarativeflipable(); private slots: void create(); @@ -62,11 +62,11 @@ private: QDeclarativeEngine engine; }; -tst_qmlgraphicsflipable::tst_qmlgraphicsflipable() +tst_qdeclarativeflipable::tst_qdeclarativeflipable() { } -void tst_qmlgraphicsflipable::create() +void tst_qdeclarativeflipable::create() { QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml")); @@ -76,7 +76,7 @@ void tst_qmlgraphicsflipable::create() delete obj; } -void tst_qmlgraphicsflipable::checkFrontAndBack() +void tst_qdeclarativeflipable::checkFrontAndBack() { QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml")); @@ -88,7 +88,7 @@ void tst_qmlgraphicsflipable::checkFrontAndBack() delete obj; } -void tst_qmlgraphicsflipable::setFrontAndBack() +void tst_qdeclarativeflipable::setFrontAndBack() { QDeclarativeEngine engine; QDeclarativeComponent c(&engine, QUrl::fromLocalFile(SRCDIR "/data/test-flipable.qml")); @@ -108,6 +108,6 @@ void tst_qmlgraphicsflipable::setFrontAndBack() delete obj; } -QTEST_MAIN(tst_qmlgraphicsflipable) +QTEST_MAIN(tst_qdeclarativeflipable) #include "tst_qdeclarativeflipable.moc" |