summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-09-11 19:54:20 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2012-09-11 19:54:20 +0200
commit88a04ac016f57c2d78e714682445dff2e7db4ade (patch)
treea48ca81ee3b29953121308168db22532d5b57fe2 /Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp
parent284837daa07b29d6a63a748544a90b1f5842ac5c (diff)
Imported WebKit commit 42d95198c30c2d1a94a5081181aad0b2be7c316c (http://svn.webkit.org/repository/webkit/trunk@128206)
This includes the rewrite of the configure part of the build system which should fix the QtQuick2 detection and allow for further simplifications in the future
Diffstat (limited to 'Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp')
-rw-r--r--Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp b/Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp
index 13d98af93..ec9c71286 100644
--- a/Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp
+++ b/Source/WebKit/qt/tests/qobjectbridge/tst_qobjectbridge.cpp
@@ -2039,7 +2039,7 @@ void tst_QObjectBridge::ownership()
{
// test ownership
{
- QWeakPointer<QObject> ptr = new QObject();
+ QPointer<QObject> ptr = new QObject();
QVERIFY(ptr);
{
QWebPage page;
@@ -2049,7 +2049,7 @@ void tst_QObjectBridge::ownership()
QVERIFY(!ptr);
}
{
- QWeakPointer<QObject> ptr = new QObject();
+ QPointer<QObject> ptr = new QObject();
QVERIFY(ptr);
QObject* before = ptr.data();
{
@@ -2073,7 +2073,7 @@ void tst_QObjectBridge::ownership()
QCOMPARE(qvariant_cast<QObject*>(v), (QObject *)0);
}
{
- QWeakPointer<QObject> ptr = new QObject();
+ QPointer<QObject> ptr = new QObject();
QVERIFY(ptr);
{
QWebPage page;
@@ -2085,7 +2085,7 @@ void tst_QObjectBridge::ownership()
}
{
QObject* parent = new QObject();
- QWeakPointer<QObject> child = new QObject(parent);
+ QPointer<QObject> child = new QObject(parent);
QVERIFY(child);
{
QWebPage page;