summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-10-30 04:15:22 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-10-30 04:15:22 (GMT)
commit45cc1ea534640cb492bd00405bf8fcd5dbfbcf5c (patch)
tree9bbf0cca7e26abfab486c658cc6d4005fd4e74b8 /tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp
parentf37e9d787bd418d8f75997a8d46c1c42e842c673 (diff)
downloadQt-45cc1ea534640cb492bd00405bf8fcd5dbfbcf5c.zip
Qt-45cc1ea534640cb492bd00405bf8fcd5dbfbcf5c.tar.gz
Qt-45cc1ea534640cb492bd00405bf8fcd5dbfbcf5c.tar.bz2
Rename QFx classes to QmlGraphics
Diffstat (limited to 'tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp')
-rw-r--r--tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp b/tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp
index dc124ce..6e3336c 100644
--- a/tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp
+++ b/tests/auto/declarative/qfxwebview/tst_qfxwebview.cpp
@@ -68,7 +68,7 @@ void tst_qfxwebview::testBasicProperties()
checkNoErrors(component);
QWebSettings::enablePersistentStorage(tmpDir());
- QFxWebView *wv = qobject_cast<QFxWebView*>(component.create());
+ QmlGraphicsWebView *wv = qobject_cast<QmlGraphicsWebView*>(component.create());
QVERIFY(wv != 0);
QTRY_COMPARE(wv->progress(), 1.0);
QCOMPARE(wv->title(),QString("Basic"));
@@ -87,7 +87,7 @@ void tst_qfxwebview::testBasicProperties()
QCOMPARE(wv->preferredWidth(), 0);
QCOMPARE(wv->zoomFactor(), 1.0);
QCOMPARE(wv->url(), QUrl::fromLocalFile(SRCDIR "/data/basic.html"));
- QCOMPARE(wv->status(), QFxWebView::Ready);
+ QCOMPARE(wv->status(), QmlGraphicsWebView::Ready);
QVERIFY(wv->reloadAction());
QVERIFY(wv->reloadAction()->isEnabled());
QVERIFY(wv->backAction());