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/qdeclarativeerror | |
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/qdeclarativeerror')
-rw-r--r-- | tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp b/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp index 2df11d3..ba1ebae 100644 --- a/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp +++ b/tests/auto/declarative/qdeclarativeerror/tst_qdeclarativeerror.cpp @@ -43,7 +43,7 @@ #include <QDeclarativeError> #include <QDebug> -class tst_qmlerror : public QObject +class tst_qdeclarativeerror : public QObject { Q_OBJECT private slots: @@ -57,7 +57,7 @@ private slots: void debug(); }; -void tst_qmlerror::url() +void tst_qdeclarativeerror::url() { QDeclarativeError error; @@ -77,7 +77,7 @@ void tst_qmlerror::url() QCOMPARE(error2.url(), QUrl("http://www.nokia.com/main.qml")); } -void tst_qmlerror::description() +void tst_qdeclarativeerror::description() { QDeclarativeError error; @@ -97,7 +97,7 @@ void tst_qmlerror::description() QCOMPARE(error2.description(), QString("An Error")); } -void tst_qmlerror::line() +void tst_qdeclarativeerror::line() { QDeclarativeError error; @@ -117,7 +117,7 @@ void tst_qmlerror::line() QCOMPARE(error2.line(), 102); } -void tst_qmlerror::column() +void tst_qdeclarativeerror::column() { QDeclarativeError error; @@ -137,7 +137,7 @@ void tst_qmlerror::column() QCOMPARE(error2.column(), 16); } -void tst_qmlerror::toString() +void tst_qdeclarativeerror::toString() { { QDeclarativeError error; @@ -159,7 +159,7 @@ void tst_qmlerror::toString() } } -void tst_qmlerror::copy() +void tst_qdeclarativeerror::copy() { QDeclarativeError error; error.setUrl(QUrl("http://www.nokia.com/main.qml")); @@ -193,7 +193,7 @@ void tst_qmlerror::copy() } -void tst_qmlerror::debug() +void tst_qdeclarativeerror::debug() { { QDeclarativeError error; @@ -237,6 +237,6 @@ void tst_qmlerror::debug() -QTEST_MAIN(tst_qmlerror) +QTEST_MAIN(tst_qdeclarativeerror) #include "tst_qdeclarativeerror.moc" |