From 54f9fe5d41bc4a66d03c9846c1990958518d8623 Mon Sep 17 00:00:00 2001 From: Daniel d'Andrada Date: Tue, 18 Dec 2012 09:47:57 -0200 Subject: Flickable: Test case for flicking twice using touches When you flick twice in rapid succession, in the same direction, the expected behavior is for flickable to be moving quite fast in the direction of the flicks. This test check for a bug where when you flick using touch events instead of mouse ones, the second flick causes Flickable to immediately halt. Change-Id: I430515d82499b904a1d2e23402b753873490a2d9 Reviewed-by: Andras Becsi --- tests/auto/quick/qquickflickable/data/longList.qml | 22 +++++++ .../quick/qquickflickable/tst_qquickflickable.cpp | 70 ++++++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 tests/auto/quick/qquickflickable/data/longList.qml (limited to 'tests') diff --git a/tests/auto/quick/qquickflickable/data/longList.qml b/tests/auto/quick/qquickflickable/data/longList.qml new file mode 100644 index 0000000000..424f2890ea --- /dev/null +++ b/tests/auto/quick/qquickflickable/data/longList.qml @@ -0,0 +1,22 @@ +import QtQuick 2.0 + +Flickable { + id: flick + + width: 200 + height: 480 + + contentHeight: 100 * 100 + + Grid { + columns: 1 + Repeater { + model: 100 + Rectangle { + width: flick.width + height: 100 + color: Qt.rgba(Math.random(), Math.random(), Math.random(), 1) + } + } + } +} diff --git a/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp b/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp index 66071e65d4..6a85b4da2a 100644 --- a/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp +++ b/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp @@ -53,6 +53,8 @@ #include "../shared/viewtestutil.h" #include "../shared/visualtestutil.h" +#include + using namespace QQuickViewTestUtil; using namespace QQuickVisualTestUtil; @@ -88,8 +90,10 @@ private slots: void margins(); void cancelOnMouseGrab(); void clickAndDragWhenTransformed(); + void flickTwiceUsingTouches(); private: + void flickWithTouch(QWindow *window, QTouchDevice *touchDevice); QQmlEngine engine; }; @@ -1241,6 +1245,72 @@ void tst_qquickflickable::clickAndDragWhenTransformed() delete view; } +void tst_qquickflickable::flickTwiceUsingTouches() +{ + QTouchDevice *touchDevice = new QTouchDevice; + touchDevice->setName("Fake Touchscreen"); + touchDevice->setType(QTouchDevice::TouchScreen); + touchDevice->setCapabilities(QTouchDevice::Position); + QWindowSystemInterface::registerTouchDevice(touchDevice); + + QQuickView *window = new QQuickView; + window->setSource(testFileUrl("longList.qml")); + window->show(); + window->requestActivate(); + QTest::qWaitForWindowActive(window); + QVERIFY(window->rootObject() != 0); + + QQuickFlickable *flickable = qobject_cast(window->rootObject()); + QVERIFY(flickable != 0); + + QCOMPARE(flickable->contentY(), 0.0f); + flickWithTouch(window, touchDevice); + + qreal contentYAfterFirstFlick = flickable->contentY(); + qDebug() << "contentYAfterFirstFlick " << contentYAfterFirstFlick; + QVERIFY(contentYAfterFirstFlick > 50.0f); + + flickWithTouch(window, touchDevice); + + // In the original bug, that second flick would cause Flickable to halt immediately + qreal contentYAfterSecondFlick = flickable->contentY(); + qDebug() << "contentYAfterSecondFlick " << contentYAfterSecondFlick; + QVERIFY(contentYAfterSecondFlick > (contentYAfterFirstFlick + 80.0f)); + + delete window; +} + +void tst_qquickflickable::flickWithTouch(QWindow *window, QTouchDevice *touchDevice) +{ + QTest::touchEvent(window, touchDevice) + .press(0, QPoint(100, 400), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .move(0, QPoint(100, 380), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .move(0, QPoint(100, 360), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .move(0, QPoint(100, 340), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .move(0, QPoint(100, 320), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .move(0, QPoint(100, 300), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .move(0, QPoint(100, 280), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .move(0, QPoint(100, 260), window); + QTest::qWait(1); + QTest::touchEvent(window, touchDevice) + .release(0, QPoint(100, 240), window); + QTest::qWait(1); +} + QTEST_MAIN(tst_qquickflickable) #include "tst_qquickflickable.moc" -- cgit v1.2.3 From 5644e4f46c39964c0541d29740a9f741a0830f66 Mon Sep 17 00:00:00 2001 From: Daniel d'Andrada Date: Wed, 19 Dec 2012 15:29:49 -0200 Subject: Test case for tapping on stacked mouse areas Shows bug where the bottom mouse area could get a double click event out of a single tap. Change-Id: I4907a1506db2b4ccc5299d698c6e05fd02db963c Reviewed-by: Shawn Rutledge --- tests/auto/quick/touchmouse/data/twoMouseAreas.qml | 33 +++++++++++++++ tests/auto/quick/touchmouse/tst_touchmouse.cpp | 49 ++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 tests/auto/quick/touchmouse/data/twoMouseAreas.qml (limited to 'tests') diff --git a/tests/auto/quick/touchmouse/data/twoMouseAreas.qml b/tests/auto/quick/touchmouse/data/twoMouseAreas.qml new file mode 100644 index 0000000000..a02a6a4444 --- /dev/null +++ b/tests/auto/quick/touchmouse/data/twoMouseAreas.qml @@ -0,0 +1,33 @@ +import QtQuick 2.0 + +Rectangle { + width: 320 + height: 480 + color: "#0c6d49" + objectName: "top rect" + + Rectangle { + id: greyRectangle + objectName: "grey rect" + anchors { + left: parent.left + right: parent.right + top: parent.top + } + height: parent.height / 2 + color: "grey" + } + + MouseArea { + objectName: "rear mouseArea" + anchors.fill: parent + } + + MouseArea { + objectName: "front mouseArea" + anchors.fill: greyRectangle + onPressed: { + mouse.accepted = false; + } + } +} diff --git a/tests/auto/quick/touchmouse/tst_touchmouse.cpp b/tests/auto/quick/touchmouse/tst_touchmouse.cpp index 1af70e3464..fc4d0c4815 100644 --- a/tests/auto/quick/touchmouse/tst_touchmouse.cpp +++ b/tests/auto/quick/touchmouse/tst_touchmouse.cpp @@ -160,6 +160,8 @@ private slots: void flickableOnPinch(); void mouseOnFlickableOnPinch(); + void tapOnDismissiveTopMouseAreaClicksBottomOne(); + private: QQuickView *createView(); QTouchDevice *device; @@ -918,6 +920,53 @@ void tst_TouchMouse::mouseOnFlickableOnPinch() pinchSequence.release(0, p, window).commit(); } +/* + Regression test for the following use case: + You have two mouse areas, on on top of the other. + 1 - You tap the top one. + 2 - That top mouse area receives a mouse press event but doesn't accept it + Expected outcome: + 3 - the bottom mouse area gets clicked (besides press and release mouse events) + Bogus outcome: + 3 - the bottom mouse area gets double clicked. + */ +void tst_TouchMouse::tapOnDismissiveTopMouseAreaClicksBottomOne() +{ + QQuickView *window = createView(); + + window->setSource(testFileUrl("twoMouseAreas.qml")); + window->show(); + window->requestActivate(); + QVERIFY(QTest::qWaitForWindowExposed(window)); + QVERIFY(window->rootObject() != 0); + + QQuickMouseArea *bottomMouseArea = + window->rootObject()->findChild("rear mouseArea"); + + QSignalSpy bottomClickedSpy(bottomMouseArea, SIGNAL(clicked(QQuickMouseEvent*))); + QSignalSpy bottomDoubleClickedSpy(bottomMouseArea, + SIGNAL(doubleClicked(QQuickMouseEvent*))); + + // tap the front mouse area (see qml file) + QPoint p1(20, 20); + QTest::touchEvent(window, device).press(0, p1, window); + QTest::qWait(1); + QTest::touchEvent(window, device).release(0, p1, window); + + QCOMPARE(bottomClickedSpy.count(), 1); + QCOMPARE(bottomDoubleClickedSpy.count(), 0); + QTest::qWait(15); + + QTest::touchEvent(window, device).press(0, p1, window); + QTest::qWait(1); + QTest::touchEvent(window, device).release(0, p1, window); + + QCOMPARE(bottomClickedSpy.count(), 1); + QCOMPARE(bottomDoubleClickedSpy.count(), 1); + + delete window; +} + QTEST_MAIN(tst_TouchMouse) #include "tst_touchmouse.moc" -- cgit v1.2.3 From 63b6e19704db059c9aece410ef8f36596f6b5580 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 21 Dec 2012 10:55:27 +0100 Subject: make use of qtHaveModule() Change-Id: I23f11c944fafb5863a960dcc83bc1e57e189f662 Reviewed-by: Sergio Ahumada Reviewed-by: Tasuku Suzuki Reviewed-by: Joerg Bornemann --- tests/auto/qml/qml.pro | 2 +- tests/auto/qml/qqmlecmascript/qqmlecmascript.pro | 2 +- tests/auto/quick/qquickpathview/qquickpathview.pro | 2 +- tests/auto/quick/qquicksystempalette/qquicksystempalette.pro | 2 +- tests/auto/quick/qquickvisualdatamodel/qquickvisualdatamodel.pro | 2 +- tests/auto/quick/quick.pro | 6 +++--- tests/benchmarks/qml/painting/painting.pro | 2 +- tests/benchmarks/qml/qml.pro | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) (limited to 'tests') diff --git a/tests/auto/qml/qml.pro b/tests/auto/qml/qml.pro index bbef36167e..b77effe3e5 100644 --- a/tests/auto/qml/qml.pro +++ b/tests/auto/qml/qml.pro @@ -53,7 +53,7 @@ PRIVATETESTS += \ v4 \ qqmltimer -!contains(QT_CONFIG, no-widgets) { +qtHaveModule(widgets) { PUBLICTESTS += \ qjsengine \ qjsvalue diff --git a/tests/auto/qml/qqmlecmascript/qqmlecmascript.pro b/tests/auto/qml/qqmlecmascript/qqmlecmascript.pro index 4aff6cf902..bc55ed9376 100644 --- a/tests/auto/qml/qqmlecmascript/qqmlecmascript.pro +++ b/tests/auto/qml/qqmlecmascript/qqmlecmascript.pro @@ -17,6 +17,6 @@ include (../../shared/util.pri) TESTDATA = data/* QT += core-private gui-private v8-private qml-private network testlib -!contains(QT_CONFIG, no-widgets): QT += widgets +qtHaveModule(widgets): QT += widgets DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 diff --git a/tests/auto/quick/qquickpathview/qquickpathview.pro b/tests/auto/quick/qquickpathview/qquickpathview.pro index bd9cc258c2..fb02caebdc 100644 --- a/tests/auto/quick/qquickpathview/qquickpathview.pro +++ b/tests/auto/quick/qquickpathview/qquickpathview.pro @@ -10,5 +10,5 @@ include (../shared/util.pri) TESTDATA = data/* QT += core-private gui-private v8-private qml-private quick-private testlib -!contains(QT_CONFIG, no-widgets): QT += widgets +qtHaveModule(widgets): QT += widgets DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 diff --git a/tests/auto/quick/qquicksystempalette/qquicksystempalette.pro b/tests/auto/quick/qquicksystempalette/qquicksystempalette.pro index b6c09479a2..48fd7e8e9a 100644 --- a/tests/auto/quick/qquicksystempalette/qquicksystempalette.pro +++ b/tests/auto/quick/qquicksystempalette/qquicksystempalette.pro @@ -6,5 +6,5 @@ SOURCES += tst_qquicksystempalette.cpp CONFIG += parallel_test QT += core-private gui-private qml-private quick-private testlib -!contains(QT_CONFIG, no-widgets): QT += widgets +qtHaveModule(widgets): QT += widgets DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 diff --git a/tests/auto/quick/qquickvisualdatamodel/qquickvisualdatamodel.pro b/tests/auto/quick/qquickvisualdatamodel/qquickvisualdatamodel.pro index d03cfaa8b4..60ae065910 100644 --- a/tests/auto/quick/qquickvisualdatamodel/qquickvisualdatamodel.pro +++ b/tests/auto/quick/qquickvisualdatamodel/qquickvisualdatamodel.pro @@ -12,5 +12,5 @@ TESTDATA = data/* CONFIG += parallel_test QT += core-private gui-private v8-private qml-private quick-private testlib -!contains(QT_CONFIG, no-widgets): QT += widgets +qtHaveModule(widgets): QT += widgets DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 diff --git a/tests/auto/quick/quick.pro b/tests/auto/quick/quick.pro index 5f18fc94bf..9600d0c7cf 100644 --- a/tests/auto/quick/quick.pro +++ b/tests/auto/quick/quick.pro @@ -5,12 +5,12 @@ PUBLICTESTS += \ rendernode \ qquickpixmapcache -!contains(QT_CONFIG, no-widgets): PUBLICTESTS += nodes +qtHaveModule(widgets): PUBLICTESTS += nodes !cross_compile: PUBLICTESTS += examples # This test requires the qtconcurrent module -!contains(QT_CONFIG, concurrent):PUBLICTESTS -= qquickpixmapcache +!qtHaveModule(concurrent): PUBLICTESTS -= qquickpixmapcache PRIVATETESTS += \ qquickanimations \ @@ -28,7 +28,7 @@ PRIVATETESTS += \ qquickxmllistmodel # This test requires the xmlpatterns module -!contains(QT_CONFIG,xmlpatterns):PRIVATETESTS -= qquickxmllistmodel +!qtHaveModule(xmlpatterns): PRIVATETESTS -= qquickxmllistmodel QUICKTESTS = \ qquickaccessible \ diff --git a/tests/benchmarks/qml/painting/painting.pro b/tests/benchmarks/qml/painting/painting.pro index 3f05185cbe..bde891e12d 100644 --- a/tests/benchmarks/qml/painting/painting.pro +++ b/tests/benchmarks/qml/painting/painting.pro @@ -1,4 +1,4 @@ -requires(contains(QT_CONFIG,opengl)) +requires(qtHaveModule(opengl)) QT += opengl CONFIG += console diff --git a/tests/benchmarks/qml/qml.pro b/tests/benchmarks/qml/qml.pro index 3fbf130969..c50f57b655 100644 --- a/tests/benchmarks/qml/qml.pro +++ b/tests/benchmarks/qml/qml.pro @@ -14,6 +14,6 @@ SUBDIRS += \ js \ qquickwindow -contains(QT_CONFIG, opengl): SUBDIRS += painting +qtHaveModule(opengl): SUBDIRS += painting include(../trusted-benchmarks.pri) -- cgit v1.2.3 From 653076d31b0cc4f353f9b2597eb210f833f0eabb Mon Sep 17 00:00:00 2001 From: Sergio Ahumada Date: Wed, 9 Jan 2013 04:12:43 -0800 Subject: tst_bic: Add test data for linux-gcc-ia32 Task-number: QTQAINFRA-321 Change-Id: I40505af8c579710c3252c9680287eda86bfbf165 Reviewed-by: Caroline Chao Reviewed-by: Janne Anttila --- tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt | 4622 ++++++++++++++++++++ 1 file changed, 4622 insertions(+) create mode 100644 tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt (limited to 'tests') diff --git a/tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt new file mode 100644 index 0000000000..d14e0a21ff --- /dev/null +++ b/tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt @@ -0,0 +1,4622 @@ +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb71e2690) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb71e26c8) 0 empty + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb5f28738) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb5f28770) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb7114b04) 0 empty + std::input_iterator_tag (0xb5f287a8) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb7114b40) 0 empty + std::forward_iterator_tag (0xb7114b7c) 0 empty + std::input_iterator_tag (0xb5f287e0) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb7114bb8) 0 empty + std::bidirectional_iterator_tag (0xb7114bf4) 0 empty + std::forward_iterator_tag (0xb7114c30) 0 empty + std::input_iterator_tag (0xb5f28818) 0 empty + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb5f8be38) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb5f8bf88) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb5fd7000) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb5fd7038) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb5fd70e0) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb5fd73f0) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb5fd7428) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 (int (*)(...))std::exception::~exception +12 (int (*)(...))std::exception::~exception +16 (int (*)(...))std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb5fd7b60) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 (int (*)(...))std::bad_exception::~bad_exception +12 (int (*)(...))std::bad_exception::~bad_exception +16 (int (*)(...))std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb7114e4c) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb5fd7d90) 0 nearly-empty + primary-for std::bad_exception (0xb7114e4c) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 (int (*)(...))std::bad_alloc::~bad_alloc +12 (int (*)(...))std::bad_alloc::~bad_alloc +16 (int (*)(...))std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb7114e88) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb5fd7fc0) 0 nearly-empty + primary-for std::bad_alloc (0xb7114e88) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb5e55188) 0 empty + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb5d36a48) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb5d36af0) 0 + +Class QMessageLogContext + size=20 align=4 + base size=20 base align=4 +QMessageLogContext (0xb5d36d90) 0 + +Class QMessageLogger + size=20 align=4 + base size=20 base align=4 +QMessageLogger (0xb5d52578) 0 + +Class QtPrivate::big_ + size=2 align=1 + base size=2 base align=1 +QtPrivate::big_ (0xb5d69ab8) 0 + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb5dcd428) 0 + +Class QIncompatibleFlag + size=4 align=4 + base size=4 base align=4 +QIncompatibleFlag (0xb5dcd7a8) 0 + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb5dcdfc0) 0 empty + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb5b16a80) 0 empty + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb5b893f0) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb5b510f0) 0 + QGenericArgument (0xb5b897e0) 0 + +Class QMetaObject + size=24 align=4 + base size=24 base align=4 +QMetaObject (0xb5b89bd0) 0 + +Class QMetaObject::Connection + size=4 align=4 + base size=4 base align=4 +QMetaObject::Connection (0xb5bacd20) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb5bb26c8) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb5bb2af0) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb5b513fc) 0 + QBasicAtomicInteger (0xb5a98a48) 0 + +Class QtPrivate::RefCount + size=4 align=4 + base size=4 base align=4 +QtPrivate::RefCount (0xb5ab2498) 0 + +Class QArrayData + size=16 align=4 + base size=16 base align=4 +QArrayData (0xb5ab2ee0) 0 + +Class QByteArrayDataPtr + size=4 align=4 + base size=4 base align=4 +QByteArrayDataPtr (0xb5ae6e70) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb5ae6ea8) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb5944658) 0 + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb59bbb60) 0 + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 (int (*)(...))__cxxabiv1::__forced_unwind::~__forced_unwind +12 (int (*)(...))__cxxabiv1::__forced_unwind::~__forced_unwind +16 (int (*)(...))__cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb59bbc08) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb583ab98) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb583abd0) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb583ac78) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb583ace8) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb583ad20) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb583adc8) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb583ae00) 0 + +Class QLatin1String + size=8 align=4 + base size=8 base align=4 +QLatin1String (0xb577b578) 0 + +Class QStringDataPtr + size=4 align=4 + base size=4 base align=4 +QStringDataPtr (0xb560c000) 0 + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb5657e70) 0 empty + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb560c038) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb56c3770) 0 + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb554a540) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb559c700) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 (int (*)(...))std::locale::facet::~facet +12 (int (*)(...))std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb55bda48) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb55c90e0) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb55c93f0) 0 + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 (int (*)(...))std::ios_base::failure::~failure +12 (int (*)(...))std::ios_base::failure::~failure +16 (int (*)(...))std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb57c64ec) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb54019a0) 0 nearly-empty + primary-for std::ios_base::failure (0xb57c64ec) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5413a48) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5413f88) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5419310) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 (int (*)(...))std::ios_base::~ios_base +12 (int (*)(...))std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5401968) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb544eb60) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb54ef8c0) 0 empty + +VTT for std::basic_ostream +std::basic_ostream::_ZTTSo: 2u entries +0 ((& std::basic_ostream::_ZTVSo) + 12u) +4 ((& std::basic_ostream::_ZTVSo) + 32u) + +VTT for std::basic_ostream +std::basic_ostream::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +VTT for std::basic_istream +std::basic_istream::_ZTTSi: 2u entries +0 ((& std::basic_istream::_ZTVSi) + 12u) +4 ((& std::basic_istream::_ZTVSi) + 32u) + +VTT for std::basic_istream +std::basic_istream::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Construction vtable for std::basic_istream (0xb5256078 instance) in std::basic_iostream +std::basic_iostream::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 (int (*)(...))std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 (int (*)(...))std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 4294967284u +24 (int (*)(...))-0x0000000000000000c +28 (int (*)(...))(& _ZTISi) +32 (int (*)(...))std::basic_istream::_ZTv0_n12_NSiD1Ev +36 (int (*)(...))std::basic_istream::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream (0xb52560f0 instance) in std::basic_iostream +std::basic_iostream::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 (int (*)(...))std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 (int (*)(...))std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 4294967292u +24 (int (*)(...))-0x00000000000000004 +28 (int (*)(...))(& _ZTISo) +32 (int (*)(...))std::basic_ostream::_ZTv0_n12_NSoD1Ev +36 (int (*)(...))std::basic_ostream::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream +std::basic_iostream::_ZTTSd: 7u entries +0 ((& std::basic_iostream::_ZTVSd) + 12u) +4 ((& std::basic_iostream::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream::_ZTVSd) + 52u) +24 ((& std::basic_iostream::_ZTVSd) + 32u) + +Construction vtable for std::basic_istream (0xb525612c instance) in std::basic_iostream +std::basic_iostream::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 (int (*)(...))std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 (int (*)(...))std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4294967284u +24 (int (*)(...))-0x0000000000000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 (int (*)(...))std::basic_istream::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 (int (*)(...))std::basic_istream::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream (0xb52561a4 instance) in std::basic_iostream +std::basic_iostream::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 (int (*)(...))std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 (int (*)(...))std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4294967292u +24 (int (*)(...))-0x00000000000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 (int (*)(...))std::basic_ostream::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 (int (*)(...))std::basic_ostream::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream +std::basic_iostream::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::__detail::_List_node_base + size=8 align=4 + base size=8 base align=4 +std::__detail::_List_node_base (0xb52d90e0) 0 + +Class QListData::Data + size=20 align=4 + base size=20 base align=4 +QListData::Data (0xb510db98) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb510db60) 0 + +Class QScopedPointerPodDeleter + size=1 align=1 + base size=0 base align=1 +QScopedPointerPodDeleter (0xb518dea8) 0 empty + +Class QMetaType + size=48 align=4 + base size=48 base align=4 +QMetaType (0xb5007150) 0 + +Class QtPrivate::QSlotObjectBase + size=8 align=4 + base size=8 base align=4 +QtPrivate::QSlotObjectBase (0xb4f13578) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 (int (*)(...))__cxa_pure_virtual +12 (int (*)(...))__cxa_pure_virtual + +Class QObjectData + size=28 align=4 + base size=28 base align=4 +QObjectData (0xb4f2d4d0) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Class QObject::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QObject::QPrivateSignal (0xb4f2d738) 0 empty + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 (int (*)(...))QObject::metaObject +12 (int (*)(...))QObject::qt_metacast +16 (int (*)(...))QObject::qt_metacall +20 (int (*)(...))QObject::~QObject +24 (int (*)(...))QObject::~QObject +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb4f2d658) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 (int (*)(...))QObjectUserData::~QObjectUserData +12 (int (*)(...))QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb4f77850) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Class QAbstractAnimation::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractAnimation::QPrivateSignal (0xb4f77b60) 0 empty + +Vtable for QAbstractAnimation +QAbstractAnimation::_ZTV18QAbstractAnimation: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractAnimation) +8 (int (*)(...))QAbstractAnimation::metaObject +12 (int (*)(...))QAbstractAnimation::qt_metacast +16 (int (*)(...))QAbstractAnimation::qt_metacall +20 (int (*)(...))QAbstractAnimation::~QAbstractAnimation +24 (int (*)(...))QAbstractAnimation::~QAbstractAnimation +28 (int (*)(...))QAbstractAnimation::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual +64 (int (*)(...))QAbstractAnimation::updateState +68 (int (*)(...))QAbstractAnimation::updateDirection + +Class QAbstractAnimation + size=8 align=4 + base size=8 base align=4 +QAbstractAnimation (0xb5256708) 0 + vptr=((& QAbstractAnimation::_ZTV18QAbstractAnimation) + 8u) + QObject (0xb4f77a80) 0 + primary-for QAbstractAnimation (0xb5256708) + +Class QAnimationDriver::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAnimationDriver::QPrivateSignal (0xb4f94a48) 0 empty + +Vtable for QAnimationDriver +QAnimationDriver::_ZTV16QAnimationDriver: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAnimationDriver) +8 (int (*)(...))QAnimationDriver::metaObject +12 (int (*)(...))QAnimationDriver::qt_metacast +16 (int (*)(...))QAnimationDriver::qt_metacall +20 (int (*)(...))QAnimationDriver::~QAnimationDriver +24 (int (*)(...))QAnimationDriver::~QAnimationDriver +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAnimationDriver::advance +60 (int (*)(...))QAnimationDriver::elapsed +64 (int (*)(...))QAnimationDriver::start +68 (int (*)(...))QAnimationDriver::stop + +Class QAnimationDriver + size=8 align=4 + base size=8 base align=4 +QAnimationDriver (0xb5256744) 0 + vptr=((& QAnimationDriver::_ZTV16QAnimationDriver) + 8u) + QObject (0xb4f94968) 0 + primary-for QAnimationDriver (0xb5256744) + +Class QAnimationGroup::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAnimationGroup::QPrivateSignal (0xb4faa038) 0 empty + +Vtable for QAnimationGroup +QAnimationGroup::_ZTV15QAnimationGroup: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAnimationGroup) +8 (int (*)(...))QAnimationGroup::metaObject +12 (int (*)(...))QAnimationGroup::qt_metacast +16 (int (*)(...))QAnimationGroup::qt_metacall +20 (int (*)(...))QAnimationGroup::~QAnimationGroup +24 (int (*)(...))QAnimationGroup::~QAnimationGroup +28 (int (*)(...))QAnimationGroup::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual +64 (int (*)(...))QAbstractAnimation::updateState +68 (int (*)(...))QAbstractAnimation::updateDirection + +Class QAnimationGroup + size=8 align=4 + base size=8 base align=4 +QAnimationGroup (0xb5256780) 0 + vptr=((& QAnimationGroup::_ZTV15QAnimationGroup) + 8u) + QAbstractAnimation (0xb52567bc) 0 + primary-for QAnimationGroup (0xb5256780) + QObject (0xb4f94fc0) 0 + primary-for QAbstractAnimation (0xb52567bc) + +Class QParallelAnimationGroup::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QParallelAnimationGroup::QPrivateSignal (0xb4faaaf0) 0 empty + +Vtable for QParallelAnimationGroup +QParallelAnimationGroup::_ZTV23QParallelAnimationGroup: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QParallelAnimationGroup) +8 (int (*)(...))QParallelAnimationGroup::metaObject +12 (int (*)(...))QParallelAnimationGroup::qt_metacast +16 (int (*)(...))QParallelAnimationGroup::qt_metacall +20 (int (*)(...))QParallelAnimationGroup::~QParallelAnimationGroup +24 (int (*)(...))QParallelAnimationGroup::~QParallelAnimationGroup +28 (int (*)(...))QParallelAnimationGroup::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QParallelAnimationGroup::duration +60 (int (*)(...))QParallelAnimationGroup::updateCurrentTime +64 (int (*)(...))QParallelAnimationGroup::updateState +68 (int (*)(...))QParallelAnimationGroup::updateDirection + +Class QParallelAnimationGroup + size=8 align=4 + base size=8 base align=4 +QParallelAnimationGroup (0xb52567f8) 0 + vptr=((& QParallelAnimationGroup::_ZTV23QParallelAnimationGroup) + 8u) + QAnimationGroup (0xb5256834) 0 + primary-for QParallelAnimationGroup (0xb52567f8) + QAbstractAnimation (0xb5256870) 0 + primary-for QAnimationGroup (0xb5256834) + QObject (0xb4faaa10) 0 + primary-for QAbstractAnimation (0xb5256870) + +Class QPauseAnimation::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QPauseAnimation::QPrivateSignal (0xb4fb6540) 0 empty + +Vtable for QPauseAnimation +QPauseAnimation::_ZTV15QPauseAnimation: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QPauseAnimation) +8 (int (*)(...))QPauseAnimation::metaObject +12 (int (*)(...))QPauseAnimation::qt_metacast +16 (int (*)(...))QPauseAnimation::qt_metacall +20 (int (*)(...))QPauseAnimation::~QPauseAnimation +24 (int (*)(...))QPauseAnimation::~QPauseAnimation +28 (int (*)(...))QPauseAnimation::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QPauseAnimation::duration +60 (int (*)(...))QPauseAnimation::updateCurrentTime +64 (int (*)(...))QAbstractAnimation::updateState +68 (int (*)(...))QAbstractAnimation::updateDirection + +Class QPauseAnimation + size=8 align=4 + base size=8 base align=4 +QPauseAnimation (0xb52568ac) 0 + vptr=((& QPauseAnimation::_ZTV15QPauseAnimation) + 8u) + QAbstractAnimation (0xb52568e8) 0 + primary-for QPauseAnimation (0xb52568ac) + QObject (0xb4fb6460) 0 + primary-for QAbstractAnimation (0xb52568e8) + +Class std::_Bit_reference + size=8 align=4 + base size=8 base align=4 +std::_Bit_reference (0xb4e0c1f8) 0 + +Class std::_Bit_iterator_base + size=8 align=4 + base size=8 base align=4 +std::_Bit_iterator_base (0xb525699c) 0 + std::iterator (0xb4e1b0a8) 0 empty + +Class std::_Bit_iterator + size=8 align=4 + base size=8 base align=4 +std::_Bit_iterator (0xb5256a8c) 0 + std::_Bit_iterator_base (0xb5256ac8) 0 + std::iterator (0xb4e26738) 0 empty + +Class std::_Bit_const_iterator + size=8 align=4 + base size=8 base align=4 +std::_Bit_const_iterator (0xb5256b04) 0 + std::_Bit_iterator_base (0xb5256b40) 0 + std::iterator (0xb4e35118) 0 empty + +Class QEasingCurve + size=4 align=4 + base size=4 base align=4 +QEasingCurve (0xb4ed1f18) 0 + +Class std::_Rb_tree_node_base + size=16 align=4 + base size=16 base align=4 +std::_Rb_tree_node_base (0xb4d15e38) 0 + +Class QMapNodeBase + size=12 align=4 + base size=12 base align=4 +QMapNodeBase (0xb4be0700) 0 + +Class QMapDataBase + size=24 align=4 + base size=24 base align=4 +QMapDataBase (0xb4bf3fc0) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb4c7c968) 0 + +Class QHashData + size=36 align=4 + base size=36 base align=4 +QHashData (0xb4c7c930) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb4c8ed90) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb4b2a540) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb4b2a700) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb4b2a5b0) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb4b2ace8) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb4b0f1c0) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb4b821f8) 0 + +Class QVariantAnimation::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QVariantAnimation::QPrivateSignal (0xb4b82a80) 0 empty + +Vtable for QVariantAnimation +QVariantAnimation::_ZTV17QVariantAnimation: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QVariantAnimation) +8 (int (*)(...))QVariantAnimation::metaObject +12 (int (*)(...))QVariantAnimation::qt_metacast +16 (int (*)(...))QVariantAnimation::qt_metacall +20 (int (*)(...))QVariantAnimation::~QVariantAnimation +24 (int (*)(...))QVariantAnimation::~QVariantAnimation +28 (int (*)(...))QVariantAnimation::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QVariantAnimation::duration +60 (int (*)(...))QVariantAnimation::updateCurrentTime +64 (int (*)(...))QVariantAnimation::updateState +68 (int (*)(...))QAbstractAnimation::updateDirection +72 (int (*)(...))QVariantAnimation::updateCurrentValue +76 (int (*)(...))QVariantAnimation::interpolated + +Class QVariantAnimation + size=8 align=4 + base size=8 base align=4 +QVariantAnimation (0xb5256fb4) 0 + vptr=((& QVariantAnimation::_ZTV17QVariantAnimation) + 8u) + QAbstractAnimation (0xb4b92000) 0 + primary-for QVariantAnimation (0xb5256fb4) + QObject (0xb4b829a0) 0 + primary-for QAbstractAnimation (0xb4b92000) + +Class QPropertyAnimation::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QPropertyAnimation::QPrivateSignal (0xb4b9d770) 0 empty + +Vtable for QPropertyAnimation +QPropertyAnimation::_ZTV18QPropertyAnimation: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QPropertyAnimation) +8 (int (*)(...))QPropertyAnimation::metaObject +12 (int (*)(...))QPropertyAnimation::qt_metacast +16 (int (*)(...))QPropertyAnimation::qt_metacall +20 (int (*)(...))QPropertyAnimation::~QPropertyAnimation +24 (int (*)(...))QPropertyAnimation::~QPropertyAnimation +28 (int (*)(...))QPropertyAnimation::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QVariantAnimation::duration +60 (int (*)(...))QVariantAnimation::updateCurrentTime +64 (int (*)(...))QPropertyAnimation::updateState +68 (int (*)(...))QAbstractAnimation::updateDirection +72 (int (*)(...))QPropertyAnimation::updateCurrentValue +76 (int (*)(...))QVariantAnimation::interpolated + +Class QPropertyAnimation + size=8 align=4 + base size=8 base align=4 +QPropertyAnimation (0xb4b9203c) 0 + vptr=((& QPropertyAnimation::_ZTV18QPropertyAnimation) + 8u) + QVariantAnimation (0xb4b92078) 0 + primary-for QPropertyAnimation (0xb4b9203c) + QAbstractAnimation (0xb4b920b4) 0 + primary-for QVariantAnimation (0xb4b92078) + QObject (0xb4b9d690) 0 + primary-for QAbstractAnimation (0xb4b920b4) + +Class QSequentialAnimationGroup::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSequentialAnimationGroup::QPrivateSignal (0xb4ba8230) 0 empty + +Vtable for QSequentialAnimationGroup +QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QSequentialAnimationGroup) +8 (int (*)(...))QSequentialAnimationGroup::metaObject +12 (int (*)(...))QSequentialAnimationGroup::qt_metacast +16 (int (*)(...))QSequentialAnimationGroup::qt_metacall +20 (int (*)(...))QSequentialAnimationGroup::~QSequentialAnimationGroup +24 (int (*)(...))QSequentialAnimationGroup::~QSequentialAnimationGroup +28 (int (*)(...))QSequentialAnimationGroup::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QSequentialAnimationGroup::duration +60 (int (*)(...))QSequentialAnimationGroup::updateCurrentTime +64 (int (*)(...))QSequentialAnimationGroup::updateState +68 (int (*)(...))QSequentialAnimationGroup::updateDirection + +Class QSequentialAnimationGroup + size=8 align=4 + base size=8 base align=4 +QSequentialAnimationGroup (0xb4b920f0) 0 + vptr=((& QSequentialAnimationGroup::_ZTV25QSequentialAnimationGroup) + 8u) + QAnimationGroup (0xb4b9212c) 0 + primary-for QSequentialAnimationGroup (0xb4b920f0) + QAbstractAnimation (0xb4b92168) 0 + primary-for QAnimationGroup (0xb4b9212c) + QObject (0xb4ba8150) 0 + primary-for QAbstractAnimation (0xb4b92168) + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb4bb7658) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 (int (*)(...))__cxa_pure_virtual +12 (int (*)(...))QTextCodec::aliases +16 (int (*)(...))__cxa_pure_virtual +20 (int (*)(...))__cxa_pure_virtual +24 (int (*)(...))__cxa_pure_virtual +28 (int (*)(...))QTextCodec::~QTextCodec +32 (int (*)(...))QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb4ba8cb0) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb4bd81f8) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb4bd8738) 0 + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb49e9968) 0 + +Class QtSharedPointer::NormalDeleter + size=1 align=1 + base size=0 base align=1 +QtSharedPointer::NormalDeleter (0xb4a02c40) 0 empty + +Class QtSharedPointer::ExternalRefCountData + size=12 align=4 + base size=12 base align=4 +QtSharedPointer::ExternalRefCountData (0xb4a02d20) 0 + +Class std::__numeric_limits_base + size=1 align=1 + base size=0 base align=1 +std::__numeric_limits_base (0xb4a74508) 0 empty + +Class QDate + size=8 align=4 + base size=8 base align=4 +QDate (0xb4acf7e0) 0 + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb48c53f0) 0 + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb48d27a8) 0 + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb48dd9d8) 0 empty + +Class QIODevice::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QIODevice::QPrivateSignal (0xb48f8150) 0 empty + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 (int (*)(...))QIODevice::metaObject +12 (int (*)(...))QIODevice::qt_metacast +16 (int (*)(...))QIODevice::qt_metacall +20 (int (*)(...))QIODevice::~QIODevice +24 (int (*)(...))QIODevice::~QIODevice +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QIODevice::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QIODevice::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QIODevice::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QIODevice::bytesAvailable +92 (int (*)(...))QIODevice::bytesToWrite +96 (int (*)(...))QIODevice::canReadLine +100 (int (*)(...))QIODevice::waitForReadyRead +104 (int (*)(...))QIODevice::waitForBytesWritten +108 (int (*)(...))__cxa_pure_virtual +112 (int (*)(...))QIODevice::readLineData +116 (int (*)(...))__cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb4b92294) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb48f8070) 0 + primary-for QIODevice (0xb4b92294) + +Class QBuffer::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QBuffer::QPrivateSignal (0xb4913bd0) 0 empty + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 (int (*)(...))QBuffer::metaObject +12 (int (*)(...))QBuffer::qt_metacast +16 (int (*)(...))QBuffer::qt_metacall +20 (int (*)(...))QBuffer::~QBuffer +24 (int (*)(...))QBuffer::~QBuffer +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QBuffer::connectNotify +52 (int (*)(...))QBuffer::disconnectNotify +56 (int (*)(...))QIODevice::isSequential +60 (int (*)(...))QBuffer::open +64 (int (*)(...))QBuffer::close +68 (int (*)(...))QBuffer::pos +72 (int (*)(...))QBuffer::size +76 (int (*)(...))QBuffer::seek +80 (int (*)(...))QBuffer::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QIODevice::bytesAvailable +92 (int (*)(...))QIODevice::bytesToWrite +96 (int (*)(...))QBuffer::canReadLine +100 (int (*)(...))QIODevice::waitForReadyRead +104 (int (*)(...))QIODevice::waitForBytesWritten +108 (int (*)(...))QBuffer::readData +112 (int (*)(...))QIODevice::readLineData +116 (int (*)(...))QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb4b9230c) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb4b92348) 0 + primary-for QBuffer (0xb4b9230c) + QObject (0xb4913af0) 0 + primary-for QIODevice (0xb4b92348) + +Class QDataStream + size=24 align=4 + base size=24 base align=4 +QDataStream (0xb4927428) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb4944b28) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb49adab8) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb49adaf0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 (int (*)(...))QTextStream::~QTextStream +12 (int (*)(...))QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb49adb60) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb47ebd90) 0 + +Class QContiguousCacheData + size=24 align=4 + base size=24 base align=4 +QContiguousCacheData (0xb483b7e0) 0 + +Class QDebug::Stream + size=44 align=4 + base size=44 base align=4 +QDebug::Stream (0xb4869428) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb48693f0) 0 + +Class QNoDebug + size=1 align=1 + base size=0 base align=1 +QNoDebug (0xb46b2b98) 0 empty + +Class QFileDevice::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QFileDevice::QPrivateSignal (0xb46c56c8) 0 empty + +Vtable for QFileDevice +QFileDevice::_ZTV11QFileDevice: 34u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFileDevice) +8 (int (*)(...))QFileDevice::metaObject +12 (int (*)(...))QFileDevice::qt_metacast +16 (int (*)(...))QFileDevice::qt_metacall +20 (int (*)(...))QFileDevice::~QFileDevice +24 (int (*)(...))QFileDevice::~QFileDevice +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QFileDevice::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QFileDevice::close +68 (int (*)(...))QFileDevice::pos +72 (int (*)(...))QFileDevice::size +76 (int (*)(...))QFileDevice::seek +80 (int (*)(...))QFileDevice::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QIODevice::bytesAvailable +92 (int (*)(...))QIODevice::bytesToWrite +96 (int (*)(...))QIODevice::canReadLine +100 (int (*)(...))QIODevice::waitForReadyRead +104 (int (*)(...))QIODevice::waitForBytesWritten +108 (int (*)(...))QFileDevice::readData +112 (int (*)(...))QFileDevice::readLineData +116 (int (*)(...))QFileDevice::writeData +120 (int (*)(...))QFileDevice::fileName +124 (int (*)(...))QFileDevice::resize +128 (int (*)(...))QFileDevice::permissions +132 (int (*)(...))QFileDevice::setPermissions + +Class QFileDevice + size=8 align=4 + base size=8 base align=4 +QFileDevice (0xb4b924ec) 0 + vptr=((& QFileDevice::_ZTV11QFileDevice) + 8u) + QIODevice (0xb4b92528) 0 + primary-for QFileDevice (0xb4b924ec) + QObject (0xb46c55e8) 0 + primary-for QIODevice (0xb4b92528) + +Class QFile::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QFile::QPrivateSignal (0xb46ff1f8) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 34u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 (int (*)(...))QFile::metaObject +12 (int (*)(...))QFile::qt_metacast +16 (int (*)(...))QFile::qt_metacall +20 (int (*)(...))QFile::~QFile +24 (int (*)(...))QFile::~QFile +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QFileDevice::isSequential +60 (int (*)(...))QFile::open +64 (int (*)(...))QFileDevice::close +68 (int (*)(...))QFileDevice::pos +72 (int (*)(...))QFile::size +76 (int (*)(...))QFileDevice::seek +80 (int (*)(...))QFileDevice::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QIODevice::bytesAvailable +92 (int (*)(...))QIODevice::bytesToWrite +96 (int (*)(...))QIODevice::canReadLine +100 (int (*)(...))QIODevice::waitForReadyRead +104 (int (*)(...))QIODevice::waitForBytesWritten +108 (int (*)(...))QFileDevice::readData +112 (int (*)(...))QFileDevice::readLineData +116 (int (*)(...))QFileDevice::writeData +120 (int (*)(...))QFile::fileName +124 (int (*)(...))QFile::resize +128 (int (*)(...))QFile::permissions +132 (int (*)(...))QFile::setPermissions + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb4b925a0) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QFileDevice (0xb4b925dc) 0 + primary-for QFile (0xb4b925a0) + QIODevice (0xb4b92618) 0 + primary-for QFileDevice (0xb4b925dc) + QObject (0xb46ff118) 0 + primary-for QIODevice (0xb4b92618) + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb4718150) 0 + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb4718f50) 0 + +Class QStringMatcher::Data + size=264 align=4 + base size=264 base align=4 +QStringMatcher::Data (0xb473cb60) 0 + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb473c850) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb4b926cc) 0 + QList (0xb473ce00) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb476f9a0) 0 + +Class QDirIterator + size=4 align=4 + base size=4 base align=4 +QDirIterator (0xb45c5658) 0 + +Class QFileSystemWatcher::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QFileSystemWatcher::QPrivateSignal (0xb45dad58) 0 empty + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 (int (*)(...))QFileSystemWatcher::metaObject +12 (int (*)(...))QFileSystemWatcher::qt_metacast +16 (int (*)(...))QFileSystemWatcher::qt_metacall +20 (int (*)(...))QFileSystemWatcher::~QFileSystemWatcher +24 (int (*)(...))QFileSystemWatcher::~QFileSystemWatcher +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb4b92834) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb45dac78) 0 + primary-for QFileSystemWatcher (0xb4b92834) + +Class QProcessEnvironment + size=4 align=4 + base size=4 base align=4 +QProcessEnvironment (0xb45ed310) 0 + +Class QProcess::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QProcess::QPrivateSignal (0xb45edcb0) 0 empty + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 (int (*)(...))QProcess::metaObject +12 (int (*)(...))QProcess::qt_metacast +16 (int (*)(...))QProcess::qt_metacall +20 (int (*)(...))QProcess::~QProcess +24 (int (*)(...))QProcess::~QProcess +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QProcess::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QProcess::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QProcess::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QProcess::bytesAvailable +92 (int (*)(...))QProcess::bytesToWrite +96 (int (*)(...))QProcess::canReadLine +100 (int (*)(...))QProcess::waitForReadyRead +104 (int (*)(...))QProcess::waitForBytesWritten +108 (int (*)(...))QProcess::readData +112 (int (*)(...))QIODevice::readLineData +116 (int (*)(...))QProcess::writeData +120 (int (*)(...))QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb4b92870) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb4b928ac) 0 + primary-for QProcess (0xb4b92870) + QObject (0xb45edbd0) 0 + primary-for QIODevice (0xb4b928ac) + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb4619230) 0 + +Class QSettings::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSettings::QPrivateSignal (0xb46198c0) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 (int (*)(...))QSettings::metaObject +12 (int (*)(...))QSettings::qt_metacast +16 (int (*)(...))QSettings::qt_metacall +20 (int (*)(...))QSettings::~QSettings +24 (int (*)(...))QSettings::~QSettings +28 (int (*)(...))QSettings::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb4b928e8) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb46197e0) 0 + primary-for QSettings (0xb4b928e8) + +Class QStandardPaths + size=1 align=1 + base size=0 base align=1 +QStandardPaths (0xb46348c0) 0 empty + +Class QTemporaryDir + size=4 align=4 + base size=4 base align=4 +QTemporaryDir (0xb4634e70) 0 + +Class QTemporaryFile::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QTemporaryFile::QPrivateSignal (0xb464d1f8) 0 empty + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 34u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 (int (*)(...))QTemporaryFile::metaObject +12 (int (*)(...))QTemporaryFile::qt_metacast +16 (int (*)(...))QTemporaryFile::qt_metacall +20 (int (*)(...))QTemporaryFile::~QTemporaryFile +24 (int (*)(...))QTemporaryFile::~QTemporaryFile +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QFileDevice::isSequential +60 (int (*)(...))QTemporaryFile::open +64 (int (*)(...))QFileDevice::close +68 (int (*)(...))QFileDevice::pos +72 (int (*)(...))QFile::size +76 (int (*)(...))QFileDevice::seek +80 (int (*)(...))QFileDevice::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QIODevice::bytesAvailable +92 (int (*)(...))QIODevice::bytesToWrite +96 (int (*)(...))QIODevice::canReadLine +100 (int (*)(...))QIODevice::waitForReadyRead +104 (int (*)(...))QIODevice::waitForBytesWritten +108 (int (*)(...))QFileDevice::readData +112 (int (*)(...))QFileDevice::readLineData +116 (int (*)(...))QFileDevice::writeData +120 (int (*)(...))QTemporaryFile::fileName +124 (int (*)(...))QFile::resize +128 (int (*)(...))QFile::permissions +132 (int (*)(...))QFile::setPermissions + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb4b92960) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb4b9299c) 0 + primary-for QTemporaryFile (0xb4b92960) + QFileDevice (0xb4b929d8) 0 + primary-for QFile (0xb4b9299c) + QIODevice (0xb4b92a14) 0 + primary-for QFileDevice (0xb4b929d8) + QObject (0xb464d118) 0 + primary-for QIODevice (0xb4b92a14) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb4659850) 0 + +Class QUrlQuery + size=4 align=4 + base size=4 base align=4 +QUrlQuery (0xb44c0578) 0 + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb44ea428) 0 + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb44fd658) 0 + +Class QAbstractItemModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractItemModel::QPrivateSignal (0xb450c1c0) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 (int (*)(...))QAbstractItemModel::metaObject +12 (int (*)(...))QAbstractItemModel::qt_metacast +16 (int (*)(...))QAbstractItemModel::qt_metacall +20 (int (*)(...))QAbstractItemModel::~QAbstractItemModel +24 (int (*)(...))QAbstractItemModel::~QAbstractItemModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual +64 (int (*)(...))QAbstractItemModel::sibling +68 (int (*)(...))__cxa_pure_virtual +72 (int (*)(...))__cxa_pure_virtual +76 (int (*)(...))QAbstractItemModel::hasChildren +80 (int (*)(...))__cxa_pure_virtual +84 (int (*)(...))QAbstractItemModel::setData +88 (int (*)(...))QAbstractItemModel::headerData +92 (int (*)(...))QAbstractItemModel::setHeaderData +96 (int (*)(...))QAbstractItemModel::itemData +100 (int (*)(...))QAbstractItemModel::setItemData +104 (int (*)(...))QAbstractItemModel::mimeTypes +108 (int (*)(...))QAbstractItemModel::mimeData +112 (int (*)(...))QAbstractItemModel::canDropMimeData +116 (int (*)(...))QAbstractItemModel::dropMimeData +120 (int (*)(...))QAbstractItemModel::supportedDropActions +124 (int (*)(...))QAbstractItemModel::supportedDragActions +128 (int (*)(...))QAbstractItemModel::insertRows +132 (int (*)(...))QAbstractItemModel::insertColumns +136 (int (*)(...))QAbstractItemModel::removeRows +140 (int (*)(...))QAbstractItemModel::removeColumns +144 (int (*)(...))QAbstractItemModel::moveRows +148 (int (*)(...))QAbstractItemModel::moveColumns +152 (int (*)(...))QAbstractItemModel::fetchMore +156 (int (*)(...))QAbstractItemModel::canFetchMore +160 (int (*)(...))QAbstractItemModel::flags +164 (int (*)(...))QAbstractItemModel::sort +168 (int (*)(...))QAbstractItemModel::buddy +172 (int (*)(...))QAbstractItemModel::match +176 (int (*)(...))QAbstractItemModel::span +180 (int (*)(...))QAbstractItemModel::roleNames +184 (int (*)(...))QAbstractItemModel::submit +188 (int (*)(...))QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb4b92b04) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb450c0e0) 0 + primary-for QAbstractItemModel (0xb4b92b04) + +Class QAbstractTableModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractTableModel::QPrivateSignal (0xb455ae38) 0 empty + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 (int (*)(...))QAbstractTableModel::metaObject +12 (int (*)(...))QAbstractTableModel::qt_metacast +16 (int (*)(...))QAbstractTableModel::qt_metacall +20 (int (*)(...))QAbstractTableModel::~QAbstractTableModel +24 (int (*)(...))QAbstractTableModel::~QAbstractTableModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAbstractTableModel::index +60 (int (*)(...))QAbstractTableModel::parent +64 (int (*)(...))QAbstractItemModel::sibling +68 (int (*)(...))__cxa_pure_virtual +72 (int (*)(...))__cxa_pure_virtual +76 (int (*)(...))QAbstractTableModel::hasChildren +80 (int (*)(...))__cxa_pure_virtual +84 (int (*)(...))QAbstractItemModel::setData +88 (int (*)(...))QAbstractItemModel::headerData +92 (int (*)(...))QAbstractItemModel::setHeaderData +96 (int (*)(...))QAbstractItemModel::itemData +100 (int (*)(...))QAbstractItemModel::setItemData +104 (int (*)(...))QAbstractItemModel::mimeTypes +108 (int (*)(...))QAbstractItemModel::mimeData +112 (int (*)(...))QAbstractItemModel::canDropMimeData +116 (int (*)(...))QAbstractTableModel::dropMimeData +120 (int (*)(...))QAbstractItemModel::supportedDropActions +124 (int (*)(...))QAbstractItemModel::supportedDragActions +128 (int (*)(...))QAbstractItemModel::insertRows +132 (int (*)(...))QAbstractItemModel::insertColumns +136 (int (*)(...))QAbstractItemModel::removeRows +140 (int (*)(...))QAbstractItemModel::removeColumns +144 (int (*)(...))QAbstractItemModel::moveRows +148 (int (*)(...))QAbstractItemModel::moveColumns +152 (int (*)(...))QAbstractItemModel::fetchMore +156 (int (*)(...))QAbstractItemModel::canFetchMore +160 (int (*)(...))QAbstractItemModel::flags +164 (int (*)(...))QAbstractItemModel::sort +168 (int (*)(...))QAbstractItemModel::buddy +172 (int (*)(...))QAbstractItemModel::match +176 (int (*)(...))QAbstractItemModel::span +180 (int (*)(...))QAbstractItemModel::roleNames +184 (int (*)(...))QAbstractItemModel::submit +188 (int (*)(...))QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb4b92c30) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb4b92c6c) 0 + primary-for QAbstractTableModel (0xb4b92c30) + QObject (0xb455ad58) 0 + primary-for QAbstractItemModel (0xb4b92c6c) + +Class QAbstractListModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractListModel::QPrivateSignal (0xb4568540) 0 empty + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 (int (*)(...))QAbstractListModel::metaObject +12 (int (*)(...))QAbstractListModel::qt_metacast +16 (int (*)(...))QAbstractListModel::qt_metacall +20 (int (*)(...))QAbstractListModel::~QAbstractListModel +24 (int (*)(...))QAbstractListModel::~QAbstractListModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAbstractListModel::index +60 (int (*)(...))QAbstractListModel::parent +64 (int (*)(...))QAbstractItemModel::sibling +68 (int (*)(...))__cxa_pure_virtual +72 (int (*)(...))QAbstractListModel::columnCount +76 (int (*)(...))QAbstractListModel::hasChildren +80 (int (*)(...))__cxa_pure_virtual +84 (int (*)(...))QAbstractItemModel::setData +88 (int (*)(...))QAbstractItemModel::headerData +92 (int (*)(...))QAbstractItemModel::setHeaderData +96 (int (*)(...))QAbstractItemModel::itemData +100 (int (*)(...))QAbstractItemModel::setItemData +104 (int (*)(...))QAbstractItemModel::mimeTypes +108 (int (*)(...))QAbstractItemModel::mimeData +112 (int (*)(...))QAbstractItemModel::canDropMimeData +116 (int (*)(...))QAbstractListModel::dropMimeData +120 (int (*)(...))QAbstractItemModel::supportedDropActions +124 (int (*)(...))QAbstractItemModel::supportedDragActions +128 (int (*)(...))QAbstractItemModel::insertRows +132 (int (*)(...))QAbstractItemModel::insertColumns +136 (int (*)(...))QAbstractItemModel::removeRows +140 (int (*)(...))QAbstractItemModel::removeColumns +144 (int (*)(...))QAbstractItemModel::moveRows +148 (int (*)(...))QAbstractItemModel::moveColumns +152 (int (*)(...))QAbstractItemModel::fetchMore +156 (int (*)(...))QAbstractItemModel::canFetchMore +160 (int (*)(...))QAbstractItemModel::flags +164 (int (*)(...))QAbstractItemModel::sort +168 (int (*)(...))QAbstractItemModel::buddy +172 (int (*)(...))QAbstractItemModel::match +176 (int (*)(...))QAbstractItemModel::span +180 (int (*)(...))QAbstractItemModel::roleNames +184 (int (*)(...))QAbstractItemModel::submit +188 (int (*)(...))QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb4b92ca8) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb4b92ce4) 0 + primary-for QAbstractListModel (0xb4b92ca8) + QObject (0xb4568460) 0 + primary-for QAbstractItemModel (0xb4b92ce4) + +Class QAbstractProxyModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractProxyModel::QPrivateSignal (0xb457a690) 0 empty + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 53u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractProxyModel) +8 (int (*)(...))QAbstractProxyModel::metaObject +12 (int (*)(...))QAbstractProxyModel::qt_metacast +16 (int (*)(...))QAbstractProxyModel::qt_metacall +20 (int (*)(...))QAbstractProxyModel::~QAbstractProxyModel +24 (int (*)(...))QAbstractProxyModel::~QAbstractProxyModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual +64 (int (*)(...))QAbstractProxyModel::sibling +68 (int (*)(...))__cxa_pure_virtual +72 (int (*)(...))__cxa_pure_virtual +76 (int (*)(...))QAbstractProxyModel::hasChildren +80 (int (*)(...))QAbstractProxyModel::data +84 (int (*)(...))QAbstractProxyModel::setData +88 (int (*)(...))QAbstractProxyModel::headerData +92 (int (*)(...))QAbstractProxyModel::setHeaderData +96 (int (*)(...))QAbstractProxyModel::itemData +100 (int (*)(...))QAbstractProxyModel::setItemData +104 (int (*)(...))QAbstractProxyModel::mimeTypes +108 (int (*)(...))QAbstractProxyModel::mimeData +112 (int (*)(...))QAbstractItemModel::canDropMimeData +116 (int (*)(...))QAbstractItemModel::dropMimeData +120 (int (*)(...))QAbstractProxyModel::supportedDropActions +124 (int (*)(...))QAbstractItemModel::supportedDragActions +128 (int (*)(...))QAbstractItemModel::insertRows +132 (int (*)(...))QAbstractItemModel::insertColumns +136 (int (*)(...))QAbstractItemModel::removeRows +140 (int (*)(...))QAbstractItemModel::removeColumns +144 (int (*)(...))QAbstractItemModel::moveRows +148 (int (*)(...))QAbstractItemModel::moveColumns +152 (int (*)(...))QAbstractProxyModel::fetchMore +156 (int (*)(...))QAbstractProxyModel::canFetchMore +160 (int (*)(...))QAbstractProxyModel::flags +164 (int (*)(...))QAbstractProxyModel::sort +168 (int (*)(...))QAbstractProxyModel::buddy +172 (int (*)(...))QAbstractItemModel::match +176 (int (*)(...))QAbstractProxyModel::span +180 (int (*)(...))QAbstractItemModel::roleNames +184 (int (*)(...))QAbstractProxyModel::submit +188 (int (*)(...))QAbstractProxyModel::revert +192 (int (*)(...))QAbstractProxyModel::setSourceModel +196 (int (*)(...))__cxa_pure_virtual +200 (int (*)(...))__cxa_pure_virtual +204 (int (*)(...))QAbstractProxyModel::mapSelectionToSource +208 (int (*)(...))QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=8 align=4 + base size=8 base align=4 +QAbstractProxyModel (0xb4b92d20) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 8u) + QAbstractItemModel (0xb4b92d5c) 0 + primary-for QAbstractProxyModel (0xb4b92d20) + QObject (0xb457a5b0) 0 + primary-for QAbstractItemModel (0xb4b92d5c) + +Class QIdentityProxyModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QIdentityProxyModel::QPrivateSignal (0xb4591038) 0 empty + +Vtable for QIdentityProxyModel +QIdentityProxyModel::_ZTV19QIdentityProxyModel: 53u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QIdentityProxyModel) +8 (int (*)(...))QIdentityProxyModel::metaObject +12 (int (*)(...))QIdentityProxyModel::qt_metacast +16 (int (*)(...))QIdentityProxyModel::qt_metacall +20 (int (*)(...))QIdentityProxyModel::~QIdentityProxyModel +24 (int (*)(...))QIdentityProxyModel::~QIdentityProxyModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QIdentityProxyModel::index +60 (int (*)(...))QIdentityProxyModel::parent +64 (int (*)(...))QIdentityProxyModel::sibling +68 (int (*)(...))QIdentityProxyModel::rowCount +72 (int (*)(...))QIdentityProxyModel::columnCount +76 (int (*)(...))QAbstractProxyModel::hasChildren +80 (int (*)(...))QAbstractProxyModel::data +84 (int (*)(...))QAbstractProxyModel::setData +88 (int (*)(...))QIdentityProxyModel::headerData +92 (int (*)(...))QAbstractProxyModel::setHeaderData +96 (int (*)(...))QAbstractProxyModel::itemData +100 (int (*)(...))QAbstractProxyModel::setItemData +104 (int (*)(...))QAbstractProxyModel::mimeTypes +108 (int (*)(...))QAbstractProxyModel::mimeData +112 (int (*)(...))QAbstractItemModel::canDropMimeData +116 (int (*)(...))QIdentityProxyModel::dropMimeData +120 (int (*)(...))QAbstractProxyModel::supportedDropActions +124 (int (*)(...))QAbstractItemModel::supportedDragActions +128 (int (*)(...))QIdentityProxyModel::insertRows +132 (int (*)(...))QIdentityProxyModel::insertColumns +136 (int (*)(...))QIdentityProxyModel::removeRows +140 (int (*)(...))QIdentityProxyModel::removeColumns +144 (int (*)(...))QAbstractItemModel::moveRows +148 (int (*)(...))QAbstractItemModel::moveColumns +152 (int (*)(...))QAbstractProxyModel::fetchMore +156 (int (*)(...))QAbstractProxyModel::canFetchMore +160 (int (*)(...))QAbstractProxyModel::flags +164 (int (*)(...))QAbstractProxyModel::sort +168 (int (*)(...))QAbstractProxyModel::buddy +172 (int (*)(...))QIdentityProxyModel::match +176 (int (*)(...))QAbstractProxyModel::span +180 (int (*)(...))QAbstractItemModel::roleNames +184 (int (*)(...))QAbstractProxyModel::submit +188 (int (*)(...))QAbstractProxyModel::revert +192 (int (*)(...))QIdentityProxyModel::setSourceModel +196 (int (*)(...))QIdentityProxyModel::mapToSource +200 (int (*)(...))QIdentityProxyModel::mapFromSource +204 (int (*)(...))QIdentityProxyModel::mapSelectionToSource +208 (int (*)(...))QIdentityProxyModel::mapSelectionFromSource + +Class QIdentityProxyModel + size=8 align=4 + base size=8 base align=4 +QIdentityProxyModel (0xb4b92d98) 0 + vptr=((& QIdentityProxyModel::_ZTV19QIdentityProxyModel) + 8u) + QAbstractProxyModel (0xb4b92dd4) 0 + primary-for QIdentityProxyModel (0xb4b92d98) + QAbstractItemModel (0xb4b92e10) 0 + primary-for QAbstractProxyModel (0xb4b92dd4) + QObject (0xb457af88) 0 + primary-for QAbstractItemModel (0xb4b92e10) + +Class QItemSelectionRange + size=8 align=4 + base size=8 base align=4 +QItemSelectionRange (0xb45919d8) 0 + +Class QItemSelectionModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QItemSelectionModel::QPrivateSignal (0xb43ba690) 0 empty + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QItemSelectionModel) +8 (int (*)(...))QItemSelectionModel::metaObject +12 (int (*)(...))QItemSelectionModel::qt_metacast +16 (int (*)(...))QItemSelectionModel::qt_metacall +20 (int (*)(...))QItemSelectionModel::~QItemSelectionModel +24 (int (*)(...))QItemSelectionModel::~QItemSelectionModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QItemSelectionModel::setCurrentIndex +60 (int (*)(...))QItemSelectionModel::select +64 (int (*)(...))QItemSelectionModel::select +68 (int (*)(...))QItemSelectionModel::clear +72 (int (*)(...))QItemSelectionModel::reset +76 (int (*)(...))QItemSelectionModel::clearCurrentIndex + +Class QItemSelectionModel + size=8 align=4 + base size=8 base align=4 +QItemSelectionModel (0xb4b92e4c) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 8u) + QObject (0xb43ba5b0) 0 + primary-for QItemSelectionModel (0xb4b92e4c) + +Class QItemSelection + size=4 align=4 + base size=4 base align=4 +QItemSelection (0xb4b92ec4) 0 + QList (0xb43e12a0) 0 + +Class QSortFilterProxyModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSortFilterProxyModel::QPrivateSignal (0xb43e1658) 0 empty + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 56u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +8 (int (*)(...))QSortFilterProxyModel::metaObject +12 (int (*)(...))QSortFilterProxyModel::qt_metacast +16 (int (*)(...))QSortFilterProxyModel::qt_metacall +20 (int (*)(...))QSortFilterProxyModel::~QSortFilterProxyModel +24 (int (*)(...))QSortFilterProxyModel::~QSortFilterProxyModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QSortFilterProxyModel::index +60 (int (*)(...))QSortFilterProxyModel::parent +64 (int (*)(...))QSortFilterProxyModel::sibling +68 (int (*)(...))QSortFilterProxyModel::rowCount +72 (int (*)(...))QSortFilterProxyModel::columnCount +76 (int (*)(...))QSortFilterProxyModel::hasChildren +80 (int (*)(...))QSortFilterProxyModel::data +84 (int (*)(...))QSortFilterProxyModel::setData +88 (int (*)(...))QSortFilterProxyModel::headerData +92 (int (*)(...))QSortFilterProxyModel::setHeaderData +96 (int (*)(...))QAbstractProxyModel::itemData +100 (int (*)(...))QAbstractProxyModel::setItemData +104 (int (*)(...))QSortFilterProxyModel::mimeTypes +108 (int (*)(...))QSortFilterProxyModel::mimeData +112 (int (*)(...))QAbstractItemModel::canDropMimeData +116 (int (*)(...))QSortFilterProxyModel::dropMimeData +120 (int (*)(...))QSortFilterProxyModel::supportedDropActions +124 (int (*)(...))QAbstractItemModel::supportedDragActions +128 (int (*)(...))QSortFilterProxyModel::insertRows +132 (int (*)(...))QSortFilterProxyModel::insertColumns +136 (int (*)(...))QSortFilterProxyModel::removeRows +140 (int (*)(...))QSortFilterProxyModel::removeColumns +144 (int (*)(...))QAbstractItemModel::moveRows +148 (int (*)(...))QAbstractItemModel::moveColumns +152 (int (*)(...))QSortFilterProxyModel::fetchMore +156 (int (*)(...))QSortFilterProxyModel::canFetchMore +160 (int (*)(...))QSortFilterProxyModel::flags +164 (int (*)(...))QSortFilterProxyModel::sort +168 (int (*)(...))QSortFilterProxyModel::buddy +172 (int (*)(...))QSortFilterProxyModel::match +176 (int (*)(...))QSortFilterProxyModel::span +180 (int (*)(...))QAbstractItemModel::roleNames +184 (int (*)(...))QAbstractProxyModel::submit +188 (int (*)(...))QAbstractProxyModel::revert +192 (int (*)(...))QSortFilterProxyModel::setSourceModel +196 (int (*)(...))QSortFilterProxyModel::mapToSource +200 (int (*)(...))QSortFilterProxyModel::mapFromSource +204 (int (*)(...))QSortFilterProxyModel::mapSelectionToSource +208 (int (*)(...))QSortFilterProxyModel::mapSelectionFromSource +212 (int (*)(...))QSortFilterProxyModel::filterAcceptsRow +216 (int (*)(...))QSortFilterProxyModel::filterAcceptsColumn +220 (int (*)(...))QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=8 align=4 + base size=8 base align=4 +QSortFilterProxyModel (0xb4b92f00) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 8u) + QAbstractProxyModel (0xb4b92f3c) 0 + primary-for QSortFilterProxyModel (0xb4b92f00) + QAbstractItemModel (0xb4b92f78) 0 + primary-for QAbstractProxyModel (0xb4b92f3c) + QObject (0xb43e1578) 0 + primary-for QAbstractItemModel (0xb4b92f78) + +Class QStringListModel::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QStringListModel::QPrivateSignal (0xb44110e0) 0 empty + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QStringListModel) +8 (int (*)(...))QStringListModel::metaObject +12 (int (*)(...))QStringListModel::qt_metacast +16 (int (*)(...))QStringListModel::qt_metacall +20 (int (*)(...))QStringListModel::~QStringListModel +24 (int (*)(...))QStringListModel::~QStringListModel +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAbstractListModel::index +60 (int (*)(...))QAbstractListModel::parent +64 (int (*)(...))QStringListModel::sibling +68 (int (*)(...))QStringListModel::rowCount +72 (int (*)(...))QAbstractListModel::columnCount +76 (int (*)(...))QAbstractListModel::hasChildren +80 (int (*)(...))QStringListModel::data +84 (int (*)(...))QStringListModel::setData +88 (int (*)(...))QAbstractItemModel::headerData +92 (int (*)(...))QAbstractItemModel::setHeaderData +96 (int (*)(...))QAbstractItemModel::itemData +100 (int (*)(...))QAbstractItemModel::setItemData +104 (int (*)(...))QAbstractItemModel::mimeTypes +108 (int (*)(...))QAbstractItemModel::mimeData +112 (int (*)(...))QAbstractItemModel::canDropMimeData +116 (int (*)(...))QAbstractListModel::dropMimeData +120 (int (*)(...))QStringListModel::supportedDropActions +124 (int (*)(...))QAbstractItemModel::supportedDragActions +128 (int (*)(...))QStringListModel::insertRows +132 (int (*)(...))QAbstractItemModel::insertColumns +136 (int (*)(...))QStringListModel::removeRows +140 (int (*)(...))QAbstractItemModel::removeColumns +144 (int (*)(...))QAbstractItemModel::moveRows +148 (int (*)(...))QAbstractItemModel::moveColumns +152 (int (*)(...))QAbstractItemModel::fetchMore +156 (int (*)(...))QAbstractItemModel::canFetchMore +160 (int (*)(...))QStringListModel::flags +164 (int (*)(...))QStringListModel::sort +168 (int (*)(...))QAbstractItemModel::buddy +172 (int (*)(...))QAbstractItemModel::match +176 (int (*)(...))QAbstractItemModel::span +180 (int (*)(...))QAbstractItemModel::roleNames +184 (int (*)(...))QAbstractItemModel::submit +188 (int (*)(...))QAbstractItemModel::revert + +Class QStringListModel + size=12 align=4 + base size=12 base align=4 +QStringListModel (0xb4b92fb4) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 8u) + QAbstractListModel (0xb4410000) 0 + primary-for QStringListModel (0xb4b92fb4) + QAbstractItemModel (0xb441003c) 0 + primary-for QAbstractListModel (0xb4410000) + QObject (0xb4411000) 0 + primary-for QAbstractItemModel (0xb441003c) + +Class QJsonValue + size=16 align=4 + base size=16 base align=4 +QJsonValue (0xb4411738) 0 + +Class QJsonValueRef + size=8 align=4 + base size=8 base align=4 +QJsonValueRef (0xb4429ab8) 0 + +Class QJsonArray::iterator + size=8 align=4 + base size=8 base align=4 +QJsonArray::iterator (0xb4445690) 0 + +Class QJsonArray::const_iterator + size=8 align=4 + base size=8 base align=4 +QJsonArray::const_iterator (0xb4451578) 0 + +Class QJsonArray + size=8 align=4 + base size=8 base align=4 +QJsonArray (0xb4445188) 0 + +Class QJsonParseError + size=8 align=4 + base size=8 base align=4 +QJsonParseError (0xb447b930) 0 + +Class QJsonDocument + size=4 align=4 + base size=4 base align=4 +QJsonDocument (0xb447ba10) 0 + +Class QJsonObject::iterator + size=8 align=4 + base size=8 base align=4 +QJsonObject::iterator (0xb44837a8) 0 + +Class QJsonObject::const_iterator + size=8 align=4 + base size=8 base align=4 +QJsonObject::const_iterator (0xb448f188) 0 + +Class QJsonObject + size=8 align=4 + base size=8 base align=4 +QJsonObject (0xb4483348) 0 + +Class QEventLoop::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QEventLoop::QPrivateSignal (0xb42b2c40) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 (int (*)(...))QEventLoop::metaObject +12 (int (*)(...))QEventLoop::qt_metacast +16 (int (*)(...))QEventLoop::qt_metacall +20 (int (*)(...))QEventLoop::~QEventLoop +24 (int (*)(...))QEventLoop::~QEventLoop +28 (int (*)(...))QEventLoop::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb4410078) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb42b2b60) 0 + primary-for QEventLoop (0xb4410078) + +Class QEventLoopLocker + size=4 align=4 + base size=4 base align=4 +QEventLoopLocker (0xb42d31c0) 0 + +Class QAbstractEventDispatcher::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractEventDispatcher::QPrivateSignal (0xb42d35b0) 0 empty + +Class QAbstractEventDispatcher::TimerInfo + size=12 align=4 + base size=12 base align=4 +QAbstractEventDispatcher::TimerInfo (0xb42d35e8) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 (int (*)(...))QAbstractEventDispatcher::metaObject +12 (int (*)(...))QAbstractEventDispatcher::qt_metacast +16 (int (*)(...))QAbstractEventDispatcher::qt_metacall +20 (int (*)(...))QAbstractEventDispatcher::~QAbstractEventDispatcher +24 (int (*)(...))QAbstractEventDispatcher::~QAbstractEventDispatcher +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual +64 (int (*)(...))__cxa_pure_virtual +68 (int (*)(...))__cxa_pure_virtual +72 (int (*)(...))__cxa_pure_virtual +76 (int (*)(...))__cxa_pure_virtual +80 (int (*)(...))__cxa_pure_virtual +84 (int (*)(...))__cxa_pure_virtual +88 (int (*)(...))__cxa_pure_virtual +92 (int (*)(...))__cxa_pure_virtual +96 (int (*)(...))__cxa_pure_virtual +100 (int (*)(...))__cxa_pure_virtual +104 (int (*)(...))QAbstractEventDispatcher::startingUp +108 (int (*)(...))QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb441012c) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb42d34d0) 0 + primary-for QAbstractEventDispatcher (0xb441012c) + +Vtable for QAbstractNativeEventFilter +QAbstractNativeEventFilter::_ZTV26QAbstractNativeEventFilter: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractNativeEventFilter) +8 (int (*)(...))QAbstractNativeEventFilter::~QAbstractNativeEventFilter +12 (int (*)(...))QAbstractNativeEventFilter::~QAbstractNativeEventFilter +16 (int (*)(...))__cxa_pure_virtual + +Class QAbstractNativeEventFilter + size=8 align=4 + base size=8 base align=4 +QAbstractNativeEventFilter (0xb42e4118) 0 + vptr=((& QAbstractNativeEventFilter::_ZTV26QAbstractNativeEventFilter) + 8u) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb42e43f0) 0 + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 (int (*)(...))QEvent::~QEvent +12 (int (*)(...))QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb42e4b98) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 (int (*)(...))QTimerEvent::~QTimerEvent +12 (int (*)(...))QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb441021c) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb42f8738) 0 + primary-for QTimerEvent (0xb441021c) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 (int (*)(...))QChildEvent::~QChildEvent +12 (int (*)(...))QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb4410258) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb42f88f8) 0 + primary-for QChildEvent (0xb4410258) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 (int (*)(...))QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 (int (*)(...))QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb4410294) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb42f8f18) 0 + primary-for QDynamicPropertyChangeEvent (0xb4410294) + +Vtable for QDeferredDeleteEvent +QDeferredDeleteEvent::_ZTV20QDeferredDeleteEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QDeferredDeleteEvent) +8 (int (*)(...))QDeferredDeleteEvent::~QDeferredDeleteEvent +12 (int (*)(...))QDeferredDeleteEvent::~QDeferredDeleteEvent + +Class QDeferredDeleteEvent + size=16 align=4 + base size=16 base align=4 +QDeferredDeleteEvent (0xb44102d0) 0 + vptr=((& QDeferredDeleteEvent::_ZTV20QDeferredDeleteEvent) + 8u) + QEvent (0xb4308000) 0 + primary-for QDeferredDeleteEvent (0xb44102d0) + +Class QCoreApplication::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QCoreApplication::QPrivateSignal (0xb43082a0) 0 empty + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 (int (*)(...))QCoreApplication::metaObject +12 (int (*)(...))QCoreApplication::qt_metacast +16 (int (*)(...))QCoreApplication::qt_metacall +20 (int (*)(...))QCoreApplication::~QCoreApplication +24 (int (*)(...))QCoreApplication::~QCoreApplication +28 (int (*)(...))QCoreApplication::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QCoreApplication::notify +60 (int (*)(...))QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb441030c) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb43081c0) 0 + primary-for QCoreApplication (0xb441030c) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb431d2d8) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb431da10) 0 + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb4364e00) 0 + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb436f2a0) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb436f540) 0 + +Class QMimeData::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QMimeData::QPrivateSignal (0xb436f9d8) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 (int (*)(...))QMimeData::metaObject +12 (int (*)(...))QMimeData::qt_metacast +16 (int (*)(...))QMimeData::qt_metacall +20 (int (*)(...))QMimeData::~QMimeData +24 (int (*)(...))QMimeData::~QMimeData +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QMimeData::hasFormat +60 (int (*)(...))QMimeData::formats +64 (int (*)(...))QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb4410348) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb436f8f8) 0 + primary-for QMimeData (0xb4410348) + +Class QObjectCleanupHandler::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QObjectCleanupHandler::QPrivateSignal (0xb4387188) 0 empty + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 (int (*)(...))QObjectCleanupHandler::metaObject +12 (int (*)(...))QObjectCleanupHandler::qt_metacast +16 (int (*)(...))QObjectCleanupHandler::qt_metacall +20 (int (*)(...))QObjectCleanupHandler::~QObjectCleanupHandler +24 (int (*)(...))QObjectCleanupHandler::~QObjectCleanupHandler +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb4410384) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb43870a8) 0 + primary-for QObjectCleanupHandler (0xb4410384) + +Class QPointerBase + size=8 align=4 + base size=8 base align=4 +QPointerBase (0xb43875e8) 0 + +Class QSharedMemory::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSharedMemory::QPrivateSignal (0xb43985e8) 0 empty + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 (int (*)(...))QSharedMemory::metaObject +12 (int (*)(...))QSharedMemory::qt_metacast +16 (int (*)(...))QSharedMemory::qt_metacall +20 (int (*)(...))QSharedMemory::~QSharedMemory +24 (int (*)(...))QSharedMemory::~QSharedMemory +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb44103fc) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb4398508) 0 + primary-for QSharedMemory (0xb44103fc) + +Class QSignalMapper::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSignalMapper::QPrivateSignal (0xb41b3038) 0 empty + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 (int (*)(...))QSignalMapper::metaObject +12 (int (*)(...))QSignalMapper::qt_metacast +16 (int (*)(...))QSignalMapper::qt_metacall +20 (int (*)(...))QSignalMapper::~QSignalMapper +24 (int (*)(...))QSignalMapper::~QSignalMapper +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb4410438) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb4398f88) 0 + primary-for QSignalMapper (0xb4410438) + +Class QSocketNotifier::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSocketNotifier::QPrivateSignal (0xb41b3d20) 0 empty + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 (int (*)(...))QSocketNotifier::metaObject +12 (int (*)(...))QSocketNotifier::qt_metacast +16 (int (*)(...))QSocketNotifier::qt_metacall +20 (int (*)(...))QSocketNotifier::~QSocketNotifier +24 (int (*)(...))QSocketNotifier::~QSocketNotifier +28 (int (*)(...))QSocketNotifier::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QSocketNotifier + size=8 align=4 + base size=8 base align=4 +QSocketNotifier (0xb4410474) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb41b3c40) 0 + primary-for QSocketNotifier (0xb4410474) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb41c1508) 0 + +Class QTimer::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QTimer::QPrivateSignal (0xb41c1af0) 0 empty + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 (int (*)(...))QTimer::metaObject +12 (int (*)(...))QTimer::qt_metacast +16 (int (*)(...))QTimer::qt_metacall +20 (int (*)(...))QTimer::~QTimer +24 (int (*)(...))QTimer::~QTimer +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QTimer::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb44104ec) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb41c1a10) 0 + primary-for QTimer (0xb44104ec) + +Class QTranslator::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QTranslator::QPrivateSignal (0xb41dc8f8) 0 empty + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 (int (*)(...))QTranslator::metaObject +12 (int (*)(...))QTranslator::qt_metacast +16 (int (*)(...))QTranslator::qt_metacall +20 (int (*)(...))QTranslator::~QTranslator +24 (int (*)(...))QTranslator::~QTranslator +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QTranslator::translate +60 (int (*)(...))QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb4410528) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb41dc818) 0 + primary-for QTranslator (0xb4410528) + +Class QMimeType + size=4 align=4 + base size=4 base align=4 +QMimeType (0xb41e8188) 0 + +Class QMimeDatabase + size=4 align=4 + base size=4 base align=4 +QMimeDatabase (0xb41e8968) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 (int (*)(...))QFactoryInterface::~QFactoryInterface +12 (int (*)(...))QFactoryInterface::~QFactoryInterface +16 (int (*)(...))__cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb41e8d58) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Class QLibrary::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QLibrary::QPrivateSignal (0xb42071c0) 0 empty + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 (int (*)(...))QLibrary::metaObject +12 (int (*)(...))QLibrary::qt_metacast +16 (int (*)(...))QLibrary::qt_metacall +20 (int (*)(...))QLibrary::~QLibrary +24 (int (*)(...))QLibrary::~QLibrary +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb4410618) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb42070e0) 0 + primary-for QLibrary (0xb4410618) + +Class QStaticPlugin + size=8 align=4 + base size=8 base align=4 +QStaticPlugin (0xb421a850) 0 + +Class QPluginLoader::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QPluginLoader::QPrivateSignal (0xb421a968) 0 empty + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 (int (*)(...))QPluginLoader::metaObject +12 (int (*)(...))QPluginLoader::qt_metacast +16 (int (*)(...))QPluginLoader::qt_metacall +20 (int (*)(...))QPluginLoader::~QPluginLoader +24 (int (*)(...))QPluginLoader::~QPluginLoader +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb4410690) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb421a888) 0 + primary-for QPluginLoader (0xb4410690) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb4232070) 0 + +Class QAbstractState::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractState::QPrivateSignal (0xb4242508) 0 empty + +Vtable for QAbstractState +QAbstractState::_ZTV14QAbstractState: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QAbstractState) +8 (int (*)(...))QAbstractState::metaObject +12 (int (*)(...))QAbstractState::qt_metacast +16 (int (*)(...))QAbstractState::qt_metacall +20 (int (*)(...))QAbstractState::~QAbstractState +24 (int (*)(...))QAbstractState::~QAbstractState +28 (int (*)(...))QAbstractState::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual + +Class QAbstractState + size=8 align=4 + base size=8 base align=4 +QAbstractState (0xb44106cc) 0 + vptr=((& QAbstractState::_ZTV14QAbstractState) + 8u) + QObject (0xb4242428) 0 + primary-for QAbstractState (0xb44106cc) + +Class QAbstractTransition::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractTransition::QPrivateSignal (0xb4242d58) 0 empty + +Vtable for QAbstractTransition +QAbstractTransition::_ZTV19QAbstractTransition: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTransition) +8 (int (*)(...))QAbstractTransition::metaObject +12 (int (*)(...))QAbstractTransition::qt_metacast +16 (int (*)(...))QAbstractTransition::qt_metacall +20 (int (*)(...))QAbstractTransition::~QAbstractTransition +24 (int (*)(...))QAbstractTransition::~QAbstractTransition +28 (int (*)(...))QAbstractTransition::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual + +Class QAbstractTransition + size=8 align=4 + base size=8 base align=4 +QAbstractTransition (0xb4410708) 0 + vptr=((& QAbstractTransition::_ZTV19QAbstractTransition) + 8u) + QObject (0xb4242c78) 0 + primary-for QAbstractTransition (0xb4410708) + +Class QEventTransition::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QEventTransition::QPrivateSignal (0xb4257540) 0 empty + +Vtable for QEventTransition +QEventTransition::_ZTV16QEventTransition: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QEventTransition) +8 (int (*)(...))QEventTransition::metaObject +12 (int (*)(...))QEventTransition::qt_metacast +16 (int (*)(...))QEventTransition::qt_metacall +20 (int (*)(...))QEventTransition::~QEventTransition +24 (int (*)(...))QEventTransition::~QEventTransition +28 (int (*)(...))QEventTransition::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QEventTransition::eventTest +60 (int (*)(...))QEventTransition::onTransition + +Class QEventTransition + size=8 align=4 + base size=8 base align=4 +QEventTransition (0xb4410744) 0 + vptr=((& QEventTransition::_ZTV16QEventTransition) + 8u) + QAbstractTransition (0xb4410780) 0 + primary-for QEventTransition (0xb4410744) + QObject (0xb4257460) 0 + primary-for QAbstractTransition (0xb4410780) + +Class QFinalState::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QFinalState::QPrivateSignal (0xb4257b60) 0 empty + +Vtable for QFinalState +QFinalState::_ZTV11QFinalState: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFinalState) +8 (int (*)(...))QFinalState::metaObject +12 (int (*)(...))QFinalState::qt_metacast +16 (int (*)(...))QFinalState::qt_metacall +20 (int (*)(...))QFinalState::~QFinalState +24 (int (*)(...))QFinalState::~QFinalState +28 (int (*)(...))QFinalState::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QFinalState::onEntry +60 (int (*)(...))QFinalState::onExit + +Class QFinalState + size=8 align=4 + base size=8 base align=4 +QFinalState (0xb44107bc) 0 + vptr=((& QFinalState::_ZTV11QFinalState) + 8u) + QAbstractState (0xb44107f8) 0 + primary-for QFinalState (0xb44107bc) + QObject (0xb4257f50) 0 + primary-for QAbstractState (0xb44107f8) + +Class QHistoryState::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QHistoryState::QPrivateSignal (0xb4269770) 0 empty + +Vtable for QHistoryState +QHistoryState::_ZTV13QHistoryState: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QHistoryState) +8 (int (*)(...))QHistoryState::metaObject +12 (int (*)(...))QHistoryState::qt_metacast +16 (int (*)(...))QHistoryState::qt_metacall +20 (int (*)(...))QHistoryState::~QHistoryState +24 (int (*)(...))QHistoryState::~QHistoryState +28 (int (*)(...))QHistoryState::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QHistoryState::onEntry +60 (int (*)(...))QHistoryState::onExit + +Class QHistoryState + size=8 align=4 + base size=8 base align=4 +QHistoryState (0xb4410834) 0 + vptr=((& QHistoryState::_ZTV13QHistoryState) + 8u) + QAbstractState (0xb4410870) 0 + primary-for QHistoryState (0xb4410834) + QObject (0xb4269690) 0 + primary-for QAbstractState (0xb4410870) + +Class QSignalTransition::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSignalTransition::QPrivateSignal (0xb427a118) 0 empty + +Vtable for QSignalTransition +QSignalTransition::_ZTV17QSignalTransition: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QSignalTransition) +8 (int (*)(...))QSignalTransition::metaObject +12 (int (*)(...))QSignalTransition::qt_metacast +16 (int (*)(...))QSignalTransition::qt_metacall +20 (int (*)(...))QSignalTransition::~QSignalTransition +24 (int (*)(...))QSignalTransition::~QSignalTransition +28 (int (*)(...))QSignalTransition::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QSignalTransition::eventTest +60 (int (*)(...))QSignalTransition::onTransition + +Class QSignalTransition + size=8 align=4 + base size=8 base align=4 +QSignalTransition (0xb44108ac) 0 + vptr=((& QSignalTransition::_ZTV17QSignalTransition) + 8u) + QAbstractTransition (0xb44108e8) 0 + primary-for QSignalTransition (0xb44108ac) + QObject (0xb427a038) 0 + primary-for QAbstractTransition (0xb44108e8) + +Class QState::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QState::QPrivateSignal (0xb427aa80) 0 empty + +Vtable for QState +QState::_ZTV6QState: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QState) +8 (int (*)(...))QState::metaObject +12 (int (*)(...))QState::qt_metacast +16 (int (*)(...))QState::qt_metacall +20 (int (*)(...))QState::~QState +24 (int (*)(...))QState::~QState +28 (int (*)(...))QState::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QState::onEntry +60 (int (*)(...))QState::onExit + +Class QState + size=8 align=4 + base size=8 base align=4 +QState (0xb4410924) 0 + vptr=((& QState::_ZTV6QState) + 8u) + QAbstractState (0xb4410960) 0 + primary-for QState (0xb4410924) + QObject (0xb427a9a0) 0 + primary-for QAbstractState (0xb4410960) + +Class QStateMachine::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QStateMachine::QPrivateSignal (0xb4289850) 0 empty + +Vtable for QStateMachine::SignalEvent +QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN13QStateMachine11SignalEventE) +8 (int (*)(...))QStateMachine::SignalEvent::~SignalEvent +12 (int (*)(...))QStateMachine::SignalEvent::~SignalEvent + +Class QStateMachine::SignalEvent + size=24 align=4 + base size=24 base align=4 +QStateMachine::SignalEvent (0xb4410a50) 0 + vptr=((& QStateMachine::SignalEvent::_ZTVN13QStateMachine11SignalEventE) + 8u) + QEvent (0xb4289888) 0 + primary-for QStateMachine::SignalEvent (0xb4410a50) + +Vtable for QStateMachine::WrappedEvent +QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN13QStateMachine12WrappedEventE) +8 (int (*)(...))QStateMachine::WrappedEvent::~WrappedEvent +12 (int (*)(...))QStateMachine::WrappedEvent::~WrappedEvent + +Class QStateMachine::WrappedEvent + size=20 align=4 + base size=20 base align=4 +QStateMachine::WrappedEvent (0xb4410a8c) 0 + vptr=((& QStateMachine::WrappedEvent::_ZTVN13QStateMachine12WrappedEventE) + 8u) + QEvent (0xb4289b28) 0 + primary-for QStateMachine::WrappedEvent (0xb4410a8c) + +Vtable for QStateMachine +QStateMachine::_ZTV13QStateMachine: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QStateMachine) +8 (int (*)(...))QStateMachine::metaObject +12 (int (*)(...))QStateMachine::qt_metacast +16 (int (*)(...))QStateMachine::qt_metacall +20 (int (*)(...))QStateMachine::~QStateMachine +24 (int (*)(...))QStateMachine::~QStateMachine +28 (int (*)(...))QStateMachine::event +32 (int (*)(...))QStateMachine::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QStateMachine::onEntry +60 (int (*)(...))QStateMachine::onExit +64 (int (*)(...))QStateMachine::beginSelectTransitions +68 (int (*)(...))QStateMachine::endSelectTransitions +72 (int (*)(...))QStateMachine::beginMicrostep +76 (int (*)(...))QStateMachine::endMicrostep + +Class QStateMachine + size=8 align=4 + base size=8 base align=4 +QStateMachine (0xb441099c) 0 + vptr=((& QStateMachine::_ZTV13QStateMachine) + 8u) + QState (0xb44109d8) 0 + primary-for QStateMachine (0xb441099c) + QAbstractState (0xb4410a14) 0 + primary-for QState (0xb44109d8) + QObject (0xb4289770) 0 + primary-for QAbstractState (0xb4410a14) + +Vtable for QException +QException::_ZTV10QException: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QException) +8 (int (*)(...))QException::~QException +12 (int (*)(...))QException::~QException +16 (int (*)(...))std::exception::what +20 (int (*)(...))QException::raise +24 (int (*)(...))QException::clone + +Class QException + size=4 align=4 + base size=4 base align=4 +QException (0xb4410ac8) 0 nearly-empty + vptr=((& QException::_ZTV10QException) + 8u) + std::exception (0xb42a9348) 0 nearly-empty + primary-for QException (0xb4410ac8) + +Vtable for QUnhandledException +QUnhandledException::_ZTV19QUnhandledException: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QUnhandledException) +8 (int (*)(...))QUnhandledException::~QUnhandledException +12 (int (*)(...))QUnhandledException::~QUnhandledException +16 (int (*)(...))std::exception::what +20 (int (*)(...))QUnhandledException::raise +24 (int (*)(...))QUnhandledException::clone + +Class QUnhandledException + size=4 align=4 + base size=4 base align=4 +QUnhandledException (0xb4410b04) 0 nearly-empty + vptr=((& QUnhandledException::_ZTV19QUnhandledException) + 8u) + QException (0xb4410b40) 0 nearly-empty + primary-for QUnhandledException (0xb4410b04) + std::exception (0xb42a9460) 0 nearly-empty + primary-for QException (0xb4410b40) + +Class QtPrivate::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtPrivate::ExceptionHolder (0xb42a9578) 0 + +Class QtPrivate::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtPrivate::ExceptionStore (0xb42a97a8) 0 + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 (int (*)(...))__cxa_pure_virtual +12 (int (*)(...))QRunnable::~QRunnable +16 (int (*)(...))QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb42a97e0) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Class QBasicMutex + size=4 align=4 + base size=4 base align=4 +QBasicMutex (0xb42a9e38) 0 + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb4410bf4) 0 + QBasicMutex (0xb40c6690) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb40c6ab8) 0 + +Class QtPrivate::ResultItem + size=8 align=4 + base size=8 base align=4 +QtPrivate::ResultItem (0xb40ceb60) 0 + +Class QtPrivate::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtPrivate::ResultIteratorBase (0xb40d6578) 0 + +Vtable for QtPrivate::ResultStoreBase +QtPrivate::ResultStoreBase::_ZTVN9QtPrivate15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN9QtPrivate15ResultStoreBaseE) +8 (int (*)(...))QtPrivate::ResultStoreBase::~ResultStoreBase +12 (int (*)(...))QtPrivate::ResultStoreBase::~ResultStoreBase + +Class QtPrivate::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtPrivate::ResultStoreBase (0xb40d6ab8) 0 + vptr=((& QtPrivate::ResultStoreBase::_ZTVN9QtPrivate15ResultStoreBaseE) + 8u) + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 (int (*)(...))QFutureInterfaceBase::~QFutureInterfaceBase +12 (int (*)(...))QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb40fe188) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Class QFutureWatcherBase::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QFutureWatcherBase::QPrivateSignal (0xb415bb60) 0 empty + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 (int (*)(...))QFutureWatcherBase::metaObject +12 (int (*)(...))QFutureWatcherBase::qt_metacast +16 (int (*)(...))QFutureWatcherBase::qt_metacall +20 (int (*)(...))QFutureWatcherBase::~QFutureWatcherBase +24 (int (*)(...))QFutureWatcherBase::~QFutureWatcherBase +28 (int (*)(...))QFutureWatcherBase::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QFutureWatcherBase::connectNotify +52 (int (*)(...))QFutureWatcherBase::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb4410dd4) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb415ba80) 0 + primary-for QFutureWatcherBase (0xb4410dd4) + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb4181000) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb4181380) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb41895b0) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb41907e0) 0 + +Class QThread::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QThread::QPrivateSignal (0xb4190b60) 0 empty + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 (int (*)(...))QThread::metaObject +12 (int (*)(...))QThread::qt_metacast +16 (int (*)(...))QThread::qt_metacall +20 (int (*)(...))QThread::~QThread +24 (int (*)(...))QThread::~QThread +28 (int (*)(...))QThread::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb4410f78) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb4190a80) 0 + primary-for QThread (0xb4410f78) + +Class QThreadPool::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QThreadPool::QPrivateSignal (0xb41a3428) 0 empty + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 (int (*)(...))QThreadPool::metaObject +12 (int (*)(...))QThreadPool::qt_metacast +16 (int (*)(...))QThreadPool::qt_metacall +20 (int (*)(...))QThreadPool::~QThreadPool +24 (int (*)(...))QThreadPool::~QThreadPool +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb41a5000) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb41a3348) 0 + primary-for QThreadPool (0xb41a5000) + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb41a39d8) 0 + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb41a3e00) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb3fb9d90) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb40088f8) 0 + +Class QByteArrayMatcher::Data + size=264 align=4 + base size=264 base align=4 +QByteArrayMatcher::Data (0xb4011968) 0 + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb4011658) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb4029230) 0 + +Class QElapsedTimer + size=16 align=4 + base size=16 base align=4 +QElapsedTimer (0xb4029578) 0 + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb4029af0) 0 + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb405d498) 0 + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb4078230) 0 + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb40943b8) 0 + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb3eb58c0) 0 + +Class QMargins + size=16 align=4 + base size=16 base align=4 +QMargins (0xb3f037a8) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb3f20cb0) 0 + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb3f47770) 0 + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb3f6a3b8) 0 + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb3fa79a0) 0 + +Class QRegularExpression + size=4 align=4 + base size=4 base align=4 +QRegularExpression (0xb3deba10) 0 + +Class QRegularExpressionMatch + size=4 align=4 + base size=4 base align=4 +QRegularExpressionMatch (0xb3e32508) 0 + +Class QRegularExpressionMatchIterator + size=4 align=4 + base size=4 base align=4 +QRegularExpressionMatchIterator (0xb3e32c08) 0 + +Class QAbstractConcatenable + size=1 align=1 + base size=0 base align=1 +QAbstractConcatenable (0xb3e515b0) 0 empty + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb3ea10a8) 0 + +Class QTimeLine::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QTimeLine::QPrivateSignal (0xb3cbc850) 0 empty + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 (int (*)(...))QTimeLine::metaObject +12 (int (*)(...))QTimeLine::qt_metacast +16 (int (*)(...))QTimeLine::qt_metacall +20 (int (*)(...))QTimeLine::~QTimeLine +24 (int (*)(...))QTimeLine::~QTimeLine +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QTimeLine::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb41a58e8) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb3cbc770) 0 + primary-for QTimeLine (0xb41a58e8) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb3cd0310) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb3cdd268) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb41a5960) 0 + QVector (0xb3ce6540) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb3ce6888) 0 + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb3d121c0) 0 + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb3d12c08) 0 + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 (int (*)(...))QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 (int (*)(...))QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 (int (*)(...))QXmlStreamEntityResolver::resolveEntity +20 (int (*)(...))QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb3d228c0) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb3d22968) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb3d46f50) 0 + +Class QNetworkRequest + size=4 align=4 + base size=4 base align=4 +QNetworkRequest (0xb3d575e8) 0 + +Class QNetworkCacheMetaData + size=4 align=4 + base size=4 base align=4 +QNetworkCacheMetaData (0xb3d801c0) 0 + +Class QAbstractNetworkCache::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractNetworkCache::QPrivateSignal (0xb3d80ee0) 0 empty + +Vtable for QAbstractNetworkCache +QAbstractNetworkCache::_ZTV21QAbstractNetworkCache: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAbstractNetworkCache) +8 (int (*)(...))QAbstractNetworkCache::metaObject +12 (int (*)(...))QAbstractNetworkCache::qt_metacast +16 (int (*)(...))QAbstractNetworkCache::qt_metacall +20 (int (*)(...))QAbstractNetworkCache::~QAbstractNetworkCache +24 (int (*)(...))QAbstractNetworkCache::~QAbstractNetworkCache +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))__cxa_pure_virtual +64 (int (*)(...))__cxa_pure_virtual +68 (int (*)(...))__cxa_pure_virtual +72 (int (*)(...))__cxa_pure_virtual +76 (int (*)(...))__cxa_pure_virtual +80 (int (*)(...))__cxa_pure_virtual +84 (int (*)(...))__cxa_pure_virtual + +Class QAbstractNetworkCache + size=8 align=4 + base size=8 base align=4 +QAbstractNetworkCache (0xb41a59d8) 0 + vptr=((& QAbstractNetworkCache::_ZTV21QAbstractNetworkCache) + 8u) + QObject (0xb3d80e00) 0 + primary-for QAbstractNetworkCache (0xb41a59d8) + +Class QHttpPart + size=4 align=4 + base size=4 base align=4 +QHttpPart (0xb3d9a658) 0 + +Class QHttpMultiPart::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QHttpMultiPart::QPrivateSignal (0xb3d9af18) 0 empty + +Vtable for QHttpMultiPart +QHttpMultiPart::_ZTV14QHttpMultiPart: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QHttpMultiPart) +8 (int (*)(...))QHttpMultiPart::metaObject +12 (int (*)(...))QHttpMultiPart::qt_metacast +16 (int (*)(...))QHttpMultiPart::qt_metacall +20 (int (*)(...))QHttpMultiPart::~QHttpMultiPart +24 (int (*)(...))QHttpMultiPart::~QHttpMultiPart +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QHttpMultiPart + size=8 align=4 + base size=8 base align=4 +QHttpMultiPart (0xb41a5a14) 0 + vptr=((& QHttpMultiPart::_ZTV14QHttpMultiPart) + 8u) + QObject (0xb3d9ae38) 0 + primary-for QHttpMultiPart (0xb41a5a14) + +Class QNetworkAccessManager::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QNetworkAccessManager::QPrivateSignal (0xb3bb57e0) 0 empty + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QNetworkAccessManager) +8 (int (*)(...))QNetworkAccessManager::metaObject +12 (int (*)(...))QNetworkAccessManager::qt_metacast +16 (int (*)(...))QNetworkAccessManager::qt_metacall +20 (int (*)(...))QNetworkAccessManager::~QNetworkAccessManager +24 (int (*)(...))QNetworkAccessManager::~QNetworkAccessManager +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=8 align=4 + base size=8 base align=4 +QNetworkAccessManager (0xb41a5a50) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 8u) + QObject (0xb3bb5700) 0 + primary-for QNetworkAccessManager (0xb41a5a50) + +Class QNetworkCookie + size=4 align=4 + base size=4 base align=4 +QNetworkCookie (0xb3bb5ee0) 0 + +Class QNetworkCookieJar::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QNetworkCookieJar::QPrivateSignal (0xb3bcecb0) 0 empty + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QNetworkCookieJar) +8 (int (*)(...))QNetworkCookieJar::metaObject +12 (int (*)(...))QNetworkCookieJar::qt_metacast +16 (int (*)(...))QNetworkCookieJar::qt_metacall +20 (int (*)(...))QNetworkCookieJar::~QNetworkCookieJar +24 (int (*)(...))QNetworkCookieJar::~QNetworkCookieJar +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QNetworkCookieJar::cookiesForUrl +60 (int (*)(...))QNetworkCookieJar::setCookiesFromUrl +64 (int (*)(...))QNetworkCookieJar::insertCookie +68 (int (*)(...))QNetworkCookieJar::updateCookie +72 (int (*)(...))QNetworkCookieJar::deleteCookie +76 (int (*)(...))QNetworkCookieJar::validateCookie + +Class QNetworkCookieJar + size=8 align=4 + base size=8 base align=4 +QNetworkCookieJar (0xb41a5a8c) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 8u) + QObject (0xb3bcebd0) 0 + primary-for QNetworkCookieJar (0xb41a5a8c) + +Class QNetworkDiskCache::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QNetworkDiskCache::QPrivateSignal (0xb3bed460) 0 empty + +Vtable for QNetworkDiskCache +QNetworkDiskCache::_ZTV17QNetworkDiskCache: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QNetworkDiskCache) +8 (int (*)(...))QNetworkDiskCache::metaObject +12 (int (*)(...))QNetworkDiskCache::qt_metacast +16 (int (*)(...))QNetworkDiskCache::qt_metacall +20 (int (*)(...))QNetworkDiskCache::~QNetworkDiskCache +24 (int (*)(...))QNetworkDiskCache::~QNetworkDiskCache +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QNetworkDiskCache::metaData +60 (int (*)(...))QNetworkDiskCache::updateMetaData +64 (int (*)(...))QNetworkDiskCache::data +68 (int (*)(...))QNetworkDiskCache::remove +72 (int (*)(...))QNetworkDiskCache::cacheSize +76 (int (*)(...))QNetworkDiskCache::prepare +80 (int (*)(...))QNetworkDiskCache::insert +84 (int (*)(...))QNetworkDiskCache::clear +88 (int (*)(...))QNetworkDiskCache::expire + +Class QNetworkDiskCache + size=8 align=4 + base size=8 base align=4 +QNetworkDiskCache (0xb41a5ac8) 0 + vptr=((& QNetworkDiskCache::_ZTV17QNetworkDiskCache) + 8u) + QAbstractNetworkCache (0xb41a5b04) 0 + primary-for QNetworkDiskCache (0xb41a5ac8) + QObject (0xb3bed380) 0 + primary-for QAbstractNetworkCache (0xb41a5b04) + +Class QNetworkReply::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QNetworkReply::QPrivateSignal (0xb3bedc78) 0 empty + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QNetworkReply) +8 (int (*)(...))QNetworkReply::metaObject +12 (int (*)(...))QNetworkReply::qt_metacast +16 (int (*)(...))QNetworkReply::qt_metacall +20 (int (*)(...))QNetworkReply::~QNetworkReply +24 (int (*)(...))QNetworkReply::~QNetworkReply +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QNetworkReply::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QNetworkReply::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QIODevice::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QIODevice::bytesAvailable +92 (int (*)(...))QIODevice::bytesToWrite +96 (int (*)(...))QIODevice::canReadLine +100 (int (*)(...))QIODevice::waitForReadyRead +104 (int (*)(...))QIODevice::waitForBytesWritten +108 (int (*)(...))__cxa_pure_virtual +112 (int (*)(...))QIODevice::readLineData +116 (int (*)(...))QNetworkReply::writeData +120 (int (*)(...))QNetworkReply::setReadBufferSize +124 (int (*)(...))__cxa_pure_virtual +128 (int (*)(...))QNetworkReply::ignoreSslErrors +132 (int (*)(...))QNetworkReply::sslConfigurationImplementation +136 (int (*)(...))QNetworkReply::setSslConfigurationImplementation +140 (int (*)(...))QNetworkReply::ignoreSslErrorsImplementation + +Class QNetworkReply + size=8 align=4 + base size=8 base align=4 +QNetworkReply (0xb41a5b40) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 8u) + QIODevice (0xb41a5b7c) 0 + primary-for QNetworkReply (0xb41a5b40) + QObject (0xb3bedb98) 0 + primary-for QIODevice (0xb41a5b7c) + +Class QNetworkConfiguration + size=4 align=4 + base size=4 base align=4 +QNetworkConfiguration (0xb3c05a10) 0 + +Class QNetworkConfigurationManager::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QNetworkConfigurationManager::QPrivateSignal (0xb3c19af0) 0 empty + +Vtable for QNetworkConfigurationManager +QNetworkConfigurationManager::_ZTV28QNetworkConfigurationManager: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI28QNetworkConfigurationManager) +8 (int (*)(...))QNetworkConfigurationManager::metaObject +12 (int (*)(...))QNetworkConfigurationManager::qt_metacast +16 (int (*)(...))QNetworkConfigurationManager::qt_metacall +20 (int (*)(...))QNetworkConfigurationManager::~QNetworkConfigurationManager +24 (int (*)(...))QNetworkConfigurationManager::~QNetworkConfigurationManager +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QNetworkConfigurationManager + size=8 align=4 + base size=8 base align=4 +QNetworkConfigurationManager (0xb41a5bf4) 0 + vptr=((& QNetworkConfigurationManager::_ZTV28QNetworkConfigurationManager) + 8u) + QObject (0xb3c19a10) 0 + primary-for QNetworkConfigurationManager (0xb41a5bf4) + +Class QAbstractSocket::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QAbstractSocket::QPrivateSignal (0xb3c562a0) 0 empty + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 41u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSocket) +8 (int (*)(...))QAbstractSocket::metaObject +12 (int (*)(...))QAbstractSocket::qt_metacast +16 (int (*)(...))QAbstractSocket::qt_metacall +20 (int (*)(...))QAbstractSocket::~QAbstractSocket +24 (int (*)(...))QAbstractSocket::~QAbstractSocket +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAbstractSocket::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QAbstractSocket::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QAbstractSocket::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QAbstractSocket::bytesAvailable +92 (int (*)(...))QAbstractSocket::bytesToWrite +96 (int (*)(...))QAbstractSocket::canReadLine +100 (int (*)(...))QAbstractSocket::waitForReadyRead +104 (int (*)(...))QAbstractSocket::waitForBytesWritten +108 (int (*)(...))QAbstractSocket::readData +112 (int (*)(...))QAbstractSocket::readLineData +116 (int (*)(...))QAbstractSocket::writeData +120 (int (*)(...))QAbstractSocket::resume +124 (int (*)(...))QAbstractSocket::connectToHost +128 (int (*)(...))QAbstractSocket::connectToHost +132 (int (*)(...))QAbstractSocket::disconnectFromHost +136 (int (*)(...))QAbstractSocket::setReadBufferSize +140 (int (*)(...))QAbstractSocket::socketDescriptor +144 (int (*)(...))QAbstractSocket::setSocketDescriptor +148 (int (*)(...))QAbstractSocket::setSocketOption +152 (int (*)(...))QAbstractSocket::socketOption +156 (int (*)(...))QAbstractSocket::waitForConnected +160 (int (*)(...))QAbstractSocket::waitForDisconnected + +Class QAbstractSocket + size=8 align=4 + base size=8 base align=4 +QAbstractSocket (0xb41a5ce4) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 8u) + QIODevice (0xb41a5d20) 0 + primary-for QAbstractSocket (0xb41a5ce4) + QObject (0xb3c561c0) 0 + primary-for QIODevice (0xb41a5d20) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0xb3c98c78) 0 + +Class QHostAddress + size=4 align=4 + base size=4 base align=4 +QHostAddress (0xb3c98ea8) 0 + +Class QNetworkAddressEntry + size=4 align=4 + base size=4 base align=4 +QNetworkAddressEntry (0xb3ab1ce8) 0 + +Class QNetworkInterface + size=4 align=4 + base size=4 base align=4 +QNetworkInterface (0xb3ac2460) 0 + +Class QNetworkSession::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QNetworkSession::QPrivateSignal (0xb3ae4e38) 0 empty + +Vtable for QNetworkSession +QNetworkSession::_ZTV15QNetworkSession: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QNetworkSession) +8 (int (*)(...))QNetworkSession::metaObject +12 (int (*)(...))QNetworkSession::qt_metacast +16 (int (*)(...))QNetworkSession::qt_metacall +20 (int (*)(...))QNetworkSession::~QNetworkSession +24 (int (*)(...))QNetworkSession::~QNetworkSession +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QNetworkSession::connectNotify +52 (int (*)(...))QNetworkSession::disconnectNotify + +Class QNetworkSession + size=12 align=4 + base size=12 base align=4 +QNetworkSession (0xb41a5e10) 0 + vptr=((& QNetworkSession::_ZTV15QNetworkSession) + 8u) + QObject (0xb3ae4d58) 0 + primary-for QNetworkSession (0xb41a5e10) + +Class QAuthenticator + size=4 align=4 + base size=4 base align=4 +QAuthenticator (0xb3b11690) 0 + +Class QDnsDomainNameRecord + size=4 align=4 + base size=4 base align=4 +QDnsDomainNameRecord (0xb3b11ab8) 0 + +Class QDnsHostAddressRecord + size=4 align=4 + base size=4 base align=4 +QDnsHostAddressRecord (0xb3b35070) 0 + +Class QDnsMailExchangeRecord + size=4 align=4 + base size=4 base align=4 +QDnsMailExchangeRecord (0xb3b35690) 0 + +Class QDnsServiceRecord + size=4 align=4 + base size=4 base align=4 +QDnsServiceRecord (0xb3b35cb0) 0 + +Class QDnsTextRecord + size=4 align=4 + base size=4 base align=4 +QDnsTextRecord (0xb3b5c230) 0 + +Class QDnsLookup::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QDnsLookup::QPrivateSignal (0xb3b5c930) 0 empty + +Vtable for QDnsLookup +QDnsLookup::_ZTV10QDnsLookup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QDnsLookup) +8 (int (*)(...))QDnsLookup::metaObject +12 (int (*)(...))QDnsLookup::qt_metacast +16 (int (*)(...))QDnsLookup::qt_metacall +20 (int (*)(...))QDnsLookup::~QDnsLookup +24 (int (*)(...))QDnsLookup::~QDnsLookup +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QDnsLookup + size=8 align=4 + base size=8 base align=4 +QDnsLookup (0xb41a5e88) 0 + vptr=((& QDnsLookup::_ZTV10QDnsLookup) + 8u) + QObject (0xb3b5c850) 0 + primary-for QDnsLookup (0xb41a5e88) + +Class QHostInfo + size=4 align=4 + base size=4 base align=4 +QHostInfo (0xb3b810e0) 0 + +Class QNetworkProxyQuery + size=4 align=4 + base size=4 base align=4 +QNetworkProxyQuery (0xb3b817a8) 0 + +Class QNetworkProxy + size=4 align=4 + base size=4 base align=4 +QNetworkProxy (0xb3b9c5b0) 0 + +Vtable for QNetworkProxyFactory +QNetworkProxyFactory::_ZTV20QNetworkProxyFactory: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QNetworkProxyFactory) +8 (int (*)(...))QNetworkProxyFactory::~QNetworkProxyFactory +12 (int (*)(...))QNetworkProxyFactory::~QNetworkProxyFactory +16 (int (*)(...))__cxa_pure_virtual + +Class QNetworkProxyFactory + size=4 align=4 + base size=4 base align=4 +QNetworkProxyFactory (0xb39ce230) 0 nearly-empty + vptr=((& QNetworkProxyFactory::_ZTV20QNetworkProxyFactory) + 8u) + +Class QLocalServer::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QLocalServer::QPrivateSignal (0xb39ce6c8) 0 empty + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalServer) +8 (int (*)(...))QLocalServer::metaObject +12 (int (*)(...))QLocalServer::qt_metacast +16 (int (*)(...))QLocalServer::qt_metacall +20 (int (*)(...))QLocalServer::~QLocalServer +24 (int (*)(...))QLocalServer::~QLocalServer +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QLocalServer::hasPendingConnections +60 (int (*)(...))QLocalServer::nextPendingConnection +64 (int (*)(...))QLocalServer::incomingConnection + +Class QLocalServer + size=8 align=4 + base size=8 base align=4 +QLocalServer (0xb41a5f00) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 8u) + QObject (0xb39ce5e8) 0 + primary-for QLocalServer (0xb41a5f00) + +Class QLocalSocket::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QLocalSocket::QPrivateSignal (0xb39ecee0) 0 empty + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalSocket) +8 (int (*)(...))QLocalSocket::metaObject +12 (int (*)(...))QLocalSocket::qt_metacast +16 (int (*)(...))QLocalSocket::qt_metacall +20 (int (*)(...))QLocalSocket::~QLocalSocket +24 (int (*)(...))QLocalSocket::~QLocalSocket +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QLocalSocket::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QLocalSocket::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QIODevice::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QLocalSocket::bytesAvailable +92 (int (*)(...))QLocalSocket::bytesToWrite +96 (int (*)(...))QLocalSocket::canReadLine +100 (int (*)(...))QLocalSocket::waitForReadyRead +104 (int (*)(...))QLocalSocket::waitForBytesWritten +108 (int (*)(...))QLocalSocket::readData +112 (int (*)(...))QIODevice::readLineData +116 (int (*)(...))QLocalSocket::writeData + +Class QLocalSocket + size=8 align=4 + base size=8 base align=4 +QLocalSocket (0xb41a5f78) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 8u) + QIODevice (0xb41a5fb4) 0 + primary-for QLocalSocket (0xb41a5f78) + QObject (0xb39ece00) 0 + primary-for QIODevice (0xb41a5fb4) + +Class QTcpServer::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QTcpServer::QPrivateSignal (0xb3a13310) 0 empty + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpServer) +8 (int (*)(...))QTcpServer::metaObject +12 (int (*)(...))QTcpServer::qt_metacast +16 (int (*)(...))QTcpServer::qt_metacall +20 (int (*)(...))QTcpServer::~QTcpServer +24 (int (*)(...))QTcpServer::~QTcpServer +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QTcpServer::hasPendingConnections +60 (int (*)(...))QTcpServer::nextPendingConnection +64 (int (*)(...))QTcpServer::incomingConnection + +Class QTcpServer + size=8 align=4 + base size=8 base align=4 +QTcpServer (0xb3a17000) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 8u) + QObject (0xb3a13230) 0 + primary-for QTcpServer (0xb3a17000) + +Class QTcpSocket::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QTcpSocket::QPrivateSignal (0xb3a13c40) 0 empty + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 41u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpSocket) +8 (int (*)(...))QTcpSocket::metaObject +12 (int (*)(...))QTcpSocket::qt_metacast +16 (int (*)(...))QTcpSocket::qt_metacall +20 (int (*)(...))QTcpSocket::~QTcpSocket +24 (int (*)(...))QTcpSocket::~QTcpSocket +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAbstractSocket::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QAbstractSocket::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QAbstractSocket::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QAbstractSocket::bytesAvailable +92 (int (*)(...))QAbstractSocket::bytesToWrite +96 (int (*)(...))QAbstractSocket::canReadLine +100 (int (*)(...))QAbstractSocket::waitForReadyRead +104 (int (*)(...))QAbstractSocket::waitForBytesWritten +108 (int (*)(...))QAbstractSocket::readData +112 (int (*)(...))QAbstractSocket::readLineData +116 (int (*)(...))QAbstractSocket::writeData +120 (int (*)(...))QAbstractSocket::resume +124 (int (*)(...))QAbstractSocket::connectToHost +128 (int (*)(...))QAbstractSocket::connectToHost +132 (int (*)(...))QAbstractSocket::disconnectFromHost +136 (int (*)(...))QAbstractSocket::setReadBufferSize +140 (int (*)(...))QAbstractSocket::socketDescriptor +144 (int (*)(...))QAbstractSocket::setSocketDescriptor +148 (int (*)(...))QAbstractSocket::setSocketOption +152 (int (*)(...))QAbstractSocket::socketOption +156 (int (*)(...))QAbstractSocket::waitForConnected +160 (int (*)(...))QAbstractSocket::waitForDisconnected + +Class QTcpSocket + size=8 align=4 + base size=8 base align=4 +QTcpSocket (0xb3a1703c) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 8u) + QAbstractSocket (0xb3a17078) 0 + primary-for QTcpSocket (0xb3a1703c) + QIODevice (0xb3a170b4) 0 + primary-for QAbstractSocket (0xb3a17078) + QObject (0xb3a13b60) 0 + primary-for QIODevice (0xb3a170b4) + +Class QUdpSocket::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QUdpSocket::QPrivateSignal (0xb3a2b460) 0 empty + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 41u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUdpSocket) +8 (int (*)(...))QUdpSocket::metaObject +12 (int (*)(...))QUdpSocket::qt_metacast +16 (int (*)(...))QUdpSocket::qt_metacall +20 (int (*)(...))QUdpSocket::~QUdpSocket +24 (int (*)(...))QUdpSocket::~QUdpSocket +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAbstractSocket::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QAbstractSocket::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QAbstractSocket::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QAbstractSocket::bytesAvailable +92 (int (*)(...))QAbstractSocket::bytesToWrite +96 (int (*)(...))QAbstractSocket::canReadLine +100 (int (*)(...))QAbstractSocket::waitForReadyRead +104 (int (*)(...))QAbstractSocket::waitForBytesWritten +108 (int (*)(...))QAbstractSocket::readData +112 (int (*)(...))QAbstractSocket::readLineData +116 (int (*)(...))QAbstractSocket::writeData +120 (int (*)(...))QAbstractSocket::resume +124 (int (*)(...))QAbstractSocket::connectToHost +128 (int (*)(...))QAbstractSocket::connectToHost +132 (int (*)(...))QAbstractSocket::disconnectFromHost +136 (int (*)(...))QAbstractSocket::setReadBufferSize +140 (int (*)(...))QAbstractSocket::socketDescriptor +144 (int (*)(...))QAbstractSocket::setSocketDescriptor +148 (int (*)(...))QAbstractSocket::setSocketOption +152 (int (*)(...))QAbstractSocket::socketOption +156 (int (*)(...))QAbstractSocket::waitForConnected +160 (int (*)(...))QAbstractSocket::waitForDisconnected + +Class QUdpSocket + size=8 align=4 + base size=8 base align=4 +QUdpSocket (0xb3a170f0) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 8u) + QAbstractSocket (0xb3a1712c) 0 + primary-for QUdpSocket (0xb3a170f0) + QIODevice (0xb3a17168) 0 + primary-for QAbstractSocket (0xb3a1712c) + QObject (0xb3a2b380) 0 + primary-for QIODevice (0xb3a17168) + +Class QSslCertificate + size=4 align=4 + base size=4 base align=4 +QSslCertificate (0xb3a44658) 0 + +Class QSslCertificateExtension + size=4 align=4 + base size=4 base align=4 +QSslCertificateExtension (0xb3a5cab8) 0 + +Class QSslCipher + size=4 align=4 + base size=4 base align=4 +QSslCipher (0xb3a82070) 0 + +Class QSslError + size=4 align=4 + base size=4 base align=4 +QSslError (0xb3a828c0) 0 + +Class QSslSocket::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QSslSocket::QPrivateSignal (0xb3a9f3f0) 0 empty + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 41u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSslSocket) +8 (int (*)(...))QSslSocket::metaObject +12 (int (*)(...))QSslSocket::qt_metacast +16 (int (*)(...))QSslSocket::qt_metacall +20 (int (*)(...))QSslSocket::~QSslSocket +24 (int (*)(...))QSslSocket::~QSslSocket +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QAbstractSocket::isSequential +60 (int (*)(...))QIODevice::open +64 (int (*)(...))QSslSocket::close +68 (int (*)(...))QIODevice::pos +72 (int (*)(...))QIODevice::size +76 (int (*)(...))QIODevice::seek +80 (int (*)(...))QSslSocket::atEnd +84 (int (*)(...))QIODevice::reset +88 (int (*)(...))QSslSocket::bytesAvailable +92 (int (*)(...))QSslSocket::bytesToWrite +96 (int (*)(...))QSslSocket::canReadLine +100 (int (*)(...))QSslSocket::waitForReadyRead +104 (int (*)(...))QSslSocket::waitForBytesWritten +108 (int (*)(...))QSslSocket::readData +112 (int (*)(...))QAbstractSocket::readLineData +116 (int (*)(...))QSslSocket::writeData +120 (int (*)(...))QSslSocket::resume +124 (int (*)(...))QSslSocket::connectToHost +128 (int (*)(...))QAbstractSocket::connectToHost +132 (int (*)(...))QSslSocket::disconnectFromHost +136 (int (*)(...))QSslSocket::setReadBufferSize +140 (int (*)(...))QAbstractSocket::socketDescriptor +144 (int (*)(...))QSslSocket::setSocketDescriptor +148 (int (*)(...))QSslSocket::setSocketOption +152 (int (*)(...))QSslSocket::socketOption +156 (int (*)(...))QSslSocket::waitForConnected +160 (int (*)(...))QSslSocket::waitForDisconnected + +Class QSslSocket + size=8 align=4 + base size=8 base align=4 +QSslSocket (0xb3a171e0) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 8u) + QTcpSocket (0xb3a1721c) 0 + primary-for QSslSocket (0xb3a171e0) + QAbstractSocket (0xb3a17258) 0 + primary-for QTcpSocket (0xb3a1721c) + QIODevice (0xb3a17294) 0 + primary-for QAbstractSocket (0xb3a17258) + QObject (0xb3a9f310) 0 + primary-for QIODevice (0xb3a17294) + +Class QSslConfiguration + size=4 align=4 + base size=4 base align=4 +QSslConfiguration (0xb38bfab8) 0 + +Class QSslKey + size=4 align=4 + base size=4 base align=4 +QSslKey (0xb38e0690) 0 + +Class QQmlDebuggingEnabler + size=1 align=1 + base size=0 base align=1 +QQmlDebuggingEnabler (0xb38e0fc0) 0 empty + +Class QQmlPrivate::RegisterType + size=80 align=4 + base size=80 base align=4 +QQmlPrivate::RegisterType (0xb390d508) 0 + +Class QQmlPrivate::RegisterInterface + size=16 align=4 + base size=16 base align=4 +QQmlPrivate::RegisterInterface (0xb390d540) 0 + +Class QQmlPrivate::RegisterAutoParent + size=8 align=4 + base size=8 base align=4 +QQmlPrivate::RegisterAutoParent (0xb390d578) 0 + +Class QQmlPrivate::RegisterSingletonType + size=40 align=4 + base size=40 base align=4 +QQmlPrivate::RegisterSingletonType (0xb390d5b0) 0 + +Vtable for QQmlParserStatus +QQmlParserStatus::_ZTV16QQmlParserStatus: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QQmlParserStatus) +8 (int (*)(...))QQmlParserStatus::~QQmlParserStatus +12 (int (*)(...))QQmlParserStatus::~QQmlParserStatus +16 (int (*)(...))__cxa_pure_virtual +20 (int (*)(...))__cxa_pure_virtual + +Class QQmlParserStatus + size=8 align=4 + base size=8 base align=4 +QQmlParserStatus (0xb390d5e8) 0 + vptr=((& QQmlParserStatus::_ZTV16QQmlParserStatus) + 8u) + +Vtable for QQmlPropertyValueSource +QQmlPropertyValueSource::_ZTV23QQmlPropertyValueSource: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QQmlPropertyValueSource) +8 (int (*)(...))QQmlPropertyValueSource::~QQmlPropertyValueSource +12 (int (*)(...))QQmlPropertyValueSource::~QQmlPropertyValueSource +16 (int (*)(...))__cxa_pure_virtual + +Class QQmlPropertyValueSource + size=4 align=4 + base size=4 base align=4 +QQmlPropertyValueSource (0xb390d9a0) 0 nearly-empty + vptr=((& QQmlPropertyValueSource::_ZTV23QQmlPropertyValueSource) + 8u) + +Class QQmlListReference + size=4 align=4 + base size=4 base align=4 +QQmlListReference (0xb390de70) 0 + +Class QQmlError + size=4 align=4 + base size=4 base align=4 +QQmlError (0xb392ee38) 0 + +Class QJSValue + size=4 align=4 + base size=4 base align=4 +QJSValue (0xb398f0e0) 0 + +Class QQmlComponent::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QQmlComponent::QPrivateSignal (0xb37bd3f0) 0 empty + +Vtable for QQmlComponent +QQmlComponent::_ZTV13QQmlComponent: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QQmlComponent) +8 (int (*)(...))QQmlComponent::metaObject +12 (int (*)(...))QQmlComponent::qt_metacast +16 (int (*)(...))QQmlComponent::qt_metacall +20 (int (*)(...))QQmlComponent::~QQmlComponent +24 (int (*)(...))QQmlComponent::~QQmlComponent +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QQmlComponent::create +60 (int (*)(...))QQmlComponent::beginCreate +64 (int (*)(...))QQmlComponent::completeCreate + +Class QQmlComponent + size=8 align=4 + base size=8 base align=4 +QQmlComponent (0xb3a173fc) 0 + vptr=((& QQmlComponent::_ZTV13QQmlComponent) + 8u) + QObject (0xb37bd310) 0 + primary-for QQmlComponent (0xb3a173fc) + +Class QQmlContext::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QQmlContext::QPrivateSignal (0xb37d5c40) 0 empty + +Vtable for QQmlContext +QQmlContext::_ZTV11QQmlContext: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QQmlContext) +8 (int (*)(...))QQmlContext::metaObject +12 (int (*)(...))QQmlContext::qt_metacast +16 (int (*)(...))QQmlContext::qt_metacall +20 (int (*)(...))QQmlContext::~QQmlContext +24 (int (*)(...))QQmlContext::~QQmlContext +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QQmlContext + size=8 align=4 + base size=8 base align=4 +QQmlContext (0xb3a17474) 0 + vptr=((& QQmlContext::_ZTV11QQmlContext) + 8u) + QObject (0xb37d5b60) 0 + primary-for QQmlContext (0xb3a17474) + +Class QJSEngine::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QJSEngine::QPrivateSignal (0xb37f39d8) 0 empty + +Vtable for QJSEngine +QJSEngine::_ZTV9QJSEngine: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QJSEngine) +8 (int (*)(...))QJSEngine::metaObject +12 (int (*)(...))QJSEngine::qt_metacast +16 (int (*)(...))QJSEngine::qt_metacall +20 (int (*)(...))QJSEngine::~QJSEngine +24 (int (*)(...))QJSEngine::~QJSEngine +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QJSEngine + size=12 align=4 + base size=12 base align=4 +QJSEngine (0xb3a174b0) 0 + vptr=((& QJSEngine::_ZTV9QJSEngine) + 8u) + QObject (0xb37f38f8) 0 + primary-for QJSEngine (0xb3a174b0) + +Vtable for QQmlImageProviderBase +QQmlImageProviderBase::_ZTV21QQmlImageProviderBase: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QQmlImageProviderBase) +8 (int (*)(...))QQmlImageProviderBase::~QQmlImageProviderBase +12 (int (*)(...))QQmlImageProviderBase::~QQmlImageProviderBase +16 (int (*)(...))__cxa_pure_virtual +20 (int (*)(...))__cxa_pure_virtual + +Class QQmlImageProviderBase + size=4 align=4 + base size=4 base align=4 +QQmlImageProviderBase (0xb380b428) 0 nearly-empty + vptr=((& QQmlImageProviderBase::_ZTV21QQmlImageProviderBase) + 8u) + +Class QQmlEngine::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QQmlEngine::QPrivateSignal (0xb38245e8) 0 empty + +Vtable for QQmlEngine +QQmlEngine::_ZTV10QQmlEngine: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QQmlEngine) +8 (int (*)(...))QQmlEngine::metaObject +12 (int (*)(...))QQmlEngine::qt_metacast +16 (int (*)(...))QQmlEngine::qt_metacall +20 (int (*)(...))QQmlEngine::~QQmlEngine +24 (int (*)(...))QQmlEngine::~QQmlEngine +28 (int (*)(...))QQmlEngine::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QQmlEngine + size=12 align=4 + base size=12 base align=4 +QQmlEngine (0xb3a17528) 0 + vptr=((& QQmlEngine::_ZTV10QQmlEngine) + 8u) + QJSEngine (0xb3a17564) 0 + primary-for QQmlEngine (0xb3a17528) + QObject (0xb3824508) 0 + primary-for QJSEngine (0xb3a17564) + +Class QQmlScriptString + size=4 align=4 + base size=4 base align=4 +QQmlScriptString (0xb3824f50) 0 + +Class QQmlExpression::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QQmlExpression::QPrivateSignal (0xb383c5b0) 0 empty + +Vtable for QQmlExpression +QQmlExpression::_ZTV14QQmlExpression: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QQmlExpression) +8 (int (*)(...))QQmlExpression::metaObject +12 (int (*)(...))QQmlExpression::qt_metacast +16 (int (*)(...))QQmlExpression::qt_metacall +20 (int (*)(...))QQmlExpression::~QQmlExpression +24 (int (*)(...))QQmlExpression::~QQmlExpression +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify + +Class QQmlExpression + size=8 align=4 + base size=8 base align=4 +QQmlExpression (0xb3a175a0) 0 + vptr=((& QQmlExpression::_ZTV14QQmlExpression) + 8u) + QObject (0xb383c4d0) 0 + primary-for QQmlExpression (0xb3a175a0) + +Vtable for QQmlTypesExtensionInterface +QQmlTypesExtensionInterface::_ZTV27QQmlTypesExtensionInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QQmlTypesExtensionInterface) +8 (int (*)(...))QQmlTypesExtensionInterface::~QQmlTypesExtensionInterface +12 (int (*)(...))QQmlTypesExtensionInterface::~QQmlTypesExtensionInterface +16 (int (*)(...))__cxa_pure_virtual + +Class QQmlTypesExtensionInterface + size=4 align=4 + base size=4 base align=4 +QQmlTypesExtensionInterface (0xb383cc40) 0 nearly-empty + vptr=((& QQmlTypesExtensionInterface::_ZTV27QQmlTypesExtensionInterface) + 8u) + +Vtable for QQmlExtensionInterface +QQmlExtensionInterface::_ZTV22QQmlExtensionInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QQmlExtensionInterface) +8 (int (*)(...))QQmlExtensionInterface::~QQmlExtensionInterface +12 (int (*)(...))QQmlExtensionInterface::~QQmlExtensionInterface +16 (int (*)(...))__cxa_pure_virtual +20 (int (*)(...))__cxa_pure_virtual + +Class QQmlExtensionInterface + size=4 align=4 + base size=4 base align=4 +QQmlExtensionInterface (0xb3a175dc) 0 nearly-empty + vptr=((& QQmlExtensionInterface::_ZTV22QQmlExtensionInterface) + 8u) + QQmlTypesExtensionInterface (0xb3858230) 0 nearly-empty + primary-for QQmlExtensionInterface (0xb3a175dc) + +Class QQmlExtensionPlugin::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QQmlExtensionPlugin::QPrivateSignal (0xb3858930) 0 empty + +Vtable for QQmlExtensionPlugin +QQmlExtensionPlugin::_ZTV19QQmlExtensionPlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QQmlExtensionPlugin) +8 (int (*)(...))QQmlExtensionPlugin::metaObject +12 (int (*)(...))QQmlExtensionPlugin::qt_metacast +16 (int (*)(...))QQmlExtensionPlugin::qt_metacall +20 (int (*)(...))QQmlExtensionPlugin::~QQmlExtensionPlugin +24 (int (*)(...))QQmlExtensionPlugin::~QQmlExtensionPlugin +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))__cxa_pure_virtual +60 (int (*)(...))QQmlExtensionPlugin::initializeEngine +64 (int (*)(...))-0x00000000000000008 +68 (int (*)(...))(& _ZTI19QQmlExtensionPlugin) +72 (int (*)(...))QQmlExtensionPlugin::_ZThn8_N19QQmlExtensionPluginD1Ev +76 (int (*)(...))QQmlExtensionPlugin::_ZThn8_N19QQmlExtensionPluginD0Ev +80 (int (*)(...))__cxa_pure_virtual +84 (int (*)(...))QQmlExtensionPlugin::_ZThn8_N19QQmlExtensionPlugin16initializeEngineEP10QQmlEnginePKc + +Class QQmlExtensionPlugin + size=12 align=4 + base size=12 base align=4 +QQmlExtensionPlugin (0xb3825dc0) 0 + vptr=((& QQmlExtensionPlugin::_ZTV19QQmlExtensionPlugin) + 8u) + QObject (0xb3858818) 0 + primary-for QQmlExtensionPlugin (0xb3825dc0) + QQmlExtensionInterface (0xb3a17690) 8 nearly-empty + vptr=((& QQmlExtensionPlugin::_ZTV19QQmlExtensionPlugin) + 72u) + QQmlTypesExtensionInterface (0xb3858850) 8 nearly-empty + primary-for QQmlExtensionInterface (0xb3a17690) + +Class QQmlFile + size=4 align=4 + base size=4 base align=4 +QQmlFile (0xb3858e70) 0 + +Vtable for QQmlIncubator +QQmlIncubator::_ZTV13QQmlIncubator: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QQmlIncubator) +8 (int (*)(...))QQmlIncubator::~QQmlIncubator +12 (int (*)(...))QQmlIncubator::~QQmlIncubator +16 (int (*)(...))QQmlIncubator::statusChanged +20 (int (*)(...))QQmlIncubator::setInitialState + +Class QQmlIncubator + size=8 align=4 + base size=8 base align=4 +QQmlIncubator (0xb3874188) 0 + vptr=((& QQmlIncubator::_ZTV13QQmlIncubator) + 8u) + +Vtable for QQmlIncubationController +QQmlIncubationController::_ZTV24QQmlIncubationController: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QQmlIncubationController) +8 (int (*)(...))QQmlIncubationController::~QQmlIncubationController +12 (int (*)(...))QQmlIncubationController::~QQmlIncubationController +16 (int (*)(...))QQmlIncubationController::incubatingObjectCountChanged + +Class QQmlIncubationController + size=8 align=4 + base size=8 base align=4 +QQmlIncubationController (0xb3874700) 0 + vptr=((& QQmlIncubationController::_ZTV24QQmlIncubationController) + 8u) + +Class QQmlInfo + size=8 align=4 + base size=8 base align=4 +QQmlInfo (0xb3a176cc) 0 + QDebug (0xb38749d8) 0 + +Vtable for QQmlNetworkAccessManagerFactory +QQmlNetworkAccessManagerFactory::_ZTV31QQmlNetworkAccessManagerFactory: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI31QQmlNetworkAccessManagerFactory) +8 (int (*)(...))QQmlNetworkAccessManagerFactory::~QQmlNetworkAccessManagerFactory +12 (int (*)(...))QQmlNetworkAccessManagerFactory::~QQmlNetworkAccessManagerFactory +16 (int (*)(...))__cxa_pure_virtual + +Class QQmlNetworkAccessManagerFactory + size=4 align=4 + base size=4 base align=4 +QQmlNetworkAccessManagerFactory (0xb388efc0) 0 nearly-empty + vptr=((& QQmlNetworkAccessManagerFactory::_ZTV31QQmlNetworkAccessManagerFactory) + 8u) + +Class QQmlProperty + size=4 align=4 + base size=4 base align=4 +QQmlProperty (0xb3897070) 0 + +Class QQmlPropertyMap::QPrivateSignal + size=1 align=1 + base size=0 base align=1 +QQmlPropertyMap::QPrivateSignal (0xb3897888) 0 empty + +Vtable for QQmlPropertyMap +QQmlPropertyMap::_ZTV15QQmlPropertyMap: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QQmlPropertyMap) +8 (int (*)(...))QQmlPropertyMap::metaObject +12 (int (*)(...))QQmlPropertyMap::qt_metacast +16 (int (*)(...))QQmlPropertyMap::qt_metacall +20 (int (*)(...))QQmlPropertyMap::~QQmlPropertyMap +24 (int (*)(...))QQmlPropertyMap::~QQmlPropertyMap +28 (int (*)(...))QObject::event +32 (int (*)(...))QObject::eventFilter +36 (int (*)(...))QObject::timerEvent +40 (int (*)(...))QObject::childEvent +44 (int (*)(...))QObject::customEvent +48 (int (*)(...))QObject::connectNotify +52 (int (*)(...))QObject::disconnectNotify +56 (int (*)(...))QQmlPropertyMap::updateValue + +Class QQmlPropertyMap + size=8 align=4 + base size=8 base align=4 +QQmlPropertyMap (0xb3a17708) 0 + vptr=((& QQmlPropertyMap::_ZTV15QQmlPropertyMap) + 8u) + QObject (0xb38977a8) 0 + primary-for QQmlPropertyMap (0xb3a17708) + +Class QJSValueIterator + size=4 align=4 + base size=4 base align=4 +QJSValueIterator (0xb36ae000) 0 + -- cgit v1.2.3 From 83deab8d1b82bb3a02b0b92737b298848d19beb6 Mon Sep 17 00:00:00 2001 From: Sergio Ahumada Date: Wed, 2 Jan 2013 12:17:46 +0100 Subject: Update copyright year in Digia's license headers Change-Id: I6c3bd7bebe3d62d1cfd0fa6334544c9db8398c76 Reviewed-by: Akseli Salovaara Reviewed-by: Sergio Ahumada --- tests/auto/compilerwarnings/data/test_cpp.txt | 2 +- tests/auto/particles/qquickage/data/jump.qml | 2 +- tests/auto/particles/qquickage/data/kill.qml | 2 +- tests/auto/particles/qquickage/data/onceoff.qml | 2 +- tests/auto/particles/qquickage/data/sustained.qml | 2 +- tests/auto/particles/qquickage/tst_qquickage.cpp | 2 +- tests/auto/particles/qquickangleddirection/data/basic.qml | 2 +- .../auto/particles/qquickangleddirection/tst_qquickangleddirection.cpp | 2 +- tests/auto/particles/qquickcumulativedirection/data/basic.qml | 2 +- .../qquickcumulativedirection/tst_qquickcumulativedirection.cpp | 2 +- tests/auto/particles/qquickcustomaffector/data/affectedSignal.qml | 2 +- tests/auto/particles/qquickcustomaffector/data/basic.qml | 2 +- tests/auto/particles/qquickcustomaffector/data/move.qml | 2 +- tests/auto/particles/qquickcustomaffector/tst_qquickcustomaffector.cpp | 2 +- tests/auto/particles/qquickcustomparticle/data/basic.qml | 2 +- tests/auto/particles/qquickcustomparticle/data/deleteSourceItem.qml | 2 +- tests/auto/particles/qquickcustomparticle/tst_qquickcustomparticle.cpp | 2 +- tests/auto/particles/qquickellipseextruder/data/basic.qml | 2 +- .../auto/particles/qquickellipseextruder/tst_qquickellipseextruder.cpp | 2 +- tests/auto/particles/qquickfriction/data/basic.qml | 2 +- tests/auto/particles/qquickfriction/data/threshold.qml | 2 +- tests/auto/particles/qquickfriction/tst_qquickfriction.cpp | 2 +- tests/auto/particles/qquickgravity/data/basic.qml | 2 +- tests/auto/particles/qquickgravity/tst_qquickgravity.cpp | 2 +- tests/auto/particles/qquickgroupgoal/data/basic.qml | 2 +- tests/auto/particles/qquickgroupgoal/tst_qquickgroupgoal.cpp | 2 +- tests/auto/particles/qquickimageparticle/data/basic.qml | 2 +- tests/auto/particles/qquickimageparticle/data/colorVariance.qml | 2 +- tests/auto/particles/qquickimageparticle/data/colored.qml | 2 +- tests/auto/particles/qquickimageparticle/data/deformed.qml | 2 +- tests/auto/particles/qquickimageparticle/data/sprite.qml | 2 +- tests/auto/particles/qquickimageparticle/data/tabled.qml | 2 +- tests/auto/particles/qquickimageparticle/tst_qquickimageparticle.cpp | 2 +- tests/auto/particles/qquickitemparticle/data/basic.qml | 2 +- tests/auto/particles/qquickitemparticle/tst_qquickitemparticle.cpp | 2 +- tests/auto/particles/qquicklineextruder/data/basic.qml | 2 +- tests/auto/particles/qquicklineextruder/tst_qquicklineextruder.cpp | 2 +- tests/auto/particles/qquickmaskextruder/data/basic.qml | 2 +- tests/auto/particles/qquickmaskextruder/tst_qquickmaskextruder.cpp | 2 +- tests/auto/particles/qquickparticlegroup/data/basic.qml | 2 +- tests/auto/particles/qquickparticlegroup/tst_qquickparticlegroup.cpp | 2 +- tests/auto/particles/qquickparticlesystem/data/basic.qml | 2 +- tests/auto/particles/qquickparticlesystem/tst_qquickparticlesystem.cpp | 2 +- tests/auto/particles/qquickpointattractor/data/basic.qml | 2 +- tests/auto/particles/qquickpointattractor/tst_qquickpointattractor.cpp | 2 +- tests/auto/particles/qquickpointdirection/data/basic.qml | 2 +- tests/auto/particles/qquickpointdirection/tst_qquickpointdirection.cpp | 2 +- tests/auto/particles/qquickrectangleextruder/data/basic.qml | 2 +- .../particles/qquickrectangleextruder/tst_qquickrectangleextruder.cpp | 2 +- tests/auto/particles/qquickspritegoal/data/basic.qml | 2 +- tests/auto/particles/qquickspritegoal/tst_qquickspritegoal.cpp | 2 +- tests/auto/particles/qquicktargetdirection/data/basic.qml | 2 +- .../auto/particles/qquicktargetdirection/tst_qquicktargetdirection.cpp | 2 +- tests/auto/particles/qquicktrailemitter/data/basic.qml | 2 +- tests/auto/particles/qquicktrailemitter/tst_qquicktrailemitter.cpp | 2 +- tests/auto/particles/qquickturbulence/data/basic.qml | 2 +- tests/auto/particles/qquickturbulence/tst_qquickturbulence.cpp | 2 +- tests/auto/particles/qquickwander/data/basic.qml | 2 +- tests/auto/particles/qquickwander/tst_qquickwander.cpp | 2 +- tests/auto/particles/shared/particlestestsshared.h | 2 +- .../qml/animation/qabstractanimationjob/tst_qabstractanimationjob.cpp | 2 +- tests/auto/qml/animation/qanimationgroupjob/tst_qanimationgroupjob.cpp | 2 +- .../qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp | 2 +- tests/auto/qml/animation/qpauseanimationjob/tst_qpauseanimationjob.cpp | 2 +- .../qsequentialanimationgroupjob/tst_qsequentialanimationgroupjob.cpp | 2 +- tests/auto/qml/debugger/qdebugmessageservice/data/test.qml | 2 +- .../auto/qml/debugger/qdebugmessageservice/tst_qdebugmessageservice.cpp | 2 +- tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp | 2 +- tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/breakpointRelocation.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/changeBreakpoint.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/condition.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/createComponent.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/exception.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/loadjsfile.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/oncompleted.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/stepAction.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/test.js | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/test.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/data/timer.qml | 2 +- tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp | 2 +- tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp | 2 +- .../tst_qqmlenginedebuginspectorintegration.cpp | 2 +- .../qml/debugger/qqmlenginedebugservice/tst_qqmlenginedebugservice.cpp | 2 +- tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.cpp | 2 +- tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp | 2 +- tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp | 2 +- tests/auto/qml/debugger/shared/debugutil.cpp | 2 +- tests/auto/qml/debugger/shared/debugutil_p.h | 2 +- tests/auto/qml/debugger/shared/qqmldebugclient.cpp | 2 +- tests/auto/qml/debugger/shared/qqmldebugclient.h | 2 +- tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp | 2 +- tests/auto/qml/debugger/shared/qqmldebugtestservice.h | 2 +- tests/auto/qml/debugger/shared/qqmlenginedebugclient.cpp | 2 +- tests/auto/qml/debugger/shared/qqmlenginedebugclient.h | 2 +- tests/auto/qml/debugger/shared/qqmlinspectorclient.cpp | 2 +- tests/auto/qml/debugger/shared/qqmlinspectorclient.h | 2 +- tests/auto/qml/parserstress/tst_parserstress.cpp | 2 +- tests/auto/qml/qjsengine/tst_qjsengine.cpp | 2 +- tests/auto/qml/qjsonbinding/tst_qjsonbinding.cpp | 2 +- tests/auto/qml/qjsvalue/tst_qjsvalue.cpp | 2 +- tests/auto/qml/qjsvalue/tst_qjsvalue.h | 2 +- tests/auto/qml/qjsvalueiterator/tst_qjsvalueiterator.cpp | 2 +- tests/auto/qml/qmlmin/tst_qmlmin.cpp | 2 +- tests/auto/qml/qmlplugindump/tst_qmlplugindump.cpp | 2 +- tests/auto/qml/qqmlbinding/tst_qqmlbinding.cpp | 2 +- tests/auto/qml/qqmlbundle/data/imports/bundletest/plugin.cpp | 2 +- tests/auto/qml/qqmlbundle/tst_qqmlbundle.cpp | 2 +- tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp | 2 +- tests/auto/qml/qqmlconnections/tst_qqmlconnections.cpp | 2 +- tests/auto/qml/qqmlconsole/data/assert.qml | 2 +- tests/auto/qml/qqmlconsole/data/exception.qml | 2 +- tests/auto/qml/qqmlconsole/data/logging.qml | 2 +- tests/auto/qml/qqmlconsole/data/profiling.qml | 2 +- tests/auto/qml/qqmlconsole/data/tracing.qml | 2 +- tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp | 2 +- tests/auto/qml/qqmlcontext/tst_qqmlcontext.cpp | 2 +- tests/auto/qml/qqmlcpputils/tst_qqmlcpputils.cpp | 2 +- tests/auto/qml/qqmldirparser/tst_qqmldirparser.cpp | 2 +- tests/auto/qml/qqmlecmascript/testtypes.cpp | 2 +- tests/auto/qml/qqmlecmascript/testtypes.h | 2 +- tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp | 2 +- tests/auto/qml/qqmlengine/tst_qqmlengine.cpp | 2 +- tests/auto/qml/qqmlerror/tst_qqmlerror.cpp | 2 +- tests/auto/qml/qqmlexpression/tst_qqmlexpression.cpp | 2 +- tests/auto/qml/qqmlglobal/tst_qqmlglobal.cpp | 2 +- tests/auto/qml/qqmlincubator/testtypes.cpp | 2 +- tests/auto/qml/qqmlincubator/testtypes.h | 2 +- tests/auto/qml/qqmlincubator/tst_qqmlincubator.cpp | 2 +- tests/auto/qml/qqmlinfo/tst_qqmlinfo.cpp | 2 +- tests/auto/qml/qqmlinstruction/tst_qqmlinstruction.cpp | 2 +- tests/auto/qml/qqmllanguage/testtypes.cpp | 2 +- tests/auto/qml/qqmllanguage/testtypes.h | 2 +- tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp | 2 +- tests/auto/qml/qqmllistreference/tst_qqmllistreference.cpp | 2 +- tests/auto/qml/qqmllocale/tst_qqmllocale.cpp | 2 +- tests/auto/qml/qqmlmetaobject/tst_qqmlmetaobject.cpp | 2 +- tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/invalidFirstCommandModule/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/invalidNamespaceModule/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/invalidStrictModule/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/nestedPlugin/nestedPlugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/plugin.2.1/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/plugin.2/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/plugin/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/pluginMixed/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/pluginVersion/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/pluginWithQmlFile/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/pluginWrongCase/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/preemptedStrictModule/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/preemptiveModule/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/strictModule/plugin.cpp | 2 +- tests/auto/qml/qqmlmoduleplugin/tst_qqmlmoduleplugin.cpp | 2 +- tests/auto/qml/qqmlparser/tst_qqmlparser.cpp | 2 +- tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp | 2 +- tests/auto/qml/qqmlpropertycache/tst_qqmlpropertycache.cpp | 2 +- tests/auto/qml/qqmlpropertymap/tst_qqmlpropertymap.cpp | 2 +- tests/auto/qml/qqmlqt/tst_qqmlqt.cpp | 2 +- tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp | 2 +- tests/auto/qml/qqmltimer/tst_qqmltimer.cpp | 2 +- tests/auto/qml/qqmltranslation/tst_qqmltranslation.cpp | 2 +- tests/auto/qml/qqmlvaluetypeproviders/testtypes.cpp | 2 +- tests/auto/qml/qqmlvaluetypeproviders/testtypes.h | 2 +- tests/auto/qml/qqmlvaluetypeproviders/tst_qqmlvaluetypeproviders.cpp | 2 +- tests/auto/qml/qqmlvaluetypes/testtypes.cpp | 2 +- tests/auto/qml/qqmlvaluetypes/testtypes.h | 2 +- tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp | 2 +- tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp | 2 +- tests/auto/qml/qquickchangeset/tst_qquickchangeset.cpp | 2 +- tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp | 2 +- tests/auto/qml/qquicklistcompositor/tst_qquicklistcompositor.cpp | 2 +- tests/auto/qml/qquicklistmodel/tst_qquicklistmodel.cpp | 2 +- .../qml/qquicklistmodelworkerscript/tst_qquicklistmodelworkerscript.cpp | 2 +- tests/auto/qml/qquickworkerscript/tst_qquickworkerscript.cpp | 2 +- tests/auto/qml/qrcqml/tst_qrcqml.cpp | 2 +- tests/auto/qml/runall.sh | 2 +- tests/auto/qml/v4/testtypes.cpp | 2 +- tests/auto/qml/v4/testtypes.h | 2 +- tests/auto/qml/v4/tst_v4.cpp | 2 +- tests/auto/qmldevtools/compile/tst_compile.cpp | 2 +- tests/auto/qmltest/animatedimage/tst_animatedimage.qml | 2 +- tests/auto/qmltest/animations/tst_abstractanimationjobcrash.qml | 2 +- tests/auto/qmltest/borderimage/InvalidSciFile.qml | 2 +- tests/auto/qmltest/borderimage/tst_borderimage.qml | 2 +- tests/auto/qmltest/buttonclick/Button.qml | 2 +- tests/auto/qmltest/buttonclick/tst_buttonclick.qml | 2 +- tests/auto/qmltest/createbenchmark/item.qml | 2 +- tests/auto/qmltest/createbenchmark/tst_createbenchmark.qml | 2 +- tests/auto/qmltest/events/tst_drag.qml | 2 +- tests/auto/qmltest/events/tst_events.qml | 2 +- tests/auto/qmltest/events/tst_wheel.qml | 2 +- tests/auto/qmltest/fontloader/tst_fontloader.qml | 2 +- tests/auto/qmltest/gradient/tst_gradient.qml | 2 +- tests/auto/qmltest/image/tst_image.qml | 2 +- tests/auto/qmltest/listmodel/tst_listmodel.qml | 2 +- tests/auto/qmltest/listview/tst_listview.qml | 2 +- tests/auto/qmltest/pixel/tst_pixel.qml | 2 +- tests/auto/qmltest/qqmlbinding/tst_binding.qml | 2 +- tests/auto/qmltest/qqmlbinding/tst_binding2.qml | 2 +- tests/auto/qmltest/rectangle/tst_rectangle.qml | 2 +- tests/auto/qmltest/selftests/tst_compare.qml | 2 +- tests/auto/qmltest/selftests/tst_compare_quickobjects.qml | 2 +- tests/auto/qmltest/selftests/tst_datadriven.qml | 2 +- tests/auto/qmltest/selftests/tst_selftests.qml | 2 +- tests/auto/qmltest/text/tst_text.qml | 2 +- tests/auto/qmltest/textedit/tst_textedit.qml | 2 +- tests/auto/qmltest/textinput/tst_textinput.qml | 2 +- tests/auto/qmltest/tst_qmltest.cpp | 2 +- tests/auto/quick/examples/tst_examples.cpp | 2 +- tests/auto/quick/geometry/tst_geometry.cpp | 2 +- tests/auto/quick/nodes/tst_nodestest.cpp | 2 +- tests/auto/quick/qquickaccessible/data/hittest.qml | 2 +- tests/auto/quick/qquickaccessible/tst_qquickaccessible.cpp | 2 +- tests/auto/quick/qquickanchors/tst_qquickanchors.cpp | 2 +- tests/auto/quick/qquickanimatedimage/tst_qquickanimatedimage.cpp | 2 +- tests/auto/quick/qquickanimatedsprite/data/basic.qml | 2 +- tests/auto/quick/qquickanimatedsprite/data/frameChange.qml | 2 +- tests/auto/quick/qquickanimatedsprite/tst_qquickanimatedsprite.cpp | 2 +- .../quick/qquickanimationcontroller/tst_qquickanimationcontroller.cpp | 2 +- tests/auto/quick/qquickanimations/tst_qquickanimations.cpp | 2 +- tests/auto/quick/qquickapplication/tst_qquickapplication.cpp | 2 +- tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp | 2 +- tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp | 2 +- tests/auto/quick/qquickcanvasitem/tst_qquickcanvasitem.cpp | 2 +- tests/auto/quick/qquickdrag/tst_qquickdrag.cpp | 2 +- tests/auto/quick/qquickdroparea/tst_qquickdroparea.cpp | 2 +- tests/auto/quick/qquickflickable/tst_qquickflickable.cpp | 2 +- tests/auto/quick/qquickflipable/tst_qquickflipable.cpp | 2 +- tests/auto/quick/qquickfocusscope/tst_qquickfocusscope.cpp | 2 +- tests/auto/quick/qquickfontloader/tst_qquickfontloader.cpp | 2 +- tests/auto/quick/qquickgridview/tst_qquickgridview.cpp | 2 +- tests/auto/quick/qquickimage/tst_qquickimage.cpp | 2 +- tests/auto/quick/qquickimageprovider/tst_qquickimageprovider.cpp | 2 +- tests/auto/quick/qquickitem/tst_qquickitem.cpp | 2 +- tests/auto/quick/qquickitem2/data/mapCoordinates.qml | 2 +- tests/auto/quick/qquickitem2/data/mapCoordinatesRect.qml | 2 +- tests/auto/quick/qquickitem2/tst_qquickitem.cpp | 2 +- tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp | 2 +- tests/auto/quick/qquicklistview/incrementalmodel.cpp | 2 +- tests/auto/quick/qquicklistview/incrementalmodel.h | 2 +- tests/auto/quick/qquicklistview/tst_qquicklistview.cpp | 2 +- tests/auto/quick/qquickloader/tst_qquickloader.cpp | 2 +- tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp | 2 +- .../quick/qquickmultipointtoucharea/tst_qquickmultipointtoucharea.cpp | 2 +- tests/auto/quick/qquickpainteditem/tst_qquickpainteditem.cpp | 2 +- tests/auto/quick/qquickpath/tst_qquickpath.cpp | 2 +- tests/auto/quick/qquickpathview/tst_qquickpathview.cpp | 2 +- tests/auto/quick/qquickpincharea/tst_qquickpincharea.cpp | 2 +- tests/auto/quick/qquickpixmapcache/tst_qquickpixmapcache.cpp | 2 +- tests/auto/quick/qquickpositioners/tst_qquickpositioners.cpp | 2 +- tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp | 2 +- tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp | 2 +- tests/auto/quick/qquickscreen/tst_qquickscreen.cpp | 2 +- tests/auto/quick/qquickshadereffect/data/deleteShaderEffectSource.qml | 2 +- tests/auto/quick/qquickshadereffect/data/deleteSourceItem.qml | 2 +- tests/auto/quick/qquickshadereffect/tst_qquickshadereffect.cpp | 2 +- .../auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp | 2 +- tests/auto/quick/qquickspringanimation/tst_qquickspringanimation.cpp | 2 +- tests/auto/quick/qquickspritesequence/data/advance.qml | 2 +- tests/auto/quick/qquickspritesequence/data/basic.qml | 2 +- tests/auto/quick/qquickspritesequence/data/crashonstart.qml | 2 +- tests/auto/quick/qquickspritesequence/data/huge.qml | 2 +- tests/auto/quick/qquickspritesequence/tst_qquickspritesequence.cpp | 2 +- tests/auto/quick/qquickstates/tst_qquickstates.cpp | 2 +- tests/auto/quick/qquickstyledtext/tst_qquickstyledtext.cpp | 2 +- tests/auto/quick/qquicksystempalette/tst_qquicksystempalette.cpp | 2 +- tests/auto/quick/qquicktext/tst_qquicktext.cpp | 2 +- tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp | 2 +- tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp | 2 +- tests/auto/quick/qquickview/tst_qquickview.cpp | 2 +- tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp | 2 +- tests/auto/quick/qquickwindow/tst_qquickwindow.cpp | 2 +- tests/auto/quick/qquickxmllistmodel/tst_qquickxmllistmodel.cpp | 2 +- tests/auto/quick/rendernode/tst_rendernode.cpp | 2 +- tests/auto/quick/shared/viewtestutil.cpp | 2 +- tests/auto/quick/shared/viewtestutil.h | 2 +- tests/auto/quick/shared/visualtestutil.cpp | 2 +- tests/auto/quick/shared/visualtestutil.h | 2 +- tests/auto/quick/touchmouse/tst_touchmouse.cpp | 2 +- tests/auto/shared/platforminputcontext.h | 2 +- tests/auto/shared/platformquirks.h | 2 +- tests/auto/shared/testhttpserver.cpp | 2 +- tests/auto/shared/testhttpserver.h | 2 +- tests/auto/shared/util.cpp | 2 +- tests/auto/shared/util.h | 2 +- tests/benchmarks/particles/affectors/data/basic.qml | 2 +- tests/benchmarks/particles/affectors/data/filtered.qml | 2 +- tests/benchmarks/particles/affectors/tst_affectors.cpp | 2 +- tests/benchmarks/particles/emission/data/basic.qml | 2 +- tests/benchmarks/particles/emission/tst_emission.cpp | 2 +- tests/benchmarks/qml/animation/data/animation.qml | 2 +- tests/benchmarks/qml/animation/tst_animation.cpp | 2 +- tests/benchmarks/qml/binding/testtypes.cpp | 2 +- tests/benchmarks/qml/binding/testtypes.h | 2 +- tests/benchmarks/qml/binding/tst_binding.cpp | 2 +- tests/benchmarks/qml/compilation/data/BoomBlock.qml | 2 +- tests/benchmarks/qml/compilation/tst_compilation.cpp | 2 +- tests/benchmarks/qml/creation/data/CustomItem.qml | 2 +- tests/benchmarks/qml/creation/data/emptyCustomItem.qml | 2 +- tests/benchmarks/qml/creation/data/emptyItem.qml | 2 +- tests/benchmarks/qml/creation/data/item.qml | 2 +- tests/benchmarks/qml/creation/data/itemUsingOnComponentCompleted.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithAnchoredChild.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithChildBindedToSize.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithProperties.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest1.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest2.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest3.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest4.qml | 2 +- tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest5.qml | 2 +- tests/benchmarks/qml/creation/data/qobject.qml | 2 +- tests/benchmarks/qml/creation/tst_creation.cpp | 2 +- tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicFour.qml | 2 +- tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicOne.qml | 2 +- tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicThree.qml | 2 +- tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicTwo.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Mlbsi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Mldsi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Mlsi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/ModuleBm.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Msbsi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Msdsi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Mssi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/PragmaBm.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/PragmaModuleBm.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Slsi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/Sssi.qml | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi1.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi10.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi11.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi12.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi13.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi14.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi15.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi2.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi3.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi4.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi5.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi6.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi7.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi8.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlbsi9.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi1.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi10.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi11.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi12.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi13.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi14.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi15.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi2.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi3.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi4.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi5.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi6.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi7.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi8.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mldsi9.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mlsi.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/moduleBm.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi1.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi10.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi11.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi12.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi13.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi14.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi15.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi2.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi3.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi4.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi5.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi6.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi7.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi8.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msbsi9.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi1.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi10.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi11.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi12.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi13.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi14.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi15.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi2.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi3.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi4.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi5.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi6.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi7.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi8.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/msdsi9.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/mssi.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/pragmaBmOne.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/pragmaBmTwo.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/pragmaLib.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/pragmaModuleBm.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/slsi.js | 2 +- tests/benchmarks/qml/holistic/data/jsImports/sssi.js | 2 +- tests/benchmarks/qml/holistic/data/jsTargets/JsOne.qml | 2 +- tests/benchmarks/qml/holistic/data/jsTargets/JsTwo.qml | 2 +- tests/benchmarks/qml/holistic/data/largeTargets/gridview-example.qml | 2 +- tests/benchmarks/qml/holistic/data/largeTargets/layoutdirection.qml | 2 +- tests/benchmarks/qml/holistic/data/largeTargets/mousearea-example.qml | 2 +- tests/benchmarks/qml/holistic/data/resolutionTargets/ResolveOne.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/CppToJs.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/CppToQml.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEight.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEleven.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFive.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFour.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppNine.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppOne.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSeven.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSix.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTen.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppThree.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTwo.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceOne.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceTwo.qml | 2 +- tests/benchmarks/qml/holistic/data/scopeSwitching/cppToJs.js | 2 +- tests/benchmarks/qml/holistic/data/smallTargets/SmallFour.qml | 2 +- tests/benchmarks/qml/holistic/data/smallTargets/SmallOne.qml | 2 +- tests/benchmarks/qml/holistic/data/smallTargets/SmallThree.qml | 2 +- tests/benchmarks/qml/holistic/data/smallTargets/SmallTwo.qml | 2 +- tests/benchmarks/qml/holistic/testtypes.cpp | 2 +- tests/benchmarks/qml/holistic/testtypes.h | 2 +- tests/benchmarks/qml/holistic/tst_holistic.cpp | 2 +- tests/benchmarks/qml/javascript/testtypes.cpp | 2 +- tests/benchmarks/qml/javascript/testtypes.h | 2 +- tests/benchmarks/qml/javascript/tst_javascript.cpp | 2 +- tests/benchmarks/qml/js/qjsengine/tst_qjsengine.cpp | 2 +- tests/benchmarks/qml/js/qjsvalue/tst_qjsvalue.cpp | 2 +- tests/benchmarks/qml/js/qjsvalueiterator/tst_qjsvalueiterator.cpp | 2 +- tests/benchmarks/qml/painting/paintbenchmark.cpp | 2 +- tests/benchmarks/qml/pointers/tst_pointers.cpp | 2 +- tests/benchmarks/qml/qmltime/example.qml | 2 +- tests/benchmarks/qml/qmltime/linelaidout.qml | 2 +- tests/benchmarks/qml/qmltime/qmltime.cpp | 2 +- tests/benchmarks/qml/qmltime/tests/anchors/empty.qml | 2 +- tests/benchmarks/qml/qmltime/tests/anchors/fill.qml | 2 +- tests/benchmarks/qml/qmltime/tests/anchors/null.qml | 2 +- tests/benchmarks/qml/qmltime/tests/animation/large.qml | 2 +- tests/benchmarks/qml/qmltime/tests/animation/largeNoProps.qml | 2 +- tests/benchmarks/qml/qmltime/tests/item_creation/children.qml | 2 +- tests/benchmarks/qml/qmltime/tests/item_creation/data.qml | 2 +- tests/benchmarks/qml/qmltime/tests/item_creation/no_creation.qml | 2 +- tests/benchmarks/qml/qmltime/tests/item_creation/resources.qml | 2 +- tests/benchmarks/qml/qmltime/tests/loader/Loaded.qml | 2 +- tests/benchmarks/qml/qmltime/tests/loader/component_loader.qml | 2 +- tests/benchmarks/qml/qmltime/tests/loader/empty_loader.qml | 2 +- tests/benchmarks/qml/qmltime/tests/loader/no_loader.qml | 2 +- tests/benchmarks/qml/qmltime/tests/loader/source_loader.qml | 2 +- .../benchmarks/qml/qmltime/tests/positioner_creation/no_positioner.qml | 2 +- .../qml/qmltime/tests/positioner_creation/null_positioner.qml | 2 +- tests/benchmarks/qml/qmltime/tests/positioner_creation/positioner.qml | 2 +- tests/benchmarks/qml/qmltime/tests/vmemetaobject/null.qml | 2 +- tests/benchmarks/qml/qmltime/tests/vmemetaobject/property.qml | 2 +- tests/benchmarks/qml/qmltime/textingrid.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/data/myqmlobject.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/data/myqmlobject_binding.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/data/object.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/data/object_id.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/data/samegame/BoomBlock.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.2.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.qml | 2 +- tests/benchmarks/qml/qqmlcomponent/testtypes.cpp | 2 +- tests/benchmarks/qml/qqmlcomponent/testtypes.h | 2 +- tests/benchmarks/qml/qqmlcomponent/tst_qqmlcomponent.cpp | 2 +- tests/benchmarks/qml/qqmldebugtrace/tst_qqmldebugtrace.cpp | 2 +- tests/benchmarks/qml/qqmlimage/tst_qqmlimage.cpp | 2 +- tests/benchmarks/qml/qqmlmetaproperty/data/object.qml | 2 +- tests/benchmarks/qml/qqmlmetaproperty/data/synthesized_object.qml | 2 +- tests/benchmarks/qml/qqmlmetaproperty/tst_qqmlmetaproperty.cpp | 2 +- tests/benchmarks/qml/script/data/CustomObject.qml | 2 +- tests/benchmarks/qml/script/data/block.qml | 2 +- tests/benchmarks/qml/script/data/enums.qml | 2 +- tests/benchmarks/qml/script/data/global.js | 2 +- tests/benchmarks/qml/script/data/global_prop.qml | 2 +- tests/benchmarks/qml/script/data/namespacedEnums.qml | 2 +- tests/benchmarks/qml/script/data/scriptCall.qml | 2 +- tests/benchmarks/qml/script/data/signal_args.qml | 2 +- tests/benchmarks/qml/script/data/signal_heavyArgsAccess.qml | 2 +- tests/benchmarks/qml/script/data/signal_heavyIdAccess.qml | 2 +- tests/benchmarks/qml/script/data/signal_qml.qml | 2 +- tests/benchmarks/qml/script/data/signal_unconnected.qml | 2 +- tests/benchmarks/qml/script/data/signal_unusedArgs.qml | 2 +- tests/benchmarks/qml/script/data/slot_complex.qml | 2 +- tests/benchmarks/qml/script/data/slot_complex_js.qml | 2 +- tests/benchmarks/qml/script/data/slot_simple.qml | 2 +- tests/benchmarks/qml/script/data/slot_simple_js.qml | 2 +- tests/benchmarks/qml/script/tst_script.cpp | 2 +- tests/benchmarks/qml/typeimports/data/QmlTestType1.qml | 2 +- tests/benchmarks/qml/typeimports/data/QmlTestType2.qml | 2 +- tests/benchmarks/qml/typeimports/data/QmlTestType3.qml | 2 +- tests/benchmarks/qml/typeimports/data/QmlTestType4.qml | 2 +- tests/benchmarks/qml/typeimports/data/cpp.qml | 2 +- tests/benchmarks/qml/typeimports/data/qml.qml | 2 +- tests/benchmarks/qml/typeimports/tst_typeimports.cpp | 2 +- tests/benchmarks/script/qjsvalue/tst_qjsvalue.cpp | 2 +- tests/manual/accessibility/animation.qml | 2 +- tests/manual/accessibility/behavior.qml | 2 +- tests/manual/accessibility/flickable.qml | 2 +- tests/manual/accessibility/hittest.qml | 2 +- tests/manual/accessibility/numberanimation.qml | 2 +- tests/manual/accessibility/textandbuttons.qml | 2 +- tests/manual/accessibility/transition.qml | 2 +- tests/manual/scenegraph_lancelot/hostinfo.sh | 2 +- tests/manual/scenegraph_lancelot/scenegrabber/main.cpp | 2 +- tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp | 2 +- tests/system/sys_animatedsprite.qtt | 2 +- tests/system/sys_elements.qtt | 2 +- tests/system/sys_listview.qtt | 2 +- tests/system/sys_text.qtt | 2 +- tests/system/sys_textedit.qtt | 2 +- tests/system/sys_textinput.qtt | 2 +- tests/testapplications/animatedsprite/animatedsprite.qml | 2 +- tests/testapplications/animatedsprite/animatedspriteadvance.qml | 2 +- tests/testapplications/elements/content/AffectorElement.qml | 2 +- tests/testapplications/elements/content/AnimatedImageElement.qml | 2 +- tests/testapplications/elements/content/AppContainer.qml | 2 +- tests/testapplications/elements/content/BorderImageElement.qml | 2 +- tests/testapplications/elements/content/BugPanel.qml | 2 +- tests/testapplications/elements/content/ColumnElement.qml | 2 +- tests/testapplications/elements/content/DirectionElement.qml | 2 +- tests/testapplications/elements/content/DoubleValidatorElement.qml | 2 +- tests/testapplications/elements/content/EmitterElement.qml | 2 +- tests/testapplications/elements/content/FlickableElement.qml | 2 +- tests/testapplications/elements/content/FlipableElement.qml | 2 +- tests/testapplications/elements/content/FlowElement.qml | 2 +- tests/testapplications/elements/content/FocusScopeElement.qml | 2 +- tests/testapplications/elements/content/FontLoaderElement.qml | 2 +- tests/testapplications/elements/content/GradientElement.qml | 2 +- tests/testapplications/elements/content/GridElement.qml | 2 +- tests/testapplications/elements/content/GridViewElement.qml | 2 +- tests/testapplications/elements/content/Help.qml | 2 +- tests/testapplications/elements/content/HelpDesk.qml | 2 +- tests/testapplications/elements/content/ImageElement.qml | 2 +- tests/testapplications/elements/content/ImageParticleElement.qml | 2 +- tests/testapplications/elements/content/IntValidatorElement.qml | 2 +- tests/testapplications/elements/content/KeysElement.qml | 2 +- tests/testapplications/elements/content/ListViewElement.qml | 2 +- tests/testapplications/elements/content/MouseAreaElement.qml | 2 +- tests/testapplications/elements/content/ParallelAnimationElement.qml | 2 +- tests/testapplications/elements/content/ParticleSystemElement.qml | 2 +- tests/testapplications/elements/content/RectangleElement.qml | 2 +- tests/testapplications/elements/content/RegExpValidatorElement.qml | 2 +- tests/testapplications/elements/content/RepeaterElement.qml | 2 +- tests/testapplications/elements/content/RowElement.qml | 2 +- tests/testapplications/elements/content/ScaleElement.qml | 2 +- tests/testapplications/elements/content/SequentialAnimationElement.qml | 2 +- tests/testapplications/elements/content/ShapeElement.qml | 2 +- tests/testapplications/elements/content/SpriteSequenceElement.qml | 2 +- tests/testapplications/elements/content/SystemPaletteElement.qml | 2 +- tests/testapplications/elements/content/SystemTestHelp.qml | 2 +- tests/testapplications/elements/content/TextEditElement.qml | 2 +- tests/testapplications/elements/content/TextElement.qml | 2 +- tests/testapplications/elements/content/TextInputElement.qml | 2 +- tests/testapplications/elements/content/TrailEmitterElement.qml | 2 +- tests/testapplications/elements/content/XmlListModelElement.qml | 2 +- tests/testapplications/elements/content/elements.js | 2 +- tests/testapplications/elements/elements.qml | 2 +- tests/testapplications/listview/alteredViews.qml | 2 +- tests/testapplications/listview/onRemove.qml | 2 +- tests/testapplications/listview/sections.qml | 2 +- tests/testapplications/listview/viewTransitions.qml | 2 +- tests/testapplications/qsgimage/ImageNG.qml | 2 +- tests/testapplications/qsgimage/img-align.qml | 2 +- tests/testapplications/text/Button.qml | 2 +- tests/testapplications/text/ControlView.qml | 2 +- tests/testapplications/text/text.qml | 2 +- tests/testapplications/text/textedit.qml | 2 +- tests/testapplications/text/textinput.qml | 2 +- tests/testapplications/textlayout/styledtext-layout.qml | 2 +- 576 files changed, 576 insertions(+), 576 deletions(-) (limited to 'tests') diff --git a/tests/auto/compilerwarnings/data/test_cpp.txt b/tests/auto/compilerwarnings/data/test_cpp.txt index f2e97afab0..2924bb7bb0 100644 --- a/tests/auto/compilerwarnings/data/test_cpp.txt +++ b/tests/auto/compilerwarnings/data/test_cpp.txt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickage/data/jump.qml b/tests/auto/particles/qquickage/data/jump.qml index 98cf70cd66..36520ba7ab 100644 --- a/tests/auto/particles/qquickage/data/jump.qml +++ b/tests/auto/particles/qquickage/data/jump.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickage/data/kill.qml b/tests/auto/particles/qquickage/data/kill.qml index 7a807387f5..4f3c62116a 100644 --- a/tests/auto/particles/qquickage/data/kill.qml +++ b/tests/auto/particles/qquickage/data/kill.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickage/data/onceoff.qml b/tests/auto/particles/qquickage/data/onceoff.qml index 0df9ede170..8d70794967 100644 --- a/tests/auto/particles/qquickage/data/onceoff.qml +++ b/tests/auto/particles/qquickage/data/onceoff.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickage/data/sustained.qml b/tests/auto/particles/qquickage/data/sustained.qml index 8376b2428c..b7750409c9 100644 --- a/tests/auto/particles/qquickage/data/sustained.qml +++ b/tests/auto/particles/qquickage/data/sustained.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickage/tst_qquickage.cpp b/tests/auto/particles/qquickage/tst_qquickage.cpp index 3793e66167..ec2146bc5a 100644 --- a/tests/auto/particles/qquickage/tst_qquickage.cpp +++ b/tests/auto/particles/qquickage/tst_qquickage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickangleddirection/data/basic.qml b/tests/auto/particles/qquickangleddirection/data/basic.qml index 8b67e1c2d4..576f5aef7d 100644 --- a/tests/auto/particles/qquickangleddirection/data/basic.qml +++ b/tests/auto/particles/qquickangleddirection/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickangleddirection/tst_qquickangleddirection.cpp b/tests/auto/particles/qquickangleddirection/tst_qquickangleddirection.cpp index 9f9319e5d5..b2012e5d86 100644 --- a/tests/auto/particles/qquickangleddirection/tst_qquickangleddirection.cpp +++ b/tests/auto/particles/qquickangleddirection/tst_qquickangleddirection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcumulativedirection/data/basic.qml b/tests/auto/particles/qquickcumulativedirection/data/basic.qml index 3be361cad5..6ad55645dc 100644 --- a/tests/auto/particles/qquickcumulativedirection/data/basic.qml +++ b/tests/auto/particles/qquickcumulativedirection/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcumulativedirection/tst_qquickcumulativedirection.cpp b/tests/auto/particles/qquickcumulativedirection/tst_qquickcumulativedirection.cpp index 1289d825c6..989ee52a52 100644 --- a/tests/auto/particles/qquickcumulativedirection/tst_qquickcumulativedirection.cpp +++ b/tests/auto/particles/qquickcumulativedirection/tst_qquickcumulativedirection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcustomaffector/data/affectedSignal.qml b/tests/auto/particles/qquickcustomaffector/data/affectedSignal.qml index 520a3ea0c0..04e84d4a1b 100644 --- a/tests/auto/particles/qquickcustomaffector/data/affectedSignal.qml +++ b/tests/auto/particles/qquickcustomaffector/data/affectedSignal.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcustomaffector/data/basic.qml b/tests/auto/particles/qquickcustomaffector/data/basic.qml index db071635b2..5ea4fc19ef 100644 --- a/tests/auto/particles/qquickcustomaffector/data/basic.qml +++ b/tests/auto/particles/qquickcustomaffector/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcustomaffector/data/move.qml b/tests/auto/particles/qquickcustomaffector/data/move.qml index 55f8e164ad..a32d205dac 100644 --- a/tests/auto/particles/qquickcustomaffector/data/move.qml +++ b/tests/auto/particles/qquickcustomaffector/data/move.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcustomaffector/tst_qquickcustomaffector.cpp b/tests/auto/particles/qquickcustomaffector/tst_qquickcustomaffector.cpp index b6710ec9d7..b6b7125aef 100644 --- a/tests/auto/particles/qquickcustomaffector/tst_qquickcustomaffector.cpp +++ b/tests/auto/particles/qquickcustomaffector/tst_qquickcustomaffector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcustomparticle/data/basic.qml b/tests/auto/particles/qquickcustomparticle/data/basic.qml index 4174daf055..1e1a02ce4b 100644 --- a/tests/auto/particles/qquickcustomparticle/data/basic.qml +++ b/tests/auto/particles/qquickcustomparticle/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcustomparticle/data/deleteSourceItem.qml b/tests/auto/particles/qquickcustomparticle/data/deleteSourceItem.qml index b026b64f4f..90a98e4b53 100644 --- a/tests/auto/particles/qquickcustomparticle/data/deleteSourceItem.qml +++ b/tests/auto/particles/qquickcustomparticle/data/deleteSourceItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickcustomparticle/tst_qquickcustomparticle.cpp b/tests/auto/particles/qquickcustomparticle/tst_qquickcustomparticle.cpp index c7f99971e6..fe7632cbaa 100644 --- a/tests/auto/particles/qquickcustomparticle/tst_qquickcustomparticle.cpp +++ b/tests/auto/particles/qquickcustomparticle/tst_qquickcustomparticle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickellipseextruder/data/basic.qml b/tests/auto/particles/qquickellipseextruder/data/basic.qml index 9b9a902d4b..1a2b39d3a0 100644 --- a/tests/auto/particles/qquickellipseextruder/data/basic.qml +++ b/tests/auto/particles/qquickellipseextruder/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickellipseextruder/tst_qquickellipseextruder.cpp b/tests/auto/particles/qquickellipseextruder/tst_qquickellipseextruder.cpp index 890fc1323e..ac228f331d 100644 --- a/tests/auto/particles/qquickellipseextruder/tst_qquickellipseextruder.cpp +++ b/tests/auto/particles/qquickellipseextruder/tst_qquickellipseextruder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickfriction/data/basic.qml b/tests/auto/particles/qquickfriction/data/basic.qml index c4b6e12834..4ff7880618 100644 --- a/tests/auto/particles/qquickfriction/data/basic.qml +++ b/tests/auto/particles/qquickfriction/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickfriction/data/threshold.qml b/tests/auto/particles/qquickfriction/data/threshold.qml index 319b3ef950..b76ebe9ade 100644 --- a/tests/auto/particles/qquickfriction/data/threshold.qml +++ b/tests/auto/particles/qquickfriction/data/threshold.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickfriction/tst_qquickfriction.cpp b/tests/auto/particles/qquickfriction/tst_qquickfriction.cpp index eb872930db..4036add8f1 100644 --- a/tests/auto/particles/qquickfriction/tst_qquickfriction.cpp +++ b/tests/auto/particles/qquickfriction/tst_qquickfriction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickgravity/data/basic.qml b/tests/auto/particles/qquickgravity/data/basic.qml index bf0a16e912..74da6fc00b 100644 --- a/tests/auto/particles/qquickgravity/data/basic.qml +++ b/tests/auto/particles/qquickgravity/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickgravity/tst_qquickgravity.cpp b/tests/auto/particles/qquickgravity/tst_qquickgravity.cpp index 945a6e03ad..755d79b5fa 100644 --- a/tests/auto/particles/qquickgravity/tst_qquickgravity.cpp +++ b/tests/auto/particles/qquickgravity/tst_qquickgravity.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickgroupgoal/data/basic.qml b/tests/auto/particles/qquickgroupgoal/data/basic.qml index 91f71c23c3..8e25a4dc3f 100644 --- a/tests/auto/particles/qquickgroupgoal/data/basic.qml +++ b/tests/auto/particles/qquickgroupgoal/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickgroupgoal/tst_qquickgroupgoal.cpp b/tests/auto/particles/qquickgroupgoal/tst_qquickgroupgoal.cpp index 8a62a5e347..5416ae0609 100644 --- a/tests/auto/particles/qquickgroupgoal/tst_qquickgroupgoal.cpp +++ b/tests/auto/particles/qquickgroupgoal/tst_qquickgroupgoal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickimageparticle/data/basic.qml b/tests/auto/particles/qquickimageparticle/data/basic.qml index 0277d73560..c9137588a2 100644 --- a/tests/auto/particles/qquickimageparticle/data/basic.qml +++ b/tests/auto/particles/qquickimageparticle/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickimageparticle/data/colorVariance.qml b/tests/auto/particles/qquickimageparticle/data/colorVariance.qml index 05b6e83e33..84a6e5bb71 100644 --- a/tests/auto/particles/qquickimageparticle/data/colorVariance.qml +++ b/tests/auto/particles/qquickimageparticle/data/colorVariance.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickimageparticle/data/colored.qml b/tests/auto/particles/qquickimageparticle/data/colored.qml index b5d49cc875..7db4bf6d54 100644 --- a/tests/auto/particles/qquickimageparticle/data/colored.qml +++ b/tests/auto/particles/qquickimageparticle/data/colored.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickimageparticle/data/deformed.qml b/tests/auto/particles/qquickimageparticle/data/deformed.qml index 6dc4a7b320..80a9184b23 100644 --- a/tests/auto/particles/qquickimageparticle/data/deformed.qml +++ b/tests/auto/particles/qquickimageparticle/data/deformed.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickimageparticle/data/sprite.qml b/tests/auto/particles/qquickimageparticle/data/sprite.qml index ea48a4214a..0fd69632a7 100644 --- a/tests/auto/particles/qquickimageparticle/data/sprite.qml +++ b/tests/auto/particles/qquickimageparticle/data/sprite.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickimageparticle/data/tabled.qml b/tests/auto/particles/qquickimageparticle/data/tabled.qml index c51398a794..6e74feb9b5 100644 --- a/tests/auto/particles/qquickimageparticle/data/tabled.qml +++ b/tests/auto/particles/qquickimageparticle/data/tabled.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickimageparticle/tst_qquickimageparticle.cpp b/tests/auto/particles/qquickimageparticle/tst_qquickimageparticle.cpp index 3b743018be..27d4996089 100644 --- a/tests/auto/particles/qquickimageparticle/tst_qquickimageparticle.cpp +++ b/tests/auto/particles/qquickimageparticle/tst_qquickimageparticle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickitemparticle/data/basic.qml b/tests/auto/particles/qquickitemparticle/data/basic.qml index 6fdd8ae779..cf84e572f3 100644 --- a/tests/auto/particles/qquickitemparticle/data/basic.qml +++ b/tests/auto/particles/qquickitemparticle/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickitemparticle/tst_qquickitemparticle.cpp b/tests/auto/particles/qquickitemparticle/tst_qquickitemparticle.cpp index 2acbe784c0..5227552079 100644 --- a/tests/auto/particles/qquickitemparticle/tst_qquickitemparticle.cpp +++ b/tests/auto/particles/qquickitemparticle/tst_qquickitemparticle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquicklineextruder/data/basic.qml b/tests/auto/particles/qquicklineextruder/data/basic.qml index c5ea48a057..41c0a56c01 100644 --- a/tests/auto/particles/qquicklineextruder/data/basic.qml +++ b/tests/auto/particles/qquicklineextruder/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquicklineextruder/tst_qquicklineextruder.cpp b/tests/auto/particles/qquicklineextruder/tst_qquicklineextruder.cpp index 412757bdc4..8b3e63a97b 100644 --- a/tests/auto/particles/qquicklineextruder/tst_qquicklineextruder.cpp +++ b/tests/auto/particles/qquicklineextruder/tst_qquicklineextruder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickmaskextruder/data/basic.qml b/tests/auto/particles/qquickmaskextruder/data/basic.qml index 3789326388..b981261078 100644 --- a/tests/auto/particles/qquickmaskextruder/data/basic.qml +++ b/tests/auto/particles/qquickmaskextruder/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickmaskextruder/tst_qquickmaskextruder.cpp b/tests/auto/particles/qquickmaskextruder/tst_qquickmaskextruder.cpp index 2f1fb42651..4660975e9b 100644 --- a/tests/auto/particles/qquickmaskextruder/tst_qquickmaskextruder.cpp +++ b/tests/auto/particles/qquickmaskextruder/tst_qquickmaskextruder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickparticlegroup/data/basic.qml b/tests/auto/particles/qquickparticlegroup/data/basic.qml index 1a1299eb66..0c5849486c 100644 --- a/tests/auto/particles/qquickparticlegroup/data/basic.qml +++ b/tests/auto/particles/qquickparticlegroup/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickparticlegroup/tst_qquickparticlegroup.cpp b/tests/auto/particles/qquickparticlegroup/tst_qquickparticlegroup.cpp index 0bd8946fb8..c22c35b5ab 100644 --- a/tests/auto/particles/qquickparticlegroup/tst_qquickparticlegroup.cpp +++ b/tests/auto/particles/qquickparticlegroup/tst_qquickparticlegroup.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickparticlesystem/data/basic.qml b/tests/auto/particles/qquickparticlesystem/data/basic.qml index 0277d73560..c9137588a2 100644 --- a/tests/auto/particles/qquickparticlesystem/data/basic.qml +++ b/tests/auto/particles/qquickparticlesystem/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickparticlesystem/tst_qquickparticlesystem.cpp b/tests/auto/particles/qquickparticlesystem/tst_qquickparticlesystem.cpp index b82962887f..87e4cb612a 100644 --- a/tests/auto/particles/qquickparticlesystem/tst_qquickparticlesystem.cpp +++ b/tests/auto/particles/qquickparticlesystem/tst_qquickparticlesystem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickpointattractor/data/basic.qml b/tests/auto/particles/qquickpointattractor/data/basic.qml index ebaec9afad..b37aab786b 100644 --- a/tests/auto/particles/qquickpointattractor/data/basic.qml +++ b/tests/auto/particles/qquickpointattractor/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickpointattractor/tst_qquickpointattractor.cpp b/tests/auto/particles/qquickpointattractor/tst_qquickpointattractor.cpp index 78b1fd49a8..c0aec23018 100644 --- a/tests/auto/particles/qquickpointattractor/tst_qquickpointattractor.cpp +++ b/tests/auto/particles/qquickpointattractor/tst_qquickpointattractor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickpointdirection/data/basic.qml b/tests/auto/particles/qquickpointdirection/data/basic.qml index bb17500a82..0e842558c3 100644 --- a/tests/auto/particles/qquickpointdirection/data/basic.qml +++ b/tests/auto/particles/qquickpointdirection/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickpointdirection/tst_qquickpointdirection.cpp b/tests/auto/particles/qquickpointdirection/tst_qquickpointdirection.cpp index f38d57c24b..1a609614ed 100644 --- a/tests/auto/particles/qquickpointdirection/tst_qquickpointdirection.cpp +++ b/tests/auto/particles/qquickpointdirection/tst_qquickpointdirection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickrectangleextruder/data/basic.qml b/tests/auto/particles/qquickrectangleextruder/data/basic.qml index 3e145d7514..65e4e59bb6 100644 --- a/tests/auto/particles/qquickrectangleextruder/data/basic.qml +++ b/tests/auto/particles/qquickrectangleextruder/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickrectangleextruder/tst_qquickrectangleextruder.cpp b/tests/auto/particles/qquickrectangleextruder/tst_qquickrectangleextruder.cpp index 531251d0ad..0891025bf1 100644 --- a/tests/auto/particles/qquickrectangleextruder/tst_qquickrectangleextruder.cpp +++ b/tests/auto/particles/qquickrectangleextruder/tst_qquickrectangleextruder.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickspritegoal/data/basic.qml b/tests/auto/particles/qquickspritegoal/data/basic.qml index 3fa81ae9ab..7b88e5c608 100644 --- a/tests/auto/particles/qquickspritegoal/data/basic.qml +++ b/tests/auto/particles/qquickspritegoal/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickspritegoal/tst_qquickspritegoal.cpp b/tests/auto/particles/qquickspritegoal/tst_qquickspritegoal.cpp index 559a966efa..214263bdff 100644 --- a/tests/auto/particles/qquickspritegoal/tst_qquickspritegoal.cpp +++ b/tests/auto/particles/qquickspritegoal/tst_qquickspritegoal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquicktargetdirection/data/basic.qml b/tests/auto/particles/qquicktargetdirection/data/basic.qml index 6823359fe4..20ff1a7b82 100644 --- a/tests/auto/particles/qquicktargetdirection/data/basic.qml +++ b/tests/auto/particles/qquicktargetdirection/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquicktargetdirection/tst_qquicktargetdirection.cpp b/tests/auto/particles/qquicktargetdirection/tst_qquicktargetdirection.cpp index f06076b865..0424d10169 100644 --- a/tests/auto/particles/qquicktargetdirection/tst_qquicktargetdirection.cpp +++ b/tests/auto/particles/qquicktargetdirection/tst_qquicktargetdirection.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquicktrailemitter/data/basic.qml b/tests/auto/particles/qquicktrailemitter/data/basic.qml index 9901d2e75d..b25113bc6a 100644 --- a/tests/auto/particles/qquicktrailemitter/data/basic.qml +++ b/tests/auto/particles/qquicktrailemitter/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquicktrailemitter/tst_qquicktrailemitter.cpp b/tests/auto/particles/qquicktrailemitter/tst_qquicktrailemitter.cpp index fa1f33b5d6..98209e218c 100644 --- a/tests/auto/particles/qquicktrailemitter/tst_qquicktrailemitter.cpp +++ b/tests/auto/particles/qquicktrailemitter/tst_qquicktrailemitter.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickturbulence/data/basic.qml b/tests/auto/particles/qquickturbulence/data/basic.qml index 9ff1e8223c..b07c8a3946 100644 --- a/tests/auto/particles/qquickturbulence/data/basic.qml +++ b/tests/auto/particles/qquickturbulence/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickturbulence/tst_qquickturbulence.cpp b/tests/auto/particles/qquickturbulence/tst_qquickturbulence.cpp index 596a5e187e..78cc9fe444 100644 --- a/tests/auto/particles/qquickturbulence/tst_qquickturbulence.cpp +++ b/tests/auto/particles/qquickturbulence/tst_qquickturbulence.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickwander/data/basic.qml b/tests/auto/particles/qquickwander/data/basic.qml index f693f77803..ae5a9bc368 100644 --- a/tests/auto/particles/qquickwander/data/basic.qml +++ b/tests/auto/particles/qquickwander/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/qquickwander/tst_qquickwander.cpp b/tests/auto/particles/qquickwander/tst_qquickwander.cpp index 3f8127c081..437121ab85 100644 --- a/tests/auto/particles/qquickwander/tst_qquickwander.cpp +++ b/tests/auto/particles/qquickwander/tst_qquickwander.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/particles/shared/particlestestsshared.h b/tests/auto/particles/shared/particlestestsshared.h index 23e85d5ade..5a77eda948 100644 --- a/tests/auto/particles/shared/particlestestsshared.h +++ b/tests/auto/particles/shared/particlestestsshared.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/animation/qabstractanimationjob/tst_qabstractanimationjob.cpp b/tests/auto/qml/animation/qabstractanimationjob/tst_qabstractanimationjob.cpp index 610e354ac5..edc946547e 100644 --- a/tests/auto/qml/animation/qabstractanimationjob/tst_qabstractanimationjob.cpp +++ b/tests/auto/qml/animation/qabstractanimationjob/tst_qabstractanimationjob.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/animation/qanimationgroupjob/tst_qanimationgroupjob.cpp b/tests/auto/qml/animation/qanimationgroupjob/tst_qanimationgroupjob.cpp index 5410fa24aa..51429ecb74 100644 --- a/tests/auto/qml/animation/qanimationgroupjob/tst_qanimationgroupjob.cpp +++ b/tests/auto/qml/animation/qanimationgroupjob/tst_qanimationgroupjob.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp b/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp index 60e3fa69bc..3fed59ea20 100644 --- a/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp +++ b/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/animation/qpauseanimationjob/tst_qpauseanimationjob.cpp b/tests/auto/qml/animation/qpauseanimationjob/tst_qpauseanimationjob.cpp index 62a1796f5b..a832c58ae3 100644 --- a/tests/auto/qml/animation/qpauseanimationjob/tst_qpauseanimationjob.cpp +++ b/tests/auto/qml/animation/qpauseanimationjob/tst_qpauseanimationjob.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/animation/qsequentialanimationgroupjob/tst_qsequentialanimationgroupjob.cpp b/tests/auto/qml/animation/qsequentialanimationgroupjob/tst_qsequentialanimationgroupjob.cpp index cd0767ca18..bb626293aa 100644 --- a/tests/auto/qml/animation/qsequentialanimationgroupjob/tst_qsequentialanimationgroupjob.cpp +++ b/tests/auto/qml/animation/qsequentialanimationgroupjob/tst_qsequentialanimationgroupjob.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qdebugmessageservice/data/test.qml b/tests/auto/qml/debugger/qdebugmessageservice/data/test.qml index 167d22721c..02248eda64 100644 --- a/tests/auto/qml/debugger/qdebugmessageservice/data/test.qml +++ b/tests/auto/qml/debugger/qdebugmessageservice/data/test.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qdebugmessageservice/tst_qdebugmessageservice.cpp b/tests/auto/qml/debugger/qdebugmessageservice/tst_qdebugmessageservice.cpp index 2b9efb62d7..363efeabbc 100644 --- a/tests/auto/qml/debugger/qdebugmessageservice/tst_qdebugmessageservice.cpp +++ b/tests/auto/qml/debugger/qdebugmessageservice/tst_qdebugmessageservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp index a9f92cfd25..8dfd25b58b 100644 --- a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp +++ b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp b/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp index 40cde5fc85..bca40e9acd 100644 --- a/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp +++ b/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/breakpointRelocation.qml b/tests/auto/qml/debugger/qqmldebugjs/data/breakpointRelocation.qml index 598d99f947..d54b704da8 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/breakpointRelocation.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/breakpointRelocation.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/changeBreakpoint.qml b/tests/auto/qml/debugger/qqmldebugjs/data/changeBreakpoint.qml index 4b856ca452..440767b029 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/changeBreakpoint.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/changeBreakpoint.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/condition.qml b/tests/auto/qml/debugger/qqmldebugjs/data/condition.qml index f3fbeb833c..2fb83143f6 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/condition.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/condition.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/createComponent.qml b/tests/auto/qml/debugger/qqmldebugjs/data/createComponent.qml index e8943ecfb8..bf3bf31a69 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/createComponent.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/createComponent.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/exception.qml b/tests/auto/qml/debugger/qqmldebugjs/data/exception.qml index 65533d95f7..04999c0234 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/exception.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/exception.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/loadjsfile.qml b/tests/auto/qml/debugger/qqmldebugjs/data/loadjsfile.qml index af403a5233..a2f868c95e 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/loadjsfile.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/loadjsfile.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/oncompleted.qml b/tests/auto/qml/debugger/qqmldebugjs/data/oncompleted.qml index 3bd90c4d67..fa424039c1 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/oncompleted.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/oncompleted.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/stepAction.qml b/tests/auto/qml/debugger/qqmldebugjs/data/stepAction.qml index e73f95124b..0cf566a936 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/stepAction.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/stepAction.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/test.js b/tests/auto/qml/debugger/qqmldebugjs/data/test.js index 1c854bc76e..ac42bfce01 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/test.js +++ b/tests/auto/qml/debugger/qqmldebugjs/data/test.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/test.qml b/tests/auto/qml/debugger/qqmldebugjs/data/test.qml index 4d2766668b..e019ba8b17 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/test.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/test.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/data/timer.qml b/tests/auto/qml/debugger/qqmldebugjs/data/timer.qml index bd27e50549..927cfe805a 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/data/timer.qml +++ b/tests/auto/qml/debugger/qqmldebugjs/data/timer.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp b/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp index 0429643e32..3d5d4d5243 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp +++ b/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp b/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp index 767da7dd63..a895f16dc5 100644 --- a/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp +++ b/tests/auto/qml/debugger/qqmldebugservice/tst_qqmldebugservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/tst_qqmlenginedebuginspectorintegration.cpp b/tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/tst_qqmlenginedebuginspectorintegration.cpp index 19a39c5656..6f99afd917 100644 --- a/tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/tst_qqmlenginedebuginspectorintegration.cpp +++ b/tests/auto/qml/debugger/qqmlenginedebuginspectorintegrationtest/tst_qqmlenginedebuginspectorintegration.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmlenginedebugservice/tst_qqmlenginedebugservice.cpp b/tests/auto/qml/debugger/qqmlenginedebugservice/tst_qqmlenginedebugservice.cpp index 00db4a1f34..421d4f0795 100644 --- a/tests/auto/qml/debugger/qqmlenginedebugservice/tst_qqmlenginedebugservice.cpp +++ b/tests/auto/qml/debugger/qqmlenginedebugservice/tst_qqmlenginedebugservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.cpp b/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.cpp index 92f48f398f..f1fbdd20a9 100644 --- a/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.cpp +++ b/tests/auto/qml/debugger/qqmlinspector/tst_qqmlinspector.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp b/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp index d8b538d79e..3a925e2905 100644 --- a/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp +++ b/tests/auto/qml/debugger/qqmlprofilerservice/tst_qqmlprofilerservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp b/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp index 7546e4da8b..9e2d0189cc 100644 --- a/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp +++ b/tests/auto/qml/debugger/qv8profilerservice/tst_qv8profilerservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/debugutil.cpp b/tests/auto/qml/debugger/shared/debugutil.cpp index 213888ecee..0069131bcf 100644 --- a/tests/auto/qml/debugger/shared/debugutil.cpp +++ b/tests/auto/qml/debugger/shared/debugutil.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/debugutil_p.h b/tests/auto/qml/debugger/shared/debugutil_p.h index 0791d05205..5b272749ae 100644 --- a/tests/auto/qml/debugger/shared/debugutil_p.h +++ b/tests/auto/qml/debugger/shared/debugutil_p.h @@ -1,7 +1,7 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmldebugclient.cpp b/tests/auto/qml/debugger/shared/qqmldebugclient.cpp index b6ec132339..be3042311b 100644 --- a/tests/auto/qml/debugger/shared/qqmldebugclient.cpp +++ b/tests/auto/qml/debugger/shared/qqmldebugclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmldebugclient.h b/tests/auto/qml/debugger/shared/qqmldebugclient.h index f596641fd1..fc0a80d565 100644 --- a/tests/auto/qml/debugger/shared/qqmldebugclient.h +++ b/tests/auto/qml/debugger/shared/qqmldebugclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp b/tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp index dd124a3745..996998b1ff 100644 --- a/tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp +++ b/tests/auto/qml/debugger/shared/qqmldebugtestservice.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmldebugtestservice.h b/tests/auto/qml/debugger/shared/qqmldebugtestservice.h index 48334fffaa..b966a8bac9 100644 --- a/tests/auto/qml/debugger/shared/qqmldebugtestservice.h +++ b/tests/auto/qml/debugger/shared/qqmldebugtestservice.h @@ -1,7 +1,7 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmlenginedebugclient.cpp b/tests/auto/qml/debugger/shared/qqmlenginedebugclient.cpp index a2b053005e..d066c84efe 100644 --- a/tests/auto/qml/debugger/shared/qqmlenginedebugclient.cpp +++ b/tests/auto/qml/debugger/shared/qqmlenginedebugclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmlenginedebugclient.h b/tests/auto/qml/debugger/shared/qqmlenginedebugclient.h index 9e88363e83..1d4b95a9e3 100644 --- a/tests/auto/qml/debugger/shared/qqmlenginedebugclient.h +++ b/tests/auto/qml/debugger/shared/qqmlenginedebugclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmlinspectorclient.cpp b/tests/auto/qml/debugger/shared/qqmlinspectorclient.cpp index 7cf771061e..a6646968fa 100644 --- a/tests/auto/qml/debugger/shared/qqmlinspectorclient.cpp +++ b/tests/auto/qml/debugger/shared/qqmlinspectorclient.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/debugger/shared/qqmlinspectorclient.h b/tests/auto/qml/debugger/shared/qqmlinspectorclient.h index 165cefd8b3..98d50850af 100644 --- a/tests/auto/qml/debugger/shared/qqmlinspectorclient.h +++ b/tests/auto/qml/debugger/shared/qqmlinspectorclient.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/parserstress/tst_parserstress.cpp b/tests/auto/qml/parserstress/tst_parserstress.cpp index 6d2da5114a..afa58f4437 100644 --- a/tests/auto/qml/parserstress/tst_parserstress.cpp +++ b/tests/auto/qml/parserstress/tst_parserstress.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qjsengine/tst_qjsengine.cpp b/tests/auto/qml/qjsengine/tst_qjsengine.cpp index 87d2673c2f..55c3fc800a 100644 --- a/tests/auto/qml/qjsengine/tst_qjsengine.cpp +++ b/tests/auto/qml/qjsengine/tst_qjsengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qjsonbinding/tst_qjsonbinding.cpp b/tests/auto/qml/qjsonbinding/tst_qjsonbinding.cpp index a998006513..b89192130e 100644 --- a/tests/auto/qml/qjsonbinding/tst_qjsonbinding.cpp +++ b/tests/auto/qml/qjsonbinding/tst_qjsonbinding.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp b/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp index 156e0beeb6..49e66c08dd 100644 --- a/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp +++ b/tests/auto/qml/qjsvalue/tst_qjsvalue.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qjsvalue/tst_qjsvalue.h b/tests/auto/qml/qjsvalue/tst_qjsvalue.h index ab9a5ed771..02333d0139 100644 --- a/tests/auto/qml/qjsvalue/tst_qjsvalue.h +++ b/tests/auto/qml/qjsvalue/tst_qjsvalue.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qjsvalueiterator/tst_qjsvalueiterator.cpp b/tests/auto/qml/qjsvalueiterator/tst_qjsvalueiterator.cpp index 987f060b20..fa6ac3249b 100644 --- a/tests/auto/qml/qjsvalueiterator/tst_qjsvalueiterator.cpp +++ b/tests/auto/qml/qjsvalueiterator/tst_qjsvalueiterator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qmlmin/tst_qmlmin.cpp b/tests/auto/qml/qmlmin/tst_qmlmin.cpp index 60b69f2239..a2ac6949ee 100644 --- a/tests/auto/qml/qmlmin/tst_qmlmin.cpp +++ b/tests/auto/qml/qmlmin/tst_qmlmin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qmlplugindump/tst_qmlplugindump.cpp b/tests/auto/qml/qmlplugindump/tst_qmlplugindump.cpp index 269197d630..6aca47656b 100644 --- a/tests/auto/qml/qmlplugindump/tst_qmlplugindump.cpp +++ b/tests/auto/qml/qmlplugindump/tst_qmlplugindump.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlbinding/tst_qqmlbinding.cpp b/tests/auto/qml/qqmlbinding/tst_qqmlbinding.cpp index 4c411fb5ec..dfe5c6937a 100644 --- a/tests/auto/qml/qqmlbinding/tst_qqmlbinding.cpp +++ b/tests/auto/qml/qqmlbinding/tst_qqmlbinding.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlbundle/data/imports/bundletest/plugin.cpp b/tests/auto/qml/qqmlbundle/data/imports/bundletest/plugin.cpp index b7d47a8b51..f0f13173b1 100644 --- a/tests/auto/qml/qqmlbundle/data/imports/bundletest/plugin.cpp +++ b/tests/auto/qml/qqmlbundle/data/imports/bundletest/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlbundle/tst_qqmlbundle.cpp b/tests/auto/qml/qqmlbundle/tst_qqmlbundle.cpp index 168e685699..1ddadcc81f 100644 --- a/tests/auto/qml/qqmlbundle/tst_qqmlbundle.cpp +++ b/tests/auto/qml/qqmlbundle/tst_qqmlbundle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp b/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp index 748d4d71e8..697c8103b0 100644 --- a/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp +++ b/tests/auto/qml/qqmlcomponent/tst_qqmlcomponent.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlconnections/tst_qqmlconnections.cpp b/tests/auto/qml/qqmlconnections/tst_qqmlconnections.cpp index a7ef405aa3..dbf48779d6 100644 --- a/tests/auto/qml/qqmlconnections/tst_qqmlconnections.cpp +++ b/tests/auto/qml/qqmlconnections/tst_qqmlconnections.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlconsole/data/assert.qml b/tests/auto/qml/qqmlconsole/data/assert.qml index 770c801441..fb62ee68f9 100644 --- a/tests/auto/qml/qqmlconsole/data/assert.qml +++ b/tests/auto/qml/qqmlconsole/data/assert.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlconsole/data/exception.qml b/tests/auto/qml/qqmlconsole/data/exception.qml index 7b0b7c23e0..7faa36664e 100644 --- a/tests/auto/qml/qqmlconsole/data/exception.qml +++ b/tests/auto/qml/qqmlconsole/data/exception.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlconsole/data/logging.qml b/tests/auto/qml/qqmlconsole/data/logging.qml index 88edcc72ad..d54d714d8d 100644 --- a/tests/auto/qml/qqmlconsole/data/logging.qml +++ b/tests/auto/qml/qqmlconsole/data/logging.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlconsole/data/profiling.qml b/tests/auto/qml/qqmlconsole/data/profiling.qml index b848a2b8e8..1f09c66612 100644 --- a/tests/auto/qml/qqmlconsole/data/profiling.qml +++ b/tests/auto/qml/qqmlconsole/data/profiling.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlconsole/data/tracing.qml b/tests/auto/qml/qqmlconsole/data/tracing.qml index fbb0ca917c..4ce5f34441 100644 --- a/tests/auto/qml/qqmlconsole/data/tracing.qml +++ b/tests/auto/qml/qqmlconsole/data/tracing.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp b/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp index de424f8282..561602fda5 100644 --- a/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp +++ b/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlcontext/tst_qqmlcontext.cpp b/tests/auto/qml/qqmlcontext/tst_qqmlcontext.cpp index b6668f9e34..b1f92e3f34 100644 --- a/tests/auto/qml/qqmlcontext/tst_qqmlcontext.cpp +++ b/tests/auto/qml/qqmlcontext/tst_qqmlcontext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlcpputils/tst_qqmlcpputils.cpp b/tests/auto/qml/qqmlcpputils/tst_qqmlcpputils.cpp index 94d752a5be..8d58ac88e4 100644 --- a/tests/auto/qml/qqmlcpputils/tst_qqmlcpputils.cpp +++ b/tests/auto/qml/qqmlcpputils/tst_qqmlcpputils.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmldirparser/tst_qqmldirparser.cpp b/tests/auto/qml/qqmldirparser/tst_qqmldirparser.cpp index b2d239a90f..cd8f050d2d 100644 --- a/tests/auto/qml/qqmldirparser/tst_qqmldirparser.cpp +++ b/tests/auto/qml/qqmldirparser/tst_qqmldirparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlecmascript/testtypes.cpp b/tests/auto/qml/qqmlecmascript/testtypes.cpp index ef3bf60b65..8b0278373a 100644 --- a/tests/auto/qml/qqmlecmascript/testtypes.cpp +++ b/tests/auto/qml/qqmlecmascript/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlecmascript/testtypes.h b/tests/auto/qml/qqmlecmascript/testtypes.h index e0f5317945..e4dd1e3e18 100644 --- a/tests/auto/qml/qqmlecmascript/testtypes.h +++ b/tests/auto/qml/qqmlecmascript/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp index 9ecb3b6e1d..fee66695fc 100644 --- a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp +++ b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp b/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp index 2a78831ba1..4e1ac22337 100644 --- a/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp +++ b/tests/auto/qml/qqmlengine/tst_qqmlengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlerror/tst_qqmlerror.cpp b/tests/auto/qml/qqmlerror/tst_qqmlerror.cpp index 71f09a5816..6f24210823 100644 --- a/tests/auto/qml/qqmlerror/tst_qqmlerror.cpp +++ b/tests/auto/qml/qqmlerror/tst_qqmlerror.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlexpression/tst_qqmlexpression.cpp b/tests/auto/qml/qqmlexpression/tst_qqmlexpression.cpp index 3e6805076f..b137623e61 100644 --- a/tests/auto/qml/qqmlexpression/tst_qqmlexpression.cpp +++ b/tests/auto/qml/qqmlexpression/tst_qqmlexpression.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlglobal/tst_qqmlglobal.cpp b/tests/auto/qml/qqmlglobal/tst_qqmlglobal.cpp index b172545cc6..293eccbf64 100644 --- a/tests/auto/qml/qqmlglobal/tst_qqmlglobal.cpp +++ b/tests/auto/qml/qqmlglobal/tst_qqmlglobal.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlincubator/testtypes.cpp b/tests/auto/qml/qqmlincubator/testtypes.cpp index 3672c8efee..d926b6ae9b 100644 --- a/tests/auto/qml/qqmlincubator/testtypes.cpp +++ b/tests/auto/qml/qqmlincubator/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlincubator/testtypes.h b/tests/auto/qml/qqmlincubator/testtypes.h index 869fd43692..fedff61510 100644 --- a/tests/auto/qml/qqmlincubator/testtypes.h +++ b/tests/auto/qml/qqmlincubator/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlincubator/tst_qqmlincubator.cpp b/tests/auto/qml/qqmlincubator/tst_qqmlincubator.cpp index d684e35f65..ce3710f530 100644 --- a/tests/auto/qml/qqmlincubator/tst_qqmlincubator.cpp +++ b/tests/auto/qml/qqmlincubator/tst_qqmlincubator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlinfo/tst_qqmlinfo.cpp b/tests/auto/qml/qqmlinfo/tst_qqmlinfo.cpp index 75b725ef14..c0fb13c932 100644 --- a/tests/auto/qml/qqmlinfo/tst_qqmlinfo.cpp +++ b/tests/auto/qml/qqmlinfo/tst_qqmlinfo.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlinstruction/tst_qqmlinstruction.cpp b/tests/auto/qml/qqmlinstruction/tst_qqmlinstruction.cpp index e25c38d9cc..8d8b913df7 100644 --- a/tests/auto/qml/qqmlinstruction/tst_qqmlinstruction.cpp +++ b/tests/auto/qml/qqmlinstruction/tst_qqmlinstruction.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmllanguage/testtypes.cpp b/tests/auto/qml/qqmllanguage/testtypes.cpp index 0167144b1c..3957f9d872 100644 --- a/tests/auto/qml/qqmllanguage/testtypes.cpp +++ b/tests/auto/qml/qqmllanguage/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmllanguage/testtypes.h b/tests/auto/qml/qqmllanguage/testtypes.h index e83e9e11ac..703b26a73c 100644 --- a/tests/auto/qml/qqmllanguage/testtypes.h +++ b/tests/auto/qml/qqmllanguage/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp b/tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp index bd92c68f8e..0f9e328bd9 100644 --- a/tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp +++ b/tests/auto/qml/qqmllanguage/tst_qqmllanguage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmllistreference/tst_qqmllistreference.cpp b/tests/auto/qml/qqmllistreference/tst_qqmllistreference.cpp index 68f4553921..a37355b566 100644 --- a/tests/auto/qml/qqmllistreference/tst_qqmllistreference.cpp +++ b/tests/auto/qml/qqmllistreference/tst_qqmllistreference.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmllocale/tst_qqmllocale.cpp b/tests/auto/qml/qqmllocale/tst_qqmllocale.cpp index a7fa474a8a..53e49a4b9e 100644 --- a/tests/auto/qml/qqmllocale/tst_qqmllocale.cpp +++ b/tests/auto/qml/qqmllocale/tst_qqmllocale.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmetaobject/tst_qqmlmetaobject.cpp b/tests/auto/qml/qqmlmetaobject/tst_qqmlmetaobject.cpp index 9545cef108..5d6d0d66de 100644 --- a/tests/auto/qml/qqmlmetaobject/tst_qqmlmetaobject.cpp +++ b/tests/auto/qml/qqmlmetaobject/tst_qqmlmetaobject.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp b/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp index 2c75fe2826..d5dd364e25 100644 --- a/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp +++ b/tests/auto/qml/qqmlmetatype/tst_qqmlmetatype.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/invalidFirstCommandModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/invalidFirstCommandModule/plugin.cpp index af57db8400..925f3cdf86 100644 --- a/tests/auto/qml/qqmlmoduleplugin/invalidFirstCommandModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/invalidFirstCommandModule/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/invalidNamespaceModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/invalidNamespaceModule/plugin.cpp index 1ceeff8483..0ed1b20446 100644 --- a/tests/auto/qml/qqmlmoduleplugin/invalidNamespaceModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/invalidNamespaceModule/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/invalidStrictModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/invalidStrictModule/plugin.cpp index 1ceeff8483..0ed1b20446 100644 --- a/tests/auto/qml/qqmlmoduleplugin/invalidStrictModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/invalidStrictModule/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/nestedPlugin/nestedPlugin.cpp b/tests/auto/qml/qqmlmoduleplugin/nestedPlugin/nestedPlugin.cpp index 310704fdac..8b434dfb12 100644 --- a/tests/auto/qml/qqmlmoduleplugin/nestedPlugin/nestedPlugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/nestedPlugin/nestedPlugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp index 8b2e0615ee..1cdd0f7754 100644 --- a/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/plugin.2.1/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/plugin.2.1/plugin.cpp index 3d9812d20b..6b5c38f29a 100644 --- a/tests/auto/qml/qqmlmoduleplugin/plugin.2.1/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/plugin.2.1/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/plugin.2/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/plugin.2/plugin.cpp index c9dc60c818..12e31a4cb8 100644 --- a/tests/auto/qml/qqmlmoduleplugin/plugin.2/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/plugin.2/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/plugin/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/plugin/plugin.cpp index 3b975aa8e9..ee07c77e2f 100644 --- a/tests/auto/qml/qqmlmoduleplugin/plugin/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/plugin/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/pluginMixed/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/pluginMixed/plugin.cpp index 91e92f4259..4512f9a642 100644 --- a/tests/auto/qml/qqmlmoduleplugin/pluginMixed/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/pluginMixed/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/pluginVersion/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/pluginVersion/plugin.cpp index 12ef1b79c4..dfe2262e36 100644 --- a/tests/auto/qml/qqmlmoduleplugin/pluginVersion/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/pluginVersion/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/pluginWithQmlFile/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/pluginWithQmlFile/plugin.cpp index c26a4fc33c..34cf311b6b 100644 --- a/tests/auto/qml/qqmlmoduleplugin/pluginWithQmlFile/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/pluginWithQmlFile/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/pluginWrongCase/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/pluginWrongCase/plugin.cpp index faf8e50cc6..3daba28b3d 100644 --- a/tests/auto/qml/qqmlmoduleplugin/pluginWrongCase/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/pluginWrongCase/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/preemptedStrictModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/preemptedStrictModule/plugin.cpp index 52ed42b5c6..1b73f02934 100644 --- a/tests/auto/qml/qqmlmoduleplugin/preemptedStrictModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/preemptedStrictModule/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/preemptiveModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/preemptiveModule/plugin.cpp index 5956eb939b..3a62650b13 100644 --- a/tests/auto/qml/qqmlmoduleplugin/preemptiveModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/preemptiveModule/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/strictModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/strictModule/plugin.cpp index c8e72f2da3..8353c6b012 100644 --- a/tests/auto/qml/qqmlmoduleplugin/strictModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/strictModule/plugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlmoduleplugin/tst_qqmlmoduleplugin.cpp b/tests/auto/qml/qqmlmoduleplugin/tst_qqmlmoduleplugin.cpp index e016f71645..b2f860455e 100644 --- a/tests/auto/qml/qqmlmoduleplugin/tst_qqmlmoduleplugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/tst_qqmlmoduleplugin.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlparser/tst_qqmlparser.cpp b/tests/auto/qml/qqmlparser/tst_qqmlparser.cpp index 5d5cb81165..ec55709d35 100644 --- a/tests/auto/qml/qqmlparser/tst_qqmlparser.cpp +++ b/tests/auto/qml/qqmlparser/tst_qqmlparser.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp b/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp index 4283d1e4db..9b83698591 100644 --- a/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp +++ b/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlpropertycache/tst_qqmlpropertycache.cpp b/tests/auto/qml/qqmlpropertycache/tst_qqmlpropertycache.cpp index 70d32c924e..1ac53b2ee2 100644 --- a/tests/auto/qml/qqmlpropertycache/tst_qqmlpropertycache.cpp +++ b/tests/auto/qml/qqmlpropertycache/tst_qqmlpropertycache.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlpropertymap/tst_qqmlpropertymap.cpp b/tests/auto/qml/qqmlpropertymap/tst_qqmlpropertymap.cpp index af2a032a30..327716f1b5 100644 --- a/tests/auto/qml/qqmlpropertymap/tst_qqmlpropertymap.cpp +++ b/tests/auto/qml/qqmlpropertymap/tst_qqmlpropertymap.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlqt/tst_qqmlqt.cpp b/tests/auto/qml/qqmlqt/tst_qqmlqt.cpp index 9a525df973..c72299660f 100644 --- a/tests/auto/qml/qqmlqt/tst_qqmlqt.cpp +++ b/tests/auto/qml/qqmlqt/tst_qqmlqt.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp b/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp index 0b309d78e1..e52e4792a9 100644 --- a/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp +++ b/tests/auto/qml/qqmlsqldatabase/tst_qqmlsqldatabase.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmltimer/tst_qqmltimer.cpp b/tests/auto/qml/qqmltimer/tst_qqmltimer.cpp index 394568fac2..28a0f4f8c7 100644 --- a/tests/auto/qml/qqmltimer/tst_qqmltimer.cpp +++ b/tests/auto/qml/qqmltimer/tst_qqmltimer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmltranslation/tst_qqmltranslation.cpp b/tests/auto/qml/qqmltranslation/tst_qqmltranslation.cpp index 38760bdfa9..0e22d3cfca 100644 --- a/tests/auto/qml/qqmltranslation/tst_qqmltranslation.cpp +++ b/tests/auto/qml/qqmltranslation/tst_qqmltranslation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlvaluetypeproviders/testtypes.cpp b/tests/auto/qml/qqmlvaluetypeproviders/testtypes.cpp index c1fae2e2a3..43b2bbf5db 100644 --- a/tests/auto/qml/qqmlvaluetypeproviders/testtypes.cpp +++ b/tests/auto/qml/qqmlvaluetypeproviders/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlvaluetypeproviders/testtypes.h b/tests/auto/qml/qqmlvaluetypeproviders/testtypes.h index 79bcba45d2..86ac04317f 100644 --- a/tests/auto/qml/qqmlvaluetypeproviders/testtypes.h +++ b/tests/auto/qml/qqmlvaluetypeproviders/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlvaluetypeproviders/tst_qqmlvaluetypeproviders.cpp b/tests/auto/qml/qqmlvaluetypeproviders/tst_qqmlvaluetypeproviders.cpp index 6fb99c061e..bba4edd651 100644 --- a/tests/auto/qml/qqmlvaluetypeproviders/tst_qqmlvaluetypeproviders.cpp +++ b/tests/auto/qml/qqmlvaluetypeproviders/tst_qqmlvaluetypeproviders.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlvaluetypes/testtypes.cpp b/tests/auto/qml/qqmlvaluetypes/testtypes.cpp index fa14c46f63..8cec232746 100644 --- a/tests/auto/qml/qqmlvaluetypes/testtypes.cpp +++ b/tests/auto/qml/qqmlvaluetypes/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlvaluetypes/testtypes.h b/tests/auto/qml/qqmlvaluetypes/testtypes.h index d61de36002..3e5952f64d 100644 --- a/tests/auto/qml/qqmlvaluetypes/testtypes.h +++ b/tests/auto/qml/qqmlvaluetypes/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp b/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp index 793af5b61f..a8e598b11c 100644 --- a/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp +++ b/tests/auto/qml/qqmlvaluetypes/tst_qqmlvaluetypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp b/tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp index a85c0cc31b..29c7909267 100644 --- a/tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp +++ b/tests/auto/qml/qqmlxmlhttprequest/tst_qqmlxmlhttprequest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qquickchangeset/tst_qquickchangeset.cpp b/tests/auto/qml/qquickchangeset/tst_qquickchangeset.cpp index bc6634fdfe..77286b04b4 100644 --- a/tests/auto/qml/qquickchangeset/tst_qquickchangeset.cpp +++ b/tests/auto/qml/qquickchangeset/tst_qquickchangeset.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp b/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp index 5337753564..a8bb887158 100644 --- a/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp +++ b/tests/auto/qml/qquickfolderlistmodel/tst_qquickfolderlistmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qquicklistcompositor/tst_qquicklistcompositor.cpp b/tests/auto/qml/qquicklistcompositor/tst_qquicklistcompositor.cpp index 3028ba733f..5be501c94e 100644 --- a/tests/auto/qml/qquicklistcompositor/tst_qquicklistcompositor.cpp +++ b/tests/auto/qml/qquicklistcompositor/tst_qquicklistcompositor.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qquicklistmodel/tst_qquicklistmodel.cpp b/tests/auto/qml/qquicklistmodel/tst_qquicklistmodel.cpp index 6354f355d0..8deaae9902 100644 --- a/tests/auto/qml/qquicklistmodel/tst_qquicklistmodel.cpp +++ b/tests/auto/qml/qquicklistmodel/tst_qquicklistmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qquicklistmodelworkerscript/tst_qquicklistmodelworkerscript.cpp b/tests/auto/qml/qquicklistmodelworkerscript/tst_qquicklistmodelworkerscript.cpp index dc81aef4ab..8d5f34c010 100644 --- a/tests/auto/qml/qquicklistmodelworkerscript/tst_qquicklistmodelworkerscript.cpp +++ b/tests/auto/qml/qquicklistmodelworkerscript/tst_qquicklistmodelworkerscript.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qquickworkerscript/tst_qquickworkerscript.cpp b/tests/auto/qml/qquickworkerscript/tst_qquickworkerscript.cpp index 074a785bf0..46e0c9e436 100644 --- a/tests/auto/qml/qquickworkerscript/tst_qquickworkerscript.cpp +++ b/tests/auto/qml/qquickworkerscript/tst_qquickworkerscript.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/qrcqml/tst_qrcqml.cpp b/tests/auto/qml/qrcqml/tst_qrcqml.cpp index 0e7dc5f121..5abdcade0e 100644 --- a/tests/auto/qml/qrcqml/tst_qrcqml.cpp +++ b/tests/auto/qml/qrcqml/tst_qrcqml.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/runall.sh b/tests/auto/qml/runall.sh index c5ee318851..07318aa131 100644 --- a/tests/auto/qml/runall.sh +++ b/tests/auto/qml/runall.sh @@ -2,7 +2,7 @@ # ############################################################################# ## -## Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/v4/testtypes.cpp b/tests/auto/qml/v4/testtypes.cpp index 91572ff53a..ba81e591fc 100644 --- a/tests/auto/qml/v4/testtypes.cpp +++ b/tests/auto/qml/v4/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/v4/testtypes.h b/tests/auto/qml/v4/testtypes.h index acb48ef382..ee516f2927 100644 --- a/tests/auto/qml/v4/testtypes.h +++ b/tests/auto/qml/v4/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qml/v4/tst_v4.cpp b/tests/auto/qml/v4/tst_v4.cpp index 0644b363dd..e08bccd016 100644 --- a/tests/auto/qml/v4/tst_v4.cpp +++ b/tests/auto/qml/v4/tst_v4.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmldevtools/compile/tst_compile.cpp b/tests/auto/qmldevtools/compile/tst_compile.cpp index 3be0ceded0..ad63922763 100644 --- a/tests/auto/qmldevtools/compile/tst_compile.cpp +++ b/tests/auto/qmldevtools/compile/tst_compile.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/animatedimage/tst_animatedimage.qml b/tests/auto/qmltest/animatedimage/tst_animatedimage.qml index e917ba892d..d0574da4f5 100644 --- a/tests/auto/qmltest/animatedimage/tst_animatedimage.qml +++ b/tests/auto/qmltest/animatedimage/tst_animatedimage.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/animations/tst_abstractanimationjobcrash.qml b/tests/auto/qmltest/animations/tst_abstractanimationjobcrash.qml index 466bb160aa..6d4b17f83e 100644 --- a/tests/auto/qmltest/animations/tst_abstractanimationjobcrash.qml +++ b/tests/auto/qmltest/animations/tst_abstractanimationjobcrash.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/borderimage/InvalidSciFile.qml b/tests/auto/qmltest/borderimage/InvalidSciFile.qml index 7348b3b805..29db34af8b 100644 --- a/tests/auto/qmltest/borderimage/InvalidSciFile.qml +++ b/tests/auto/qmltest/borderimage/InvalidSciFile.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/borderimage/tst_borderimage.qml b/tests/auto/qmltest/borderimage/tst_borderimage.qml index 3bef7a6583..880832e8d4 100644 --- a/tests/auto/qmltest/borderimage/tst_borderimage.qml +++ b/tests/auto/qmltest/borderimage/tst_borderimage.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/buttonclick/Button.qml b/tests/auto/qmltest/buttonclick/Button.qml index 51ab0632d2..78954f2fef 100644 --- a/tests/auto/qmltest/buttonclick/Button.qml +++ b/tests/auto/qmltest/buttonclick/Button.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/buttonclick/tst_buttonclick.qml b/tests/auto/qmltest/buttonclick/tst_buttonclick.qml index d4ad287576..506d22602f 100644 --- a/tests/auto/qmltest/buttonclick/tst_buttonclick.qml +++ b/tests/auto/qmltest/buttonclick/tst_buttonclick.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/createbenchmark/item.qml b/tests/auto/qmltest/createbenchmark/item.qml index 649bd9cdab..3bb77f2dce 100644 --- a/tests/auto/qmltest/createbenchmark/item.qml +++ b/tests/auto/qmltest/createbenchmark/item.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/qmltest/createbenchmark/tst_createbenchmark.qml b/tests/auto/qmltest/createbenchmark/tst_createbenchmark.qml index b06ed1bc99..fe7a70687a 100644 --- a/tests/auto/qmltest/createbenchmark/tst_createbenchmark.qml +++ b/tests/auto/qmltest/createbenchmark/tst_createbenchmark.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/events/tst_drag.qml b/tests/auto/qmltest/events/tst_drag.qml index 64e485da84..7a17007495 100644 --- a/tests/auto/qmltest/events/tst_drag.qml +++ b/tests/auto/qmltest/events/tst_drag.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/events/tst_events.qml b/tests/auto/qmltest/events/tst_events.qml index 4c33988960..d96431f389 100644 --- a/tests/auto/qmltest/events/tst_events.qml +++ b/tests/auto/qmltest/events/tst_events.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/events/tst_wheel.qml b/tests/auto/qmltest/events/tst_wheel.qml index 93bed614d1..28767750c3 100644 --- a/tests/auto/qmltest/events/tst_wheel.qml +++ b/tests/auto/qmltest/events/tst_wheel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/fontloader/tst_fontloader.qml b/tests/auto/qmltest/fontloader/tst_fontloader.qml index 8827f92258..4d79a170f3 100644 --- a/tests/auto/qmltest/fontloader/tst_fontloader.qml +++ b/tests/auto/qmltest/fontloader/tst_fontloader.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/gradient/tst_gradient.qml b/tests/auto/qmltest/gradient/tst_gradient.qml index 1342012f78..c25ac19e84 100644 --- a/tests/auto/qmltest/gradient/tst_gradient.qml +++ b/tests/auto/qmltest/gradient/tst_gradient.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/image/tst_image.qml b/tests/auto/qmltest/image/tst_image.qml index 65b8493941..1afa5f8274 100644 --- a/tests/auto/qmltest/image/tst_image.qml +++ b/tests/auto/qmltest/image/tst_image.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/listmodel/tst_listmodel.qml b/tests/auto/qmltest/listmodel/tst_listmodel.qml index f36dae2c07..a975691462 100644 --- a/tests/auto/qmltest/listmodel/tst_listmodel.qml +++ b/tests/auto/qmltest/listmodel/tst_listmodel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/listview/tst_listview.qml b/tests/auto/qmltest/listview/tst_listview.qml index 196de04ea6..cbace624c3 100644 --- a/tests/auto/qmltest/listview/tst_listview.qml +++ b/tests/auto/qmltest/listview/tst_listview.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/pixel/tst_pixel.qml b/tests/auto/qmltest/pixel/tst_pixel.qml index f10840b9ab..9185ac1441 100644 --- a/tests/auto/qmltest/pixel/tst_pixel.qml +++ b/tests/auto/qmltest/pixel/tst_pixel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/qqmlbinding/tst_binding.qml b/tests/auto/qmltest/qqmlbinding/tst_binding.qml index 24d45aa3f7..9a71e6ce35 100644 --- a/tests/auto/qmltest/qqmlbinding/tst_binding.qml +++ b/tests/auto/qmltest/qqmlbinding/tst_binding.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/qqmlbinding/tst_binding2.qml b/tests/auto/qmltest/qqmlbinding/tst_binding2.qml index f150042404..cd79b1f80d 100644 --- a/tests/auto/qmltest/qqmlbinding/tst_binding2.qml +++ b/tests/auto/qmltest/qqmlbinding/tst_binding2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/rectangle/tst_rectangle.qml b/tests/auto/qmltest/rectangle/tst_rectangle.qml index 0e64757c1b..caf40cdb26 100644 --- a/tests/auto/qmltest/rectangle/tst_rectangle.qml +++ b/tests/auto/qmltest/rectangle/tst_rectangle.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/selftests/tst_compare.qml b/tests/auto/qmltest/selftests/tst_compare.qml index 580d0d4e8e..788f9b8635 100644 --- a/tests/auto/qmltest/selftests/tst_compare.qml +++ b/tests/auto/qmltest/selftests/tst_compare.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/selftests/tst_compare_quickobjects.qml b/tests/auto/qmltest/selftests/tst_compare_quickobjects.qml index b0f8a49242..b86d735cd2 100644 --- a/tests/auto/qmltest/selftests/tst_compare_quickobjects.qml +++ b/tests/auto/qmltest/selftests/tst_compare_quickobjects.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/selftests/tst_datadriven.qml b/tests/auto/qmltest/selftests/tst_datadriven.qml index 8fd697a11a..4a85e70488 100644 --- a/tests/auto/qmltest/selftests/tst_datadriven.qml +++ b/tests/auto/qmltest/selftests/tst_datadriven.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/selftests/tst_selftests.qml b/tests/auto/qmltest/selftests/tst_selftests.qml index 8d0a4f6cdd..cc13b475aa 100644 --- a/tests/auto/qmltest/selftests/tst_selftests.qml +++ b/tests/auto/qmltest/selftests/tst_selftests.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/text/tst_text.qml b/tests/auto/qmltest/text/tst_text.qml index 7e58985a64..87e9501ccd 100644 --- a/tests/auto/qmltest/text/tst_text.qml +++ b/tests/auto/qmltest/text/tst_text.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/textedit/tst_textedit.qml b/tests/auto/qmltest/textedit/tst_textedit.qml index cea427f1c1..dc9affdad8 100644 --- a/tests/auto/qmltest/textedit/tst_textedit.qml +++ b/tests/auto/qmltest/textedit/tst_textedit.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/textinput/tst_textinput.qml b/tests/auto/qmltest/textinput/tst_textinput.qml index bab547a68b..c359d53200 100644 --- a/tests/auto/qmltest/textinput/tst_textinput.qml +++ b/tests/auto/qmltest/textinput/tst_textinput.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/qmltest/tst_qmltest.cpp b/tests/auto/qmltest/tst_qmltest.cpp index 815dc209bf..d982ed5274 100644 --- a/tests/auto/qmltest/tst_qmltest.cpp +++ b/tests/auto/qmltest/tst_qmltest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/examples/tst_examples.cpp b/tests/auto/quick/examples/tst_examples.cpp index ed43be71d7..7055fb6e03 100644 --- a/tests/auto/quick/examples/tst_examples.cpp +++ b/tests/auto/quick/examples/tst_examples.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/geometry/tst_geometry.cpp b/tests/auto/quick/geometry/tst_geometry.cpp index fc5e921db5..a46c31d0f3 100644 --- a/tests/auto/quick/geometry/tst_geometry.cpp +++ b/tests/auto/quick/geometry/tst_geometry.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt scene graph research project. diff --git a/tests/auto/quick/nodes/tst_nodestest.cpp b/tests/auto/quick/nodes/tst_nodestest.cpp index f5cac4bfae..a8094002dd 100644 --- a/tests/auto/quick/nodes/tst_nodestest.cpp +++ b/tests/auto/quick/nodes/tst_nodestest.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt scene graph research project. diff --git a/tests/auto/quick/qquickaccessible/data/hittest.qml b/tests/auto/quick/qquickaccessible/data/hittest.qml index 1a38c0b90c..446b12240d 100644 --- a/tests/auto/quick/qquickaccessible/data/hittest.qml +++ b/tests/auto/quick/qquickaccessible/data/hittest.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/quick/qquickaccessible/tst_qquickaccessible.cpp b/tests/auto/quick/qquickaccessible/tst_qquickaccessible.cpp index 6832701a8b..46141a946e 100644 --- a/tests/auto/quick/qquickaccessible/tst_qquickaccessible.cpp +++ b/tests/auto/quick/qquickaccessible/tst_qquickaccessible.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/quick/qquickanchors/tst_qquickanchors.cpp b/tests/auto/quick/qquickanchors/tst_qquickanchors.cpp index c6df533a76..ee277ecd9b 100644 --- a/tests/auto/quick/qquickanchors/tst_qquickanchors.cpp +++ b/tests/auto/quick/qquickanchors/tst_qquickanchors.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickanimatedimage/tst_qquickanimatedimage.cpp b/tests/auto/quick/qquickanimatedimage/tst_qquickanimatedimage.cpp index 1f8297d2c7..aad1327e6f 100644 --- a/tests/auto/quick/qquickanimatedimage/tst_qquickanimatedimage.cpp +++ b/tests/auto/quick/qquickanimatedimage/tst_qquickanimatedimage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickanimatedsprite/data/basic.qml b/tests/auto/quick/qquickanimatedsprite/data/basic.qml index 198d03c46b..b71f79f3db 100644 --- a/tests/auto/quick/qquickanimatedsprite/data/basic.qml +++ b/tests/auto/quick/qquickanimatedsprite/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickanimatedsprite/data/frameChange.qml b/tests/auto/quick/qquickanimatedsprite/data/frameChange.qml index d638fd9ab8..e19d7c268e 100644 --- a/tests/auto/quick/qquickanimatedsprite/data/frameChange.qml +++ b/tests/auto/quick/qquickanimatedsprite/data/frameChange.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickanimatedsprite/tst_qquickanimatedsprite.cpp b/tests/auto/quick/qquickanimatedsprite/tst_qquickanimatedsprite.cpp index 3139547312..7847268d94 100644 --- a/tests/auto/quick/qquickanimatedsprite/tst_qquickanimatedsprite.cpp +++ b/tests/auto/quick/qquickanimatedsprite/tst_qquickanimatedsprite.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickanimationcontroller/tst_qquickanimationcontroller.cpp b/tests/auto/quick/qquickanimationcontroller/tst_qquickanimationcontroller.cpp index 9775624526..e3be838c10 100644 --- a/tests/auto/quick/qquickanimationcontroller/tst_qquickanimationcontroller.cpp +++ b/tests/auto/quick/qquickanimationcontroller/tst_qquickanimationcontroller.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp b/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp index 81b1255ca5..94726aa5fe 100644 --- a/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp +++ b/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickapplication/tst_qquickapplication.cpp b/tests/auto/quick/qquickapplication/tst_qquickapplication.cpp index 6fc68101e5..b8986fbf85 100644 --- a/tests/auto/quick/qquickapplication/tst_qquickapplication.cpp +++ b/tests/auto/quick/qquickapplication/tst_qquickapplication.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp b/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp index bc78faf4e8..c40abbd55f 100644 --- a/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp +++ b/tests/auto/quick/qquickbehaviors/tst_qquickbehaviors.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp b/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp index cd849bde57..9ba0cf189d 100644 --- a/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp +++ b/tests/auto/quick/qquickborderimage/tst_qquickborderimage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickcanvasitem/tst_qquickcanvasitem.cpp b/tests/auto/quick/qquickcanvasitem/tst_qquickcanvasitem.cpp index 1cea7ef896..1776e9f855 100644 --- a/tests/auto/quick/qquickcanvasitem/tst_qquickcanvasitem.cpp +++ b/tests/auto/quick/qquickcanvasitem/tst_qquickcanvasitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickdrag/tst_qquickdrag.cpp b/tests/auto/quick/qquickdrag/tst_qquickdrag.cpp index 2159368ce8..dbb4736c05 100644 --- a/tests/auto/quick/qquickdrag/tst_qquickdrag.cpp +++ b/tests/auto/quick/qquickdrag/tst_qquickdrag.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickdroparea/tst_qquickdroparea.cpp b/tests/auto/quick/qquickdroparea/tst_qquickdroparea.cpp index ef804a9fc6..b65e766190 100644 --- a/tests/auto/quick/qquickdroparea/tst_qquickdroparea.cpp +++ b/tests/auto/quick/qquickdroparea/tst_qquickdroparea.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp b/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp index 6a85b4da2a..662e86018c 100644 --- a/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp +++ b/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickflipable/tst_qquickflipable.cpp b/tests/auto/quick/qquickflipable/tst_qquickflipable.cpp index 747b1dcafe..83f0520b65 100644 --- a/tests/auto/quick/qquickflipable/tst_qquickflipable.cpp +++ b/tests/auto/quick/qquickflipable/tst_qquickflipable.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickfocusscope/tst_qquickfocusscope.cpp b/tests/auto/quick/qquickfocusscope/tst_qquickfocusscope.cpp index 3f839b4fc0..19059c55df 100644 --- a/tests/auto/quick/qquickfocusscope/tst_qquickfocusscope.cpp +++ b/tests/auto/quick/qquickfocusscope/tst_qquickfocusscope.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickfontloader/tst_qquickfontloader.cpp b/tests/auto/quick/qquickfontloader/tst_qquickfontloader.cpp index 5246b8cc46..bcb496eab7 100644 --- a/tests/auto/quick/qquickfontloader/tst_qquickfontloader.cpp +++ b/tests/auto/quick/qquickfontloader/tst_qquickfontloader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickgridview/tst_qquickgridview.cpp b/tests/auto/quick/qquickgridview/tst_qquickgridview.cpp index dc0db6d4ff..802cc0a4c9 100644 --- a/tests/auto/quick/qquickgridview/tst_qquickgridview.cpp +++ b/tests/auto/quick/qquickgridview/tst_qquickgridview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickimage/tst_qquickimage.cpp b/tests/auto/quick/qquickimage/tst_qquickimage.cpp index bce1366e52..7f3f0d5cbc 100644 --- a/tests/auto/quick/qquickimage/tst_qquickimage.cpp +++ b/tests/auto/quick/qquickimage/tst_qquickimage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickimageprovider/tst_qquickimageprovider.cpp b/tests/auto/quick/qquickimageprovider/tst_qquickimageprovider.cpp index 19b547944c..a790c7b9de 100644 --- a/tests/auto/quick/qquickimageprovider/tst_qquickimageprovider.cpp +++ b/tests/auto/quick/qquickimageprovider/tst_qquickimageprovider.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickitem/tst_qquickitem.cpp b/tests/auto/quick/qquickitem/tst_qquickitem.cpp index 6209f412c3..e237174eb1 100644 --- a/tests/auto/quick/qquickitem/tst_qquickitem.cpp +++ b/tests/auto/quick/qquickitem/tst_qquickitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickitem2/data/mapCoordinates.qml b/tests/auto/quick/qquickitem2/data/mapCoordinates.qml index e0ba751dc4..0c5106e1c9 100644 --- a/tests/auto/quick/qquickitem2/data/mapCoordinates.qml +++ b/tests/auto/quick/qquickitem2/data/mapCoordinates.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickitem2/data/mapCoordinatesRect.qml b/tests/auto/quick/qquickitem2/data/mapCoordinatesRect.qml index f35f24e109..c490130058 100644 --- a/tests/auto/quick/qquickitem2/data/mapCoordinatesRect.qml +++ b/tests/auto/quick/qquickitem2/data/mapCoordinatesRect.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickitem2/tst_qquickitem.cpp b/tests/auto/quick/qquickitem2/tst_qquickitem.cpp index e605bb4cbc..c82372c287 100644 --- a/tests/auto/quick/qquickitem2/tst_qquickitem.cpp +++ b/tests/auto/quick/qquickitem2/tst_qquickitem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp b/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp index fdf834ce08..9387264eb0 100644 --- a/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp +++ b/tests/auto/quick/qquickitemlayer/tst_qquickitemlayer.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicklistview/incrementalmodel.cpp b/tests/auto/quick/qquicklistview/incrementalmodel.cpp index f8dfd0c65f..473d52eb28 100644 --- a/tests/auto/quick/qquicklistview/incrementalmodel.cpp +++ b/tests/auto/quick/qquicklistview/incrementalmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicklistview/incrementalmodel.h b/tests/auto/quick/qquicklistview/incrementalmodel.h index 9bfcbc8b33..32d9702117 100644 --- a/tests/auto/quick/qquicklistview/incrementalmodel.h +++ b/tests/auto/quick/qquicklistview/incrementalmodel.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp b/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp index 51ce74ef40..9fad01ef40 100644 --- a/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp +++ b/tests/auto/quick/qquicklistview/tst_qquicklistview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickloader/tst_qquickloader.cpp b/tests/auto/quick/qquickloader/tst_qquickloader.cpp index e456297a4e..a28db9eaf8 100644 --- a/tests/auto/quick/qquickloader/tst_qquickloader.cpp +++ b/tests/auto/quick/qquickloader/tst_qquickloader.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp index 76768ee395..9fd42373e2 100644 --- a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp +++ b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickmultipointtoucharea/tst_qquickmultipointtoucharea.cpp b/tests/auto/quick/qquickmultipointtoucharea/tst_qquickmultipointtoucharea.cpp index 5a39698b6f..73c2cf68dd 100644 --- a/tests/auto/quick/qquickmultipointtoucharea/tst_qquickmultipointtoucharea.cpp +++ b/tests/auto/quick/qquickmultipointtoucharea/tst_qquickmultipointtoucharea.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickpainteditem/tst_qquickpainteditem.cpp b/tests/auto/quick/qquickpainteditem/tst_qquickpainteditem.cpp index 03e4b4084c..0bdce65d8f 100644 --- a/tests/auto/quick/qquickpainteditem/tst_qquickpainteditem.cpp +++ b/tests/auto/quick/qquickpainteditem/tst_qquickpainteditem.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickpath/tst_qquickpath.cpp b/tests/auto/quick/qquickpath/tst_qquickpath.cpp index 6454b68771..fa68442329 100644 --- a/tests/auto/quick/qquickpath/tst_qquickpath.cpp +++ b/tests/auto/quick/qquickpath/tst_qquickpath.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp b/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp index 4a7d4a279d..a7e0f2feb4 100644 --- a/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp +++ b/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickpincharea/tst_qquickpincharea.cpp b/tests/auto/quick/qquickpincharea/tst_qquickpincharea.cpp index 4ba9e50c26..ba1db0e7cf 100644 --- a/tests/auto/quick/qquickpincharea/tst_qquickpincharea.cpp +++ b/tests/auto/quick/qquickpincharea/tst_qquickpincharea.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickpixmapcache/tst_qquickpixmapcache.cpp b/tests/auto/quick/qquickpixmapcache/tst_qquickpixmapcache.cpp index cad78e886b..f52d5281a2 100644 --- a/tests/auto/quick/qquickpixmapcache/tst_qquickpixmapcache.cpp +++ b/tests/auto/quick/qquickpixmapcache/tst_qquickpixmapcache.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickpositioners/tst_qquickpositioners.cpp b/tests/auto/quick/qquickpositioners/tst_qquickpositioners.cpp index baba59a1aa..98999e540a 100644 --- a/tests/auto/quick/qquickpositioners/tst_qquickpositioners.cpp +++ b/tests/auto/quick/qquickpositioners/tst_qquickpositioners.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp b/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp index 3efc48281b..204a3ff019 100644 --- a/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp +++ b/tests/auto/quick/qquickrectangle/tst_qquickrectangle.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp b/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp index a1af6933af..582503f938 100644 --- a/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp +++ b/tests/auto/quick/qquickrepeater/tst_qquickrepeater.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickscreen/tst_qquickscreen.cpp b/tests/auto/quick/qquickscreen/tst_qquickscreen.cpp index 35bb0946a4..77e6c89495 100644 --- a/tests/auto/quick/qquickscreen/tst_qquickscreen.cpp +++ b/tests/auto/quick/qquickscreen/tst_qquickscreen.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickshadereffect/data/deleteShaderEffectSource.qml b/tests/auto/quick/qquickshadereffect/data/deleteShaderEffectSource.qml index d8c9d217d8..a5902fb77f 100644 --- a/tests/auto/quick/qquickshadereffect/data/deleteShaderEffectSource.qml +++ b/tests/auto/quick/qquickshadereffect/data/deleteShaderEffectSource.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickshadereffect/data/deleteSourceItem.qml b/tests/auto/quick/qquickshadereffect/data/deleteSourceItem.qml index 9a266598d7..a6ae2fac39 100644 --- a/tests/auto/quick/qquickshadereffect/data/deleteSourceItem.qml +++ b/tests/auto/quick/qquickshadereffect/data/deleteSourceItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickshadereffect/tst_qquickshadereffect.cpp b/tests/auto/quick/qquickshadereffect/tst_qquickshadereffect.cpp index f45f3dd23a..a2dbac9730 100644 --- a/tests/auto/quick/qquickshadereffect/tst_qquickshadereffect.cpp +++ b/tests/auto/quick/qquickshadereffect/tst_qquickshadereffect.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp b/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp index 6916d96e81..935543cc34 100644 --- a/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp +++ b/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickspringanimation/tst_qquickspringanimation.cpp b/tests/auto/quick/qquickspringanimation/tst_qquickspringanimation.cpp index 68d560b81e..78d114c904 100644 --- a/tests/auto/quick/qquickspringanimation/tst_qquickspringanimation.cpp +++ b/tests/auto/quick/qquickspringanimation/tst_qquickspringanimation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickspritesequence/data/advance.qml b/tests/auto/quick/qquickspritesequence/data/advance.qml index cac8530d4c..014c6ee519 100644 --- a/tests/auto/quick/qquickspritesequence/data/advance.qml +++ b/tests/auto/quick/qquickspritesequence/data/advance.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickspritesequence/data/basic.qml b/tests/auto/quick/qquickspritesequence/data/basic.qml index 964089fee2..f77ef209b0 100644 --- a/tests/auto/quick/qquickspritesequence/data/basic.qml +++ b/tests/auto/quick/qquickspritesequence/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickspritesequence/data/crashonstart.qml b/tests/auto/quick/qquickspritesequence/data/crashonstart.qml index 2730aea273..6e0d8b1f66 100644 --- a/tests/auto/quick/qquickspritesequence/data/crashonstart.qml +++ b/tests/auto/quick/qquickspritesequence/data/crashonstart.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickspritesequence/data/huge.qml b/tests/auto/quick/qquickspritesequence/data/huge.qml index 95c0af5eba..a935eb71ec 100644 --- a/tests/auto/quick/qquickspritesequence/data/huge.qml +++ b/tests/auto/quick/qquickspritesequence/data/huge.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickspritesequence/tst_qquickspritesequence.cpp b/tests/auto/quick/qquickspritesequence/tst_qquickspritesequence.cpp index 30bcea06a3..79b80c5cfe 100644 --- a/tests/auto/quick/qquickspritesequence/tst_qquickspritesequence.cpp +++ b/tests/auto/quick/qquickspritesequence/tst_qquickspritesequence.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickstates/tst_qquickstates.cpp b/tests/auto/quick/qquickstates/tst_qquickstates.cpp index 4df6576f75..726d3a6e75 100644 --- a/tests/auto/quick/qquickstates/tst_qquickstates.cpp +++ b/tests/auto/quick/qquickstates/tst_qquickstates.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickstyledtext/tst_qquickstyledtext.cpp b/tests/auto/quick/qquickstyledtext/tst_qquickstyledtext.cpp index 3c71e07407..9351919ee8 100644 --- a/tests/auto/quick/qquickstyledtext/tst_qquickstyledtext.cpp +++ b/tests/auto/quick/qquickstyledtext/tst_qquickstyledtext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicksystempalette/tst_qquicksystempalette.cpp b/tests/auto/quick/qquicksystempalette/tst_qquicksystempalette.cpp index 7d3738685b..623954b1e6 100644 --- a/tests/auto/quick/qquicksystempalette/tst_qquicksystempalette.cpp +++ b/tests/auto/quick/qquicksystempalette/tst_qquicksystempalette.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicktext/tst_qquicktext.cpp b/tests/auto/quick/qquicktext/tst_qquicktext.cpp index c5ffe7d7d7..b95a646bd6 100644 --- a/tests/auto/quick/qquicktext/tst_qquicktext.cpp +++ b/tests/auto/quick/qquicktext/tst_qquicktext.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp b/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp index f8332d661d..a69a8166bc 100644 --- a/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp +++ b/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp b/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp index 6c688eda1b..3b1c5eb31c 100644 --- a/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp +++ b/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickview/tst_qquickview.cpp b/tests/auto/quick/qquickview/tst_qquickview.cpp index aa20967fa3..64b108cbec 100644 --- a/tests/auto/quick/qquickview/tst_qquickview.cpp +++ b/tests/auto/quick/qquickview/tst_qquickview.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp b/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp index bd2c964e1e..74c557871f 100644 --- a/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp +++ b/tests/auto/quick/qquickvisualdatamodel/tst_qquickvisualdatamodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp b/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp index ec9d0e280e..3e3a35f8d1 100644 --- a/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp +++ b/tests/auto/quick/qquickwindow/tst_qquickwindow.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/qquickxmllistmodel/tst_qquickxmllistmodel.cpp b/tests/auto/quick/qquickxmllistmodel/tst_qquickxmllistmodel.cpp index 0e625b3fb8..847cc5078d 100644 --- a/tests/auto/quick/qquickxmllistmodel/tst_qquickxmllistmodel.cpp +++ b/tests/auto/quick/qquickxmllistmodel/tst_qquickxmllistmodel.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/rendernode/tst_rendernode.cpp b/tests/auto/quick/rendernode/tst_rendernode.cpp index 12216b83f5..509b209654 100644 --- a/tests/auto/quick/rendernode/tst_rendernode.cpp +++ b/tests/auto/quick/rendernode/tst_rendernode.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/shared/viewtestutil.cpp b/tests/auto/quick/shared/viewtestutil.cpp index e6244c8351..29b82072c9 100644 --- a/tests/auto/quick/shared/viewtestutil.cpp +++ b/tests/auto/quick/shared/viewtestutil.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/shared/viewtestutil.h b/tests/auto/quick/shared/viewtestutil.h index 2748d3138a..67906114f6 100644 --- a/tests/auto/quick/shared/viewtestutil.h +++ b/tests/auto/quick/shared/viewtestutil.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/shared/visualtestutil.cpp b/tests/auto/quick/shared/visualtestutil.cpp index 1458478b8e..4b5c201a34 100644 --- a/tests/auto/quick/shared/visualtestutil.cpp +++ b/tests/auto/quick/shared/visualtestutil.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/shared/visualtestutil.h b/tests/auto/quick/shared/visualtestutil.h index c0be76e314..5edb5d08c9 100644 --- a/tests/auto/quick/shared/visualtestutil.h +++ b/tests/auto/quick/shared/visualtestutil.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/quick/touchmouse/tst_touchmouse.cpp b/tests/auto/quick/touchmouse/tst_touchmouse.cpp index fc4d0c4815..caad2539be 100644 --- a/tests/auto/quick/touchmouse/tst_touchmouse.cpp +++ b/tests/auto/quick/touchmouse/tst_touchmouse.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/auto/shared/platforminputcontext.h b/tests/auto/shared/platforminputcontext.h index aaabf4d941..76f3b704de 100644 --- a/tests/auto/shared/platforminputcontext.h +++ b/tests/auto/shared/platforminputcontext.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/shared/platformquirks.h b/tests/auto/shared/platformquirks.h index 2f543f3784..b03e4d63f6 100644 --- a/tests/auto/shared/platformquirks.h +++ b/tests/auto/shared/platformquirks.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/shared/testhttpserver.cpp b/tests/auto/shared/testhttpserver.cpp index 3bded63c33..461e0e70d2 100644 --- a/tests/auto/shared/testhttpserver.cpp +++ b/tests/auto/shared/testhttpserver.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/shared/testhttpserver.h b/tests/auto/shared/testhttpserver.h index f7eb6a2961..1abf37e438 100644 --- a/tests/auto/shared/testhttpserver.h +++ b/tests/auto/shared/testhttpserver.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/shared/util.cpp b/tests/auto/shared/util.cpp index eaefb1f9d6..e0b14d60e1 100644 --- a/tests/auto/shared/util.cpp +++ b/tests/auto/shared/util.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/auto/shared/util.h b/tests/auto/shared/util.h index eff54b30d9..dc93038251 100644 --- a/tests/auto/shared/util.h +++ b/tests/auto/shared/util.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/particles/affectors/data/basic.qml b/tests/benchmarks/particles/affectors/data/basic.qml index de67cb97b0..b09bf948ea 100644 --- a/tests/benchmarks/particles/affectors/data/basic.qml +++ b/tests/benchmarks/particles/affectors/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/particles/affectors/data/filtered.qml b/tests/benchmarks/particles/affectors/data/filtered.qml index 93e42540aa..05dda9ded8 100644 --- a/tests/benchmarks/particles/affectors/data/filtered.qml +++ b/tests/benchmarks/particles/affectors/data/filtered.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/particles/affectors/tst_affectors.cpp b/tests/benchmarks/particles/affectors/tst_affectors.cpp index 751ff086c5..a28561ab0b 100644 --- a/tests/benchmarks/particles/affectors/tst_affectors.cpp +++ b/tests/benchmarks/particles/affectors/tst_affectors.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/particles/emission/data/basic.qml b/tests/benchmarks/particles/emission/data/basic.qml index ed279fceac..409983db6d 100644 --- a/tests/benchmarks/particles/emission/data/basic.qml +++ b/tests/benchmarks/particles/emission/data/basic.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/particles/emission/tst_emission.cpp b/tests/benchmarks/particles/emission/tst_emission.cpp index 48da7dd86e..fe6e4a8265 100644 --- a/tests/benchmarks/particles/emission/tst_emission.cpp +++ b/tests/benchmarks/particles/emission/tst_emission.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/animation/data/animation.qml b/tests/benchmarks/qml/animation/data/animation.qml index 4ef7e79062..cb6d3034d1 100644 --- a/tests/benchmarks/qml/animation/data/animation.qml +++ b/tests/benchmarks/qml/animation/data/animation.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/animation/tst_animation.cpp b/tests/benchmarks/qml/animation/tst_animation.cpp index 212622b064..3b9d795a05 100644 --- a/tests/benchmarks/qml/animation/tst_animation.cpp +++ b/tests/benchmarks/qml/animation/tst_animation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/binding/testtypes.cpp b/tests/benchmarks/qml/binding/testtypes.cpp index 0aac79297d..7aa8cd9d55 100644 --- a/tests/benchmarks/qml/binding/testtypes.cpp +++ b/tests/benchmarks/qml/binding/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/binding/testtypes.h b/tests/benchmarks/qml/binding/testtypes.h index ab41473761..f692ed03ff 100644 --- a/tests/benchmarks/qml/binding/testtypes.h +++ b/tests/benchmarks/qml/binding/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/binding/tst_binding.cpp b/tests/benchmarks/qml/binding/tst_binding.cpp index 87bd32e7e6..6e59187215 100644 --- a/tests/benchmarks/qml/binding/tst_binding.cpp +++ b/tests/benchmarks/qml/binding/tst_binding.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/compilation/data/BoomBlock.qml b/tests/benchmarks/qml/compilation/data/BoomBlock.qml index 7a978f44eb..6b262f7d9d 100644 --- a/tests/benchmarks/qml/compilation/data/BoomBlock.qml +++ b/tests/benchmarks/qml/compilation/data/BoomBlock.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/compilation/tst_compilation.cpp b/tests/benchmarks/qml/compilation/tst_compilation.cpp index 0ed4d11d23..148396622b 100644 --- a/tests/benchmarks/qml/compilation/tst_compilation.cpp +++ b/tests/benchmarks/qml/compilation/tst_compilation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/CustomItem.qml b/tests/benchmarks/qml/creation/data/CustomItem.qml index bcb67f4412..dc2db9958f 100644 --- a/tests/benchmarks/qml/creation/data/CustomItem.qml +++ b/tests/benchmarks/qml/creation/data/CustomItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/emptyCustomItem.qml b/tests/benchmarks/qml/creation/data/emptyCustomItem.qml index 0af53e243f..ffef6f58fe 100644 --- a/tests/benchmarks/qml/creation/data/emptyCustomItem.qml +++ b/tests/benchmarks/qml/creation/data/emptyCustomItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/emptyItem.qml b/tests/benchmarks/qml/creation/data/emptyItem.qml index bcb67f4412..dc2db9958f 100644 --- a/tests/benchmarks/qml/creation/data/emptyItem.qml +++ b/tests/benchmarks/qml/creation/data/emptyItem.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/item.qml b/tests/benchmarks/qml/creation/data/item.qml index 649bd9cdab..3bb77f2dce 100644 --- a/tests/benchmarks/qml/creation/data/item.qml +++ b/tests/benchmarks/qml/creation/data/item.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemUsingOnComponentCompleted.qml b/tests/benchmarks/qml/creation/data/itemUsingOnComponentCompleted.qml index 988a1018d6..4b899f2d89 100644 --- a/tests/benchmarks/qml/creation/data/itemUsingOnComponentCompleted.qml +++ b/tests/benchmarks/qml/creation/data/itemUsingOnComponentCompleted.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithAnchoredChild.qml b/tests/benchmarks/qml/creation/data/itemWithAnchoredChild.qml index 3f706f7067..18e2be65bd 100644 --- a/tests/benchmarks/qml/creation/data/itemWithAnchoredChild.qml +++ b/tests/benchmarks/qml/creation/data/itemWithAnchoredChild.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithChildBindedToSize.qml b/tests/benchmarks/qml/creation/data/itemWithChildBindedToSize.qml index 08dbd9aa6c..e7890832b2 100644 --- a/tests/benchmarks/qml/creation/data/itemWithChildBindedToSize.qml +++ b/tests/benchmarks/qml/creation/data/itemWithChildBindedToSize.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithProperties.qml b/tests/benchmarks/qml/creation/data/itemWithProperties.qml index e15069a37c..d3c5ba216a 100644 --- a/tests/benchmarks/qml/creation/data/itemWithProperties.qml +++ b/tests/benchmarks/qml/creation/data/itemWithProperties.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest1.qml b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest1.qml index 56100993f8..723aae4ed1 100644 --- a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest1.qml +++ b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest1.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest2.qml b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest2.qml index de6d3705b2..b4b7553f46 100644 --- a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest2.qml +++ b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest3.qml b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest3.qml index dd326e09e5..757498ec96 100644 --- a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest3.qml +++ b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest3.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest4.qml b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest4.qml index 8c6a031c98..3e1dcd4bb0 100644 --- a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest4.qml +++ b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest4.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest5.qml b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest5.qml index 129e305155..3c6ea66016 100644 --- a/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest5.qml +++ b/tests/benchmarks/qml/creation/data/itemWithPropertyBindingsTest5.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/data/qobject.qml b/tests/benchmarks/qml/creation/data/qobject.qml index 04357038ba..ea5a5e2b1e 100644 --- a/tests/benchmarks/qml/creation/data/qobject.qml +++ b/tests/benchmarks/qml/creation/data/qobject.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/creation/tst_creation.cpp b/tests/benchmarks/qml/creation/tst_creation.cpp index 0f4c24113b..4b5c1d1950 100644 --- a/tests/benchmarks/qml/creation/tst_creation.cpp +++ b/tests/benchmarks/qml/creation/tst_creation.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicFour.qml b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicFour.qml index 3c8d158434..908bde0fd2 100644 --- a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicFour.qml +++ b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicFour.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicOne.qml b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicOne.qml index cf99e18b4e..fb90017849 100644 --- a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicOne.qml +++ b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicOne.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicThree.qml b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicThree.qml index 120c4fa086..72e495e189 100644 --- a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicThree.qml +++ b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicThree.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicTwo.qml b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicTwo.qml index 205f2ef60a..d55e399ba8 100644 --- a/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicTwo.qml +++ b/tests/benchmarks/qml/holistic/data/dynamicTargets/DynamicTwo.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Mlbsi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Mlbsi.qml index 4653d2f8e7..917f97c0a1 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Mlbsi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Mlbsi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Mldsi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Mldsi.qml index d4820b9e54..64fdb88376 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Mldsi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Mldsi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Mlsi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Mlsi.qml index 241dde7bc2..07a9ea1a6b 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Mlsi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Mlsi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/ModuleBm.qml b/tests/benchmarks/qml/holistic/data/jsImports/ModuleBm.qml index d7b10be058..e69a8fe0a1 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/ModuleBm.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/ModuleBm.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Msbsi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Msbsi.qml index 91881dcc2b..33a3631361 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Msbsi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Msbsi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Msdsi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Msdsi.qml index a52147f9e3..058ddb8802 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Msdsi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Msdsi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Mssi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Mssi.qml index 51bd083736..b763f8c1cb 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Mssi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Mssi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/PragmaBm.qml b/tests/benchmarks/qml/holistic/data/jsImports/PragmaBm.qml index 8c072ee2a9..1465e33c0c 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/PragmaBm.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/PragmaBm.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/PragmaModuleBm.qml b/tests/benchmarks/qml/holistic/data/jsImports/PragmaModuleBm.qml index f3317384d8..607d6a66c8 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/PragmaModuleBm.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/PragmaModuleBm.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Slsi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Slsi.qml index e1421b1f83..8ff870db96 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Slsi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Slsi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/Sssi.qml b/tests/benchmarks/qml/holistic/data/jsImports/Sssi.qml index 054df669bc..2be57fc7c0 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/Sssi.qml +++ b/tests/benchmarks/qml/holistic/data/jsImports/Sssi.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi.js index bc16663c1b..38feb94f40 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi1.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi1.js index e04a5f210f..97ffde4b4f 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi1.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi1.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi10.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi10.js index 482f159c98..c0f0c0fdc0 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi10.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi10.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi11.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi11.js index e71059d96f..6939e2feb4 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi11.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi11.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi12.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi12.js index 5466ed5be2..1d0bc154ae 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi12.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi12.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi13.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi13.js index 98948acc5d..8cc823196a 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi13.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi13.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi14.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi14.js index 452817ea4f..c9cbd1aca1 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi14.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi14.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi15.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi15.js index 7486d7ce7c..0370ee536c 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi15.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi15.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi2.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi2.js index 2efe56ba0a..c0212ce74c 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi2.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi2.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi3.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi3.js index 4eb62738fc..38c342daeb 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi3.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi3.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi4.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi4.js index fe31d13ae0..16927efe11 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi4.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi4.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi5.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi5.js index aed24f0a13..9bac9e70dc 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi5.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi5.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi6.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi6.js index 678dbaa873..fab024dfa0 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi6.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi6.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi7.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi7.js index a99f33361e..09e23a5c03 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi7.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi7.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi8.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi8.js index 2e346e3148..e28c608b75 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi8.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi8.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi9.js b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi9.js index 49a422dee0..c07c9528c3 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlbsi9.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlbsi9.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi.js index a7f08570b4..5bd21cb7aa 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi1.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi1.js index 181e95ba2e..ef9670592e 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi1.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi1.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi10.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi10.js index 72633173e6..70e63fdd32 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi10.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi10.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi11.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi11.js index e3b48fc410..8439cb30c7 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi11.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi11.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi12.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi12.js index 5c6025819e..3e573227ee 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi12.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi12.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi13.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi13.js index 17ff955b8e..68f574f86e 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi13.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi13.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi14.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi14.js index 49808e308c..5f83b5c397 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi14.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi14.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi15.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi15.js index 0d80b1be64..f7b44c655d 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi15.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi15.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi2.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi2.js index ea534f80fe..bc4eb950d8 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi2.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi2.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi3.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi3.js index 13dd0fc072..5bb49a3db8 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi3.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi3.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi4.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi4.js index e5ca5069b3..d74dbfe893 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi4.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi4.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi5.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi5.js index 9a1feaa02b..4587b4eb5f 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi5.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi5.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi6.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi6.js index c31d7ea9bf..5d67300521 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi6.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi6.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi7.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi7.js index ffe3ced977..d319d79d1b 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi7.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi7.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi8.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi8.js index 822f2a736d..2fb36c08c1 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi8.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi8.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mldsi9.js b/tests/benchmarks/qml/holistic/data/jsImports/mldsi9.js index 3e0547265e..dbd4b5ef6e 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mldsi9.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mldsi9.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mlsi.js b/tests/benchmarks/qml/holistic/data/jsImports/mlsi.js index 02a73f404d..03ca68d44c 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mlsi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mlsi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/moduleBm.js b/tests/benchmarks/qml/holistic/data/jsImports/moduleBm.js index f4ca0069a5..c02fd735e5 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/moduleBm.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/moduleBm.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi.js index 42de2c7bf6..99f81a24bf 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi1.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi1.js index f812e5f129..24709219b3 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi1.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi1.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi10.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi10.js index 9917ae3946..7ab631e4a1 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi10.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi10.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi11.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi11.js index 784aacd09b..ec5f516f9f 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi11.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi11.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi12.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi12.js index cd86c14e63..5e9acb7ea6 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi12.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi12.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi13.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi13.js index 3858a47c95..0eb7fe32d1 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi13.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi13.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi14.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi14.js index 915c205a91..96239ba4ef 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi14.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi14.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi15.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi15.js index c5445a2534..d7d2b506f8 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi15.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi15.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi2.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi2.js index 4f383f9e21..bcaf8c4113 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi2.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi2.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi3.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi3.js index 90a86f9257..1bbaf60a3d 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi3.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi3.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi4.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi4.js index 0d77dbb22e..4245cc55f1 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi4.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi4.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi5.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi5.js index 07237203b1..761e1f7839 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi5.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi5.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi6.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi6.js index 4a91fb3e19..85d2d333de 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi6.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi6.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi7.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi7.js index 3236148b55..0e72957b16 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi7.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi7.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi8.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi8.js index 40399c397d..9c2be9d305 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi8.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi8.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msbsi9.js b/tests/benchmarks/qml/holistic/data/jsImports/msbsi9.js index ab9e687505..9c2fe6deb7 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msbsi9.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msbsi9.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi.js index a5e9e7dfb1..80f6d210d0 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi1.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi1.js index c4450e3bd8..8726180e5e 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi1.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi1.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi10.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi10.js index 9f638be1b8..8141c2f376 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi10.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi10.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi11.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi11.js index cc0ab18612..f33fc43afd 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi11.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi11.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi12.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi12.js index 2527c77dbf..5f6f435f31 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi12.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi12.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi13.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi13.js index 4fd3163cf7..46a2ed483e 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi13.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi13.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi14.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi14.js index 98ae5a6b3d..bab10bd979 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi14.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi14.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi15.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi15.js index 7aabc78d43..419f42a577 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi15.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi15.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi2.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi2.js index ea9c74d8f1..79de7af2f0 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi2.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi2.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi3.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi3.js index e1cebca557..7ef650dda8 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi3.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi3.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi4.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi4.js index a06c1e39c8..8dc8b4c876 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi4.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi4.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi5.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi5.js index c617c2d960..ad35425677 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi5.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi5.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi6.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi6.js index 18223f2d7c..f504669dfe 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi6.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi6.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi7.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi7.js index 73d4b087ee..3ed6e223ec 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi7.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi7.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi8.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi8.js index 7d478926ff..fefa813ec6 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi8.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi8.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/msdsi9.js b/tests/benchmarks/qml/holistic/data/jsImports/msdsi9.js index ed6ae54a49..9734a31fcf 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/msdsi9.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/msdsi9.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/mssi.js b/tests/benchmarks/qml/holistic/data/jsImports/mssi.js index a8ea72dd87..278c56f677 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/mssi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/mssi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmOne.js b/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmOne.js index 58c4b8c361..2824693140 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmOne.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmOne.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmTwo.js b/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmTwo.js index 4cf62eea9d..6141f3e086 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmTwo.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/pragmaBmTwo.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/pragmaLib.js b/tests/benchmarks/qml/holistic/data/jsImports/pragmaLib.js index 047f5df493..11f5e7d856 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/pragmaLib.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/pragmaLib.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/pragmaModuleBm.js b/tests/benchmarks/qml/holistic/data/jsImports/pragmaModuleBm.js index e63c65769b..9675584ff3 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/pragmaModuleBm.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/pragmaModuleBm.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/slsi.js b/tests/benchmarks/qml/holistic/data/jsImports/slsi.js index 71139ae87e..8619dd1dfc 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/slsi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/slsi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsImports/sssi.js b/tests/benchmarks/qml/holistic/data/jsImports/sssi.js index 8c45b42929..5ba34ff090 100644 --- a/tests/benchmarks/qml/holistic/data/jsImports/sssi.js +++ b/tests/benchmarks/qml/holistic/data/jsImports/sssi.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsTargets/JsOne.qml b/tests/benchmarks/qml/holistic/data/jsTargets/JsOne.qml index 3b4c7cbba8..bfdead30b6 100644 --- a/tests/benchmarks/qml/holistic/data/jsTargets/JsOne.qml +++ b/tests/benchmarks/qml/holistic/data/jsTargets/JsOne.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/jsTargets/JsTwo.qml b/tests/benchmarks/qml/holistic/data/jsTargets/JsTwo.qml index c11392264c..19a864e102 100644 --- a/tests/benchmarks/qml/holistic/data/jsTargets/JsTwo.qml +++ b/tests/benchmarks/qml/holistic/data/jsTargets/JsTwo.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/largeTargets/gridview-example.qml b/tests/benchmarks/qml/holistic/data/largeTargets/gridview-example.qml index be781d2b2d..4724a8c8b5 100644 --- a/tests/benchmarks/qml/holistic/data/largeTargets/gridview-example.qml +++ b/tests/benchmarks/qml/holistic/data/largeTargets/gridview-example.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the examples of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/largeTargets/layoutdirection.qml b/tests/benchmarks/qml/holistic/data/largeTargets/layoutdirection.qml index 36bb5f3628..996d33efb3 100644 --- a/tests/benchmarks/qml/holistic/data/largeTargets/layoutdirection.qml +++ b/tests/benchmarks/qml/holistic/data/largeTargets/layoutdirection.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the examples of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/largeTargets/mousearea-example.qml b/tests/benchmarks/qml/holistic/data/largeTargets/mousearea-example.qml index 9cd2236b28..4f086c7a3f 100644 --- a/tests/benchmarks/qml/holistic/data/largeTargets/mousearea-example.qml +++ b/tests/benchmarks/qml/holistic/data/largeTargets/mousearea-example.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the examples of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/resolutionTargets/ResolveOne.qml b/tests/benchmarks/qml/holistic/data/resolutionTargets/ResolveOne.qml index eadee47a1f..10a6668df3 100644 --- a/tests/benchmarks/qml/holistic/data/resolutionTargets/ResolveOne.qml +++ b/tests/benchmarks/qml/holistic/data/resolutionTargets/ResolveOne.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToJs.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToJs.qml index e801ef1957..f033065e59 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToJs.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToJs.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToQml.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToQml.qml index e5cdc4daf0..7a58dd7b7c 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToQml.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/CppToQml.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEight.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEight.qml index bfa2acbd2f..64e61858fb 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEight.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEight.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEleven.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEleven.qml index 91a8aefa34..61bc17a19d 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEleven.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppEleven.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFive.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFive.qml index 283bb78360..8e3f50f621 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFive.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFive.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFour.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFour.qml index 2cfb45bbd3..80bea5feac 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFour.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppFour.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppNine.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppNine.qml index f83aa945b2..17fb24bdfe 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppNine.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppNine.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppOne.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppOne.qml index 5463166735..aa68d77a61 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppOne.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppOne.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSeven.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSeven.qml index 922ce381f4..3db4b4c5ef 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSeven.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSeven.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSix.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSix.qml index e6925f4d36..100ac6e706 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSix.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppSix.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTen.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTen.qml index c3af5839f6..22f70017de 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTen.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTen.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppThree.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppThree.qml index 7925b5cf2f..e8e6a85618 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppThree.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppThree.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTwo.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTwo.qml index 986e64b9b9..66e67f5838 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTwo.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/JsToCppTwo.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceOne.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceOne.qml index e994966339..4eff4f3dcf 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceOne.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceOne.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceTwo.qml b/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceTwo.qml index 92c8ed62e0..52dd768c80 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceTwo.qml +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/ScarceTwo.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/scopeSwitching/cppToJs.js b/tests/benchmarks/qml/holistic/data/scopeSwitching/cppToJs.js index 6e2cbb2ac8..2862cfceb7 100644 --- a/tests/benchmarks/qml/holistic/data/scopeSwitching/cppToJs.js +++ b/tests/benchmarks/qml/holistic/data/scopeSwitching/cppToJs.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/smallTargets/SmallFour.qml b/tests/benchmarks/qml/holistic/data/smallTargets/SmallFour.qml index 5191ece83a..5fc917b9c5 100644 --- a/tests/benchmarks/qml/holistic/data/smallTargets/SmallFour.qml +++ b/tests/benchmarks/qml/holistic/data/smallTargets/SmallFour.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/smallTargets/SmallOne.qml b/tests/benchmarks/qml/holistic/data/smallTargets/SmallOne.qml index 289b625410..1d3b20e1ff 100644 --- a/tests/benchmarks/qml/holistic/data/smallTargets/SmallOne.qml +++ b/tests/benchmarks/qml/holistic/data/smallTargets/SmallOne.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/smallTargets/SmallThree.qml b/tests/benchmarks/qml/holistic/data/smallTargets/SmallThree.qml index 175a8625af..29cc9ab15a 100644 --- a/tests/benchmarks/qml/holistic/data/smallTargets/SmallThree.qml +++ b/tests/benchmarks/qml/holistic/data/smallTargets/SmallThree.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/data/smallTargets/SmallTwo.qml b/tests/benchmarks/qml/holistic/data/smallTargets/SmallTwo.qml index 2ff69fe6b6..9def0ab04b 100644 --- a/tests/benchmarks/qml/holistic/data/smallTargets/SmallTwo.qml +++ b/tests/benchmarks/qml/holistic/data/smallTargets/SmallTwo.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/testtypes.cpp b/tests/benchmarks/qml/holistic/testtypes.cpp index 5ecea4ed66..0a9e36dc3a 100644 --- a/tests/benchmarks/qml/holistic/testtypes.cpp +++ b/tests/benchmarks/qml/holistic/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/testtypes.h b/tests/benchmarks/qml/holistic/testtypes.h index 6009fbb267..ba65caaa11 100644 --- a/tests/benchmarks/qml/holistic/testtypes.h +++ b/tests/benchmarks/qml/holistic/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/holistic/tst_holistic.cpp b/tests/benchmarks/qml/holistic/tst_holistic.cpp index a7c278fda5..9684b31c0e 100644 --- a/tests/benchmarks/qml/holistic/tst_holistic.cpp +++ b/tests/benchmarks/qml/holistic/tst_holistic.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/javascript/testtypes.cpp b/tests/benchmarks/qml/javascript/testtypes.cpp index bf2ee2d193..1d6920d9a5 100644 --- a/tests/benchmarks/qml/javascript/testtypes.cpp +++ b/tests/benchmarks/qml/javascript/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/javascript/testtypes.h b/tests/benchmarks/qml/javascript/testtypes.h index 98d6b0546b..99781fc797 100644 --- a/tests/benchmarks/qml/javascript/testtypes.h +++ b/tests/benchmarks/qml/javascript/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/javascript/tst_javascript.cpp b/tests/benchmarks/qml/javascript/tst_javascript.cpp index bf6e539663..052ca70e0d 100644 --- a/tests/benchmarks/qml/javascript/tst_javascript.cpp +++ b/tests/benchmarks/qml/javascript/tst_javascript.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/js/qjsengine/tst_qjsengine.cpp b/tests/benchmarks/qml/js/qjsengine/tst_qjsengine.cpp index 587d9d47e9..6f6ad4e5d9 100644 --- a/tests/benchmarks/qml/js/qjsengine/tst_qjsengine.cpp +++ b/tests/benchmarks/qml/js/qjsengine/tst_qjsengine.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/js/qjsvalue/tst_qjsvalue.cpp b/tests/benchmarks/qml/js/qjsvalue/tst_qjsvalue.cpp index 7b2dc3a08d..c486bf8bf8 100644 --- a/tests/benchmarks/qml/js/qjsvalue/tst_qjsvalue.cpp +++ b/tests/benchmarks/qml/js/qjsvalue/tst_qjsvalue.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/js/qjsvalueiterator/tst_qjsvalueiterator.cpp b/tests/benchmarks/qml/js/qjsvalueiterator/tst_qjsvalueiterator.cpp index 55d64aed5f..87a4cbe045 100644 --- a/tests/benchmarks/qml/js/qjsvalueiterator/tst_qjsvalueiterator.cpp +++ b/tests/benchmarks/qml/js/qjsvalueiterator/tst_qjsvalueiterator.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/painting/paintbenchmark.cpp b/tests/benchmarks/qml/painting/paintbenchmark.cpp index 9e7220a09c..b99161749d 100644 --- a/tests/benchmarks/qml/painting/paintbenchmark.cpp +++ b/tests/benchmarks/qml/painting/paintbenchmark.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/pointers/tst_pointers.cpp b/tests/benchmarks/qml/pointers/tst_pointers.cpp index 1d874f826e..65dda28fe7 100644 --- a/tests/benchmarks/qml/pointers/tst_pointers.cpp +++ b/tests/benchmarks/qml/pointers/tst_pointers.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/example.qml b/tests/benchmarks/qml/qmltime/example.qml index fb5d3a5da7..02ceeec072 100644 --- a/tests/benchmarks/qml/qmltime/example.qml +++ b/tests/benchmarks/qml/qmltime/example.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/linelaidout.qml b/tests/benchmarks/qml/qmltime/linelaidout.qml index 579dbe4ecf..f0aca7a20a 100644 --- a/tests/benchmarks/qml/qmltime/linelaidout.qml +++ b/tests/benchmarks/qml/qmltime/linelaidout.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/qmltime.cpp b/tests/benchmarks/qml/qmltime/qmltime.cpp index 25aec8b273..bae0b51824 100644 --- a/tests/benchmarks/qml/qmltime/qmltime.cpp +++ b/tests/benchmarks/qml/qmltime/qmltime.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/anchors/empty.qml b/tests/benchmarks/qml/qmltime/tests/anchors/empty.qml index 850986059e..80a7c37176 100644 --- a/tests/benchmarks/qml/qmltime/tests/anchors/empty.qml +++ b/tests/benchmarks/qml/qmltime/tests/anchors/empty.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/anchors/fill.qml b/tests/benchmarks/qml/qmltime/tests/anchors/fill.qml index ac84297835..bd9f837f28 100644 --- a/tests/benchmarks/qml/qmltime/tests/anchors/fill.qml +++ b/tests/benchmarks/qml/qmltime/tests/anchors/fill.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/anchors/null.qml b/tests/benchmarks/qml/qmltime/tests/anchors/null.qml index 6771a277ce..c307c7ad17 100644 --- a/tests/benchmarks/qml/qmltime/tests/anchors/null.qml +++ b/tests/benchmarks/qml/qmltime/tests/anchors/null.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/animation/large.qml b/tests/benchmarks/qml/qmltime/tests/animation/large.qml index d9ec2e0b2c..673b1eb5d3 100644 --- a/tests/benchmarks/qml/qmltime/tests/animation/large.qml +++ b/tests/benchmarks/qml/qmltime/tests/animation/large.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/animation/largeNoProps.qml b/tests/benchmarks/qml/qmltime/tests/animation/largeNoProps.qml index a1b1332e8e..e026995527 100644 --- a/tests/benchmarks/qml/qmltime/tests/animation/largeNoProps.qml +++ b/tests/benchmarks/qml/qmltime/tests/animation/largeNoProps.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/item_creation/children.qml b/tests/benchmarks/qml/qmltime/tests/item_creation/children.qml index 4be14c1991..2a29c13979 100644 --- a/tests/benchmarks/qml/qmltime/tests/item_creation/children.qml +++ b/tests/benchmarks/qml/qmltime/tests/item_creation/children.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/item_creation/data.qml b/tests/benchmarks/qml/qmltime/tests/item_creation/data.qml index 1b310a8b5c..c2d554bfcd 100644 --- a/tests/benchmarks/qml/qmltime/tests/item_creation/data.qml +++ b/tests/benchmarks/qml/qmltime/tests/item_creation/data.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/item_creation/no_creation.qml b/tests/benchmarks/qml/qmltime/tests/item_creation/no_creation.qml index 9418704b38..cbe5025b00 100644 --- a/tests/benchmarks/qml/qmltime/tests/item_creation/no_creation.qml +++ b/tests/benchmarks/qml/qmltime/tests/item_creation/no_creation.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/item_creation/resources.qml b/tests/benchmarks/qml/qmltime/tests/item_creation/resources.qml index 30b7c4655c..adfb0cfca3 100644 --- a/tests/benchmarks/qml/qmltime/tests/item_creation/resources.qml +++ b/tests/benchmarks/qml/qmltime/tests/item_creation/resources.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/loader/Loaded.qml b/tests/benchmarks/qml/qmltime/tests/loader/Loaded.qml index b09296cdf3..e4a814d743 100644 --- a/tests/benchmarks/qml/qmltime/tests/loader/Loaded.qml +++ b/tests/benchmarks/qml/qmltime/tests/loader/Loaded.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/loader/component_loader.qml b/tests/benchmarks/qml/qmltime/tests/loader/component_loader.qml index 72c5447dfb..d7258d064f 100644 --- a/tests/benchmarks/qml/qmltime/tests/loader/component_loader.qml +++ b/tests/benchmarks/qml/qmltime/tests/loader/component_loader.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/loader/empty_loader.qml b/tests/benchmarks/qml/qmltime/tests/loader/empty_loader.qml index e15378075c..696e5f484b 100644 --- a/tests/benchmarks/qml/qmltime/tests/loader/empty_loader.qml +++ b/tests/benchmarks/qml/qmltime/tests/loader/empty_loader.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/loader/no_loader.qml b/tests/benchmarks/qml/qmltime/tests/loader/no_loader.qml index 614ca3b613..a0da2404f1 100644 --- a/tests/benchmarks/qml/qmltime/tests/loader/no_loader.qml +++ b/tests/benchmarks/qml/qmltime/tests/loader/no_loader.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/loader/source_loader.qml b/tests/benchmarks/qml/qmltime/tests/loader/source_loader.qml index 81e6297b28..eeb03bd452 100644 --- a/tests/benchmarks/qml/qmltime/tests/loader/source_loader.qml +++ b/tests/benchmarks/qml/qmltime/tests/loader/source_loader.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/positioner_creation/no_positioner.qml b/tests/benchmarks/qml/qmltime/tests/positioner_creation/no_positioner.qml index 2951adf9a7..243955339d 100644 --- a/tests/benchmarks/qml/qmltime/tests/positioner_creation/no_positioner.qml +++ b/tests/benchmarks/qml/qmltime/tests/positioner_creation/no_positioner.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/positioner_creation/null_positioner.qml b/tests/benchmarks/qml/qmltime/tests/positioner_creation/null_positioner.qml index 08b0fa5551..0d4c8e089e 100644 --- a/tests/benchmarks/qml/qmltime/tests/positioner_creation/null_positioner.qml +++ b/tests/benchmarks/qml/qmltime/tests/positioner_creation/null_positioner.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/positioner_creation/positioner.qml b/tests/benchmarks/qml/qmltime/tests/positioner_creation/positioner.qml index 78ad8f02a1..607a658a77 100644 --- a/tests/benchmarks/qml/qmltime/tests/positioner_creation/positioner.qml +++ b/tests/benchmarks/qml/qmltime/tests/positioner_creation/positioner.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/vmemetaobject/null.qml b/tests/benchmarks/qml/qmltime/tests/vmemetaobject/null.qml index 7636024cc1..61ad3f6873 100644 --- a/tests/benchmarks/qml/qmltime/tests/vmemetaobject/null.qml +++ b/tests/benchmarks/qml/qmltime/tests/vmemetaobject/null.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/tests/vmemetaobject/property.qml b/tests/benchmarks/qml/qmltime/tests/vmemetaobject/property.qml index 99bd0ddbe3..7e54a2c573 100644 --- a/tests/benchmarks/qml/qmltime/tests/vmemetaobject/property.qml +++ b/tests/benchmarks/qml/qmltime/tests/vmemetaobject/property.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qmltime/textingrid.qml b/tests/benchmarks/qml/qmltime/textingrid.qml index dbab405639..f4dde2c7ea 100644 --- a/tests/benchmarks/qml/qmltime/textingrid.qml +++ b/tests/benchmarks/qml/qmltime/textingrid.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject.qml b/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject.qml index 36a73a2b2a..79e87d4fcf 100644 --- a/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject.qml +++ b/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject_binding.qml b/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject_binding.qml index d84e52fa8b..87444354a9 100644 --- a/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject_binding.qml +++ b/tests/benchmarks/qml/qqmlcomponent/data/myqmlobject_binding.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/data/object.qml b/tests/benchmarks/qml/qqmlcomponent/data/object.qml index 4d3d8e31d3..01523fcc5b 100644 --- a/tests/benchmarks/qml/qqmlcomponent/data/object.qml +++ b/tests/benchmarks/qml/qqmlcomponent/data/object.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/data/object_id.qml b/tests/benchmarks/qml/qqmlcomponent/data/object_id.qml index 997e313d0c..a85d417da9 100644 --- a/tests/benchmarks/qml/qqmlcomponent/data/object_id.qml +++ b/tests/benchmarks/qml/qqmlcomponent/data/object_id.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/data/samegame/BoomBlock.qml b/tests/benchmarks/qml/qqmlcomponent/data/samegame/BoomBlock.qml index c10eab859f..0982f943cd 100644 --- a/tests/benchmarks/qml/qqmlcomponent/data/samegame/BoomBlock.qml +++ b/tests/benchmarks/qml/qqmlcomponent/data/samegame/BoomBlock.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.2.qml b/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.2.qml index ed1429fcac..da345e82a9 100644 --- a/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.2.qml +++ b/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.qml b/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.qml index eee503797c..0dfe651573 100644 --- a/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.qml +++ b/tests/benchmarks/qml/qqmlcomponent/data/synthesized_properties.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/testtypes.cpp b/tests/benchmarks/qml/qqmlcomponent/testtypes.cpp index bdb785c37d..8d3badab46 100644 --- a/tests/benchmarks/qml/qqmlcomponent/testtypes.cpp +++ b/tests/benchmarks/qml/qqmlcomponent/testtypes.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/testtypes.h b/tests/benchmarks/qml/qqmlcomponent/testtypes.h index ab41473761..f692ed03ff 100644 --- a/tests/benchmarks/qml/qqmlcomponent/testtypes.h +++ b/tests/benchmarks/qml/qqmlcomponent/testtypes.h @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlcomponent/tst_qqmlcomponent.cpp b/tests/benchmarks/qml/qqmlcomponent/tst_qqmlcomponent.cpp index 148a71a3ba..13b6168d73 100644 --- a/tests/benchmarks/qml/qqmlcomponent/tst_qqmlcomponent.cpp +++ b/tests/benchmarks/qml/qqmlcomponent/tst_qqmlcomponent.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmldebugtrace/tst_qqmldebugtrace.cpp b/tests/benchmarks/qml/qqmldebugtrace/tst_qqmldebugtrace.cpp index 296fb804ce..6a8e766f2e 100644 --- a/tests/benchmarks/qml/qqmldebugtrace/tst_qqmldebugtrace.cpp +++ b/tests/benchmarks/qml/qqmldebugtrace/tst_qqmldebugtrace.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlimage/tst_qqmlimage.cpp b/tests/benchmarks/qml/qqmlimage/tst_qqmlimage.cpp index 663fce6cf9..b953bbf703 100644 --- a/tests/benchmarks/qml/qqmlimage/tst_qqmlimage.cpp +++ b/tests/benchmarks/qml/qqmlimage/tst_qqmlimage.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlmetaproperty/data/object.qml b/tests/benchmarks/qml/qqmlmetaproperty/data/object.qml index d93552aeb8..26931a7450 100644 --- a/tests/benchmarks/qml/qqmlmetaproperty/data/object.qml +++ b/tests/benchmarks/qml/qqmlmetaproperty/data/object.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlmetaproperty/data/synthesized_object.qml b/tests/benchmarks/qml/qqmlmetaproperty/data/synthesized_object.qml index 339aa95ba3..9b73d316cf 100644 --- a/tests/benchmarks/qml/qqmlmetaproperty/data/synthesized_object.qml +++ b/tests/benchmarks/qml/qqmlmetaproperty/data/synthesized_object.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/qqmlmetaproperty/tst_qqmlmetaproperty.cpp b/tests/benchmarks/qml/qqmlmetaproperty/tst_qqmlmetaproperty.cpp index 4cbdb0d9a6..9ad8671ef0 100644 --- a/tests/benchmarks/qml/qqmlmetaproperty/tst_qqmlmetaproperty.cpp +++ b/tests/benchmarks/qml/qqmlmetaproperty/tst_qqmlmetaproperty.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/CustomObject.qml b/tests/benchmarks/qml/script/data/CustomObject.qml index 90a8f77297..95c0abbd76 100644 --- a/tests/benchmarks/qml/script/data/CustomObject.qml +++ b/tests/benchmarks/qml/script/data/CustomObject.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/block.qml b/tests/benchmarks/qml/script/data/block.qml index b9278c5074..e718106738 100644 --- a/tests/benchmarks/qml/script/data/block.qml +++ b/tests/benchmarks/qml/script/data/block.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/enums.qml b/tests/benchmarks/qml/script/data/enums.qml index b2ef3d53dc..c25f8726bb 100644 --- a/tests/benchmarks/qml/script/data/enums.qml +++ b/tests/benchmarks/qml/script/data/enums.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/global.js b/tests/benchmarks/qml/script/data/global.js index cbe66e45e9..ce313445c7 100644 --- a/tests/benchmarks/qml/script/data/global.js +++ b/tests/benchmarks/qml/script/data/global.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/global_prop.qml b/tests/benchmarks/qml/script/data/global_prop.qml index 9b2ade60de..8782384daf 100644 --- a/tests/benchmarks/qml/script/data/global_prop.qml +++ b/tests/benchmarks/qml/script/data/global_prop.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/namespacedEnums.qml b/tests/benchmarks/qml/script/data/namespacedEnums.qml index 85dc0069e0..0af7450fe1 100644 --- a/tests/benchmarks/qml/script/data/namespacedEnums.qml +++ b/tests/benchmarks/qml/script/data/namespacedEnums.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/scriptCall.qml b/tests/benchmarks/qml/script/data/scriptCall.qml index f4954e58d2..8da1ebbfee 100644 --- a/tests/benchmarks/qml/script/data/scriptCall.qml +++ b/tests/benchmarks/qml/script/data/scriptCall.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/signal_args.qml b/tests/benchmarks/qml/script/data/signal_args.qml index e92dca3f3a..7fc33b1508 100644 --- a/tests/benchmarks/qml/script/data/signal_args.qml +++ b/tests/benchmarks/qml/script/data/signal_args.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/signal_heavyArgsAccess.qml b/tests/benchmarks/qml/script/data/signal_heavyArgsAccess.qml index b0605a789b..b50725f66b 100644 --- a/tests/benchmarks/qml/script/data/signal_heavyArgsAccess.qml +++ b/tests/benchmarks/qml/script/data/signal_heavyArgsAccess.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/signal_heavyIdAccess.qml b/tests/benchmarks/qml/script/data/signal_heavyIdAccess.qml index 9449d88957..5f9459d9b2 100644 --- a/tests/benchmarks/qml/script/data/signal_heavyIdAccess.qml +++ b/tests/benchmarks/qml/script/data/signal_heavyIdAccess.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/signal_qml.qml b/tests/benchmarks/qml/script/data/signal_qml.qml index 53c05e3eed..7364a19d7e 100644 --- a/tests/benchmarks/qml/script/data/signal_qml.qml +++ b/tests/benchmarks/qml/script/data/signal_qml.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/signal_unconnected.qml b/tests/benchmarks/qml/script/data/signal_unconnected.qml index bb12134d05..27dee8d014 100644 --- a/tests/benchmarks/qml/script/data/signal_unconnected.qml +++ b/tests/benchmarks/qml/script/data/signal_unconnected.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/signal_unusedArgs.qml b/tests/benchmarks/qml/script/data/signal_unusedArgs.qml index 690ee0c5fa..a331beb0fb 100644 --- a/tests/benchmarks/qml/script/data/signal_unusedArgs.qml +++ b/tests/benchmarks/qml/script/data/signal_unusedArgs.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/slot_complex.qml b/tests/benchmarks/qml/script/data/slot_complex.qml index 90787f8d8c..4e467da901 100644 --- a/tests/benchmarks/qml/script/data/slot_complex.qml +++ b/tests/benchmarks/qml/script/data/slot_complex.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/slot_complex_js.qml b/tests/benchmarks/qml/script/data/slot_complex_js.qml index f19a3cf844..dc61197471 100644 --- a/tests/benchmarks/qml/script/data/slot_complex_js.qml +++ b/tests/benchmarks/qml/script/data/slot_complex_js.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/slot_simple.qml b/tests/benchmarks/qml/script/data/slot_simple.qml index e248b8f734..c45392082f 100644 --- a/tests/benchmarks/qml/script/data/slot_simple.qml +++ b/tests/benchmarks/qml/script/data/slot_simple.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/data/slot_simple_js.qml b/tests/benchmarks/qml/script/data/slot_simple_js.qml index b424db3a5d..8af21f458e 100644 --- a/tests/benchmarks/qml/script/data/slot_simple_js.qml +++ b/tests/benchmarks/qml/script/data/slot_simple_js.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/script/tst_script.cpp b/tests/benchmarks/qml/script/tst_script.cpp index 40ad21c4ba..2b409a5ee2 100644 --- a/tests/benchmarks/qml/script/tst_script.cpp +++ b/tests/benchmarks/qml/script/tst_script.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/qml/typeimports/data/QmlTestType1.qml b/tests/benchmarks/qml/typeimports/data/QmlTestType1.qml index a8fe7dfe0c..397e42ba20 100644 --- a/tests/benchmarks/qml/typeimports/data/QmlTestType1.qml +++ b/tests/benchmarks/qml/typeimports/data/QmlTestType1.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/typeimports/data/QmlTestType2.qml b/tests/benchmarks/qml/typeimports/data/QmlTestType2.qml index a4b15f70ec..18667859e2 100644 --- a/tests/benchmarks/qml/typeimports/data/QmlTestType2.qml +++ b/tests/benchmarks/qml/typeimports/data/QmlTestType2.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/typeimports/data/QmlTestType3.qml b/tests/benchmarks/qml/typeimports/data/QmlTestType3.qml index e9eb4f98e4..aac90b93e6 100644 --- a/tests/benchmarks/qml/typeimports/data/QmlTestType3.qml +++ b/tests/benchmarks/qml/typeimports/data/QmlTestType3.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/typeimports/data/QmlTestType4.qml b/tests/benchmarks/qml/typeimports/data/QmlTestType4.qml index 50ddf5ae10..b194194a0a 100644 --- a/tests/benchmarks/qml/typeimports/data/QmlTestType4.qml +++ b/tests/benchmarks/qml/typeimports/data/QmlTestType4.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/typeimports/data/cpp.qml b/tests/benchmarks/qml/typeimports/data/cpp.qml index 6150dfbf05..0ea77072ac 100644 --- a/tests/benchmarks/qml/typeimports/data/cpp.qml +++ b/tests/benchmarks/qml/typeimports/data/cpp.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/typeimports/data/qml.qml b/tests/benchmarks/qml/typeimports/data/qml.qml index edc7b5a165..7d6fef9d59 100644 --- a/tests/benchmarks/qml/typeimports/data/qml.qml +++ b/tests/benchmarks/qml/typeimports/data/qml.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/benchmarks/qml/typeimports/tst_typeimports.cpp b/tests/benchmarks/qml/typeimports/tst_typeimports.cpp index 50670ea0aa..c24e344a6b 100644 --- a/tests/benchmarks/qml/typeimports/tst_typeimports.cpp +++ b/tests/benchmarks/qml/typeimports/tst_typeimports.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/benchmarks/script/qjsvalue/tst_qjsvalue.cpp b/tests/benchmarks/script/qjsvalue/tst_qjsvalue.cpp index 8ae2a6a915..53570d8073 100644 --- a/tests/benchmarks/script/qjsvalue/tst_qjsvalue.cpp +++ b/tests/benchmarks/script/qjsvalue/tst_qjsvalue.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/manual/accessibility/animation.qml b/tests/manual/accessibility/animation.qml index b193539e3e..7011acc757 100644 --- a/tests/manual/accessibility/animation.qml +++ b/tests/manual/accessibility/animation.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/accessibility/behavior.qml b/tests/manual/accessibility/behavior.qml index 9adce44eb1..ae6420c14c 100644 --- a/tests/manual/accessibility/behavior.qml +++ b/tests/manual/accessibility/behavior.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/accessibility/flickable.qml b/tests/manual/accessibility/flickable.qml index b43ec03666..5863b82f3f 100644 --- a/tests/manual/accessibility/flickable.qml +++ b/tests/manual/accessibility/flickable.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/accessibility/hittest.qml b/tests/manual/accessibility/hittest.qml index 31ef3144db..a1a337ccbe 100644 --- a/tests/manual/accessibility/hittest.qml +++ b/tests/manual/accessibility/hittest.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/accessibility/numberanimation.qml b/tests/manual/accessibility/numberanimation.qml index 93fc032d3a..2574edd106 100644 --- a/tests/manual/accessibility/numberanimation.qml +++ b/tests/manual/accessibility/numberanimation.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/accessibility/textandbuttons.qml b/tests/manual/accessibility/textandbuttons.qml index 4dd4ca8e09..2869b95e5a 100644 --- a/tests/manual/accessibility/textandbuttons.qml +++ b/tests/manual/accessibility/textandbuttons.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/accessibility/transition.qml b/tests/manual/accessibility/transition.qml index 96c54bd0a4..a8d06b38c6 100644 --- a/tests/manual/accessibility/transition.qml +++ b/tests/manual/accessibility/transition.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/scenegraph_lancelot/hostinfo.sh b/tests/manual/scenegraph_lancelot/hostinfo.sh index 58ab9de5c1..c5d112445a 100644 --- a/tests/manual/scenegraph_lancelot/hostinfo.sh +++ b/tests/manual/scenegraph_lancelot/hostinfo.sh @@ -1,7 +1,7 @@ #!/bin/sh ############################################################################# ## -## Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ## Contact: http://www.qt-project.org/legal ## ## This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/manual/scenegraph_lancelot/scenegrabber/main.cpp b/tests/manual/scenegraph_lancelot/scenegrabber/main.cpp index e112df1812..bb2ce0d4e3 100644 --- a/tests/manual/scenegraph_lancelot/scenegrabber/main.cpp +++ b/tests/manual/scenegraph_lancelot/scenegrabber/main.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp b/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp index fb26b80cc1..74845ab954 100644 --- a/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp +++ b/tests/manual/scenegraph_lancelot/scenegraph/tst_scenegraph.cpp @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/system/sys_animatedsprite.qtt b/tests/system/sys_animatedsprite.qtt index d9f1a2ad81..fe3a205549 100644 --- a/tests/system/sys_animatedsprite.qtt +++ b/tests/system/sys_animatedsprite.qtt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/system/sys_elements.qtt b/tests/system/sys_elements.qtt index 693d4150e5..8703e5063b 100644 --- a/tests/system/sys_elements.qtt +++ b/tests/system/sys_elements.qtt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/system/sys_listview.qtt b/tests/system/sys_listview.qtt index 4a347b4929..51b62032ee 100644 --- a/tests/system/sys_listview.qtt +++ b/tests/system/sys_listview.qtt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/system/sys_text.qtt b/tests/system/sys_text.qtt index 12c9b628f5..bfdac229c2 100644 --- a/tests/system/sys_text.qtt +++ b/tests/system/sys_text.qtt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/system/sys_textedit.qtt b/tests/system/sys_textedit.qtt index 6d45846488..f5b938edec 100644 --- a/tests/system/sys_textedit.qtt +++ b/tests/system/sys_textedit.qtt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/system/sys_textinput.qtt b/tests/system/sys_textinput.qtt index 24805cdbde..9459b86d83 100644 --- a/tests/system/sys_textinput.qtt +++ b/tests/system/sys_textinput.qtt @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/animatedsprite/animatedsprite.qml b/tests/testapplications/animatedsprite/animatedsprite.qml index bc743efab9..368b42d679 100644 --- a/tests/testapplications/animatedsprite/animatedsprite.qml +++ b/tests/testapplications/animatedsprite/animatedsprite.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/animatedsprite/animatedspriteadvance.qml b/tests/testapplications/animatedsprite/animatedspriteadvance.qml index 13bd9b6ccb..b9eab3098d 100644 --- a/tests/testapplications/animatedsprite/animatedspriteadvance.qml +++ b/tests/testapplications/animatedsprite/animatedspriteadvance.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/AffectorElement.qml b/tests/testapplications/elements/content/AffectorElement.qml index 23c07fe006..194dc7fcb3 100644 --- a/tests/testapplications/elements/content/AffectorElement.qml +++ b/tests/testapplications/elements/content/AffectorElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/AnimatedImageElement.qml b/tests/testapplications/elements/content/AnimatedImageElement.qml index 1c0c61e52f..c0497b6ad1 100644 --- a/tests/testapplications/elements/content/AnimatedImageElement.qml +++ b/tests/testapplications/elements/content/AnimatedImageElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/AppContainer.qml b/tests/testapplications/elements/content/AppContainer.qml index 34bc821b3e..0eabc3f943 100644 --- a/tests/testapplications/elements/content/AppContainer.qml +++ b/tests/testapplications/elements/content/AppContainer.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/BorderImageElement.qml b/tests/testapplications/elements/content/BorderImageElement.qml index c61f67a1b6..1818babecd 100644 --- a/tests/testapplications/elements/content/BorderImageElement.qml +++ b/tests/testapplications/elements/content/BorderImageElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/BugPanel.qml b/tests/testapplications/elements/content/BugPanel.qml index 967fc951f5..61d07ef77a 100644 --- a/tests/testapplications/elements/content/BugPanel.qml +++ b/tests/testapplications/elements/content/BugPanel.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ColumnElement.qml b/tests/testapplications/elements/content/ColumnElement.qml index cba35ba36a..e513b11226 100644 --- a/tests/testapplications/elements/content/ColumnElement.qml +++ b/tests/testapplications/elements/content/ColumnElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/DirectionElement.qml b/tests/testapplications/elements/content/DirectionElement.qml index b34293fbe8..8cc9126b1e 100644 --- a/tests/testapplications/elements/content/DirectionElement.qml +++ b/tests/testapplications/elements/content/DirectionElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/DoubleValidatorElement.qml b/tests/testapplications/elements/content/DoubleValidatorElement.qml index e8dfcbd7ab..989eb185f0 100644 --- a/tests/testapplications/elements/content/DoubleValidatorElement.qml +++ b/tests/testapplications/elements/content/DoubleValidatorElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/EmitterElement.qml b/tests/testapplications/elements/content/EmitterElement.qml index f0bc9b352a..c33ceda854 100644 --- a/tests/testapplications/elements/content/EmitterElement.qml +++ b/tests/testapplications/elements/content/EmitterElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/FlickableElement.qml b/tests/testapplications/elements/content/FlickableElement.qml index 2365429f14..6c5fce7e5f 100644 --- a/tests/testapplications/elements/content/FlickableElement.qml +++ b/tests/testapplications/elements/content/FlickableElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/FlipableElement.qml b/tests/testapplications/elements/content/FlipableElement.qml index 1f441edf43..35174d8e42 100644 --- a/tests/testapplications/elements/content/FlipableElement.qml +++ b/tests/testapplications/elements/content/FlipableElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/FlowElement.qml b/tests/testapplications/elements/content/FlowElement.qml index d1008761d5..0041f14b55 100644 --- a/tests/testapplications/elements/content/FlowElement.qml +++ b/tests/testapplications/elements/content/FlowElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/FocusScopeElement.qml b/tests/testapplications/elements/content/FocusScopeElement.qml index fe38225102..dd3e8ada3a 100644 --- a/tests/testapplications/elements/content/FocusScopeElement.qml +++ b/tests/testapplications/elements/content/FocusScopeElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/FontLoaderElement.qml b/tests/testapplications/elements/content/FontLoaderElement.qml index 4431a23878..b4042be69c 100644 --- a/tests/testapplications/elements/content/FontLoaderElement.qml +++ b/tests/testapplications/elements/content/FontLoaderElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/GradientElement.qml b/tests/testapplications/elements/content/GradientElement.qml index ddcd9a91df..b4f4ebd160 100644 --- a/tests/testapplications/elements/content/GradientElement.qml +++ b/tests/testapplications/elements/content/GradientElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/GridElement.qml b/tests/testapplications/elements/content/GridElement.qml index 81d19945e6..39e954c476 100644 --- a/tests/testapplications/elements/content/GridElement.qml +++ b/tests/testapplications/elements/content/GridElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/GridViewElement.qml b/tests/testapplications/elements/content/GridViewElement.qml index 710bdc83fb..f42e8e90cc 100644 --- a/tests/testapplications/elements/content/GridViewElement.qml +++ b/tests/testapplications/elements/content/GridViewElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/Help.qml b/tests/testapplications/elements/content/Help.qml index 5fd967ff7c..1e1e26e26c 100644 --- a/tests/testapplications/elements/content/Help.qml +++ b/tests/testapplications/elements/content/Help.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/HelpDesk.qml b/tests/testapplications/elements/content/HelpDesk.qml index ca63228524..9a381283de 100644 --- a/tests/testapplications/elements/content/HelpDesk.qml +++ b/tests/testapplications/elements/content/HelpDesk.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ImageElement.qml b/tests/testapplications/elements/content/ImageElement.qml index a200e68682..296da9018e 100644 --- a/tests/testapplications/elements/content/ImageElement.qml +++ b/tests/testapplications/elements/content/ImageElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ImageParticleElement.qml b/tests/testapplications/elements/content/ImageParticleElement.qml index 44424804f2..b80b454d89 100644 --- a/tests/testapplications/elements/content/ImageParticleElement.qml +++ b/tests/testapplications/elements/content/ImageParticleElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/IntValidatorElement.qml b/tests/testapplications/elements/content/IntValidatorElement.qml index ff1fe5c2fa..a8baea5ad2 100644 --- a/tests/testapplications/elements/content/IntValidatorElement.qml +++ b/tests/testapplications/elements/content/IntValidatorElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/KeysElement.qml b/tests/testapplications/elements/content/KeysElement.qml index 3d211cb24e..ea8aaf9069 100644 --- a/tests/testapplications/elements/content/KeysElement.qml +++ b/tests/testapplications/elements/content/KeysElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ListViewElement.qml b/tests/testapplications/elements/content/ListViewElement.qml index aa8f163713..146b924541 100644 --- a/tests/testapplications/elements/content/ListViewElement.qml +++ b/tests/testapplications/elements/content/ListViewElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/MouseAreaElement.qml b/tests/testapplications/elements/content/MouseAreaElement.qml index 36cd31298c..f673ba7f4e 100644 --- a/tests/testapplications/elements/content/MouseAreaElement.qml +++ b/tests/testapplications/elements/content/MouseAreaElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ParallelAnimationElement.qml b/tests/testapplications/elements/content/ParallelAnimationElement.qml index 82c2e47c5f..dfefef429e 100644 --- a/tests/testapplications/elements/content/ParallelAnimationElement.qml +++ b/tests/testapplications/elements/content/ParallelAnimationElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ParticleSystemElement.qml b/tests/testapplications/elements/content/ParticleSystemElement.qml index e9999aad89..c8a0a7229c 100644 --- a/tests/testapplications/elements/content/ParticleSystemElement.qml +++ b/tests/testapplications/elements/content/ParticleSystemElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/RectangleElement.qml b/tests/testapplications/elements/content/RectangleElement.qml index bc2365058c..f67c918c46 100644 --- a/tests/testapplications/elements/content/RectangleElement.qml +++ b/tests/testapplications/elements/content/RectangleElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/RegExpValidatorElement.qml b/tests/testapplications/elements/content/RegExpValidatorElement.qml index 92c41057f4..aa1b30498c 100644 --- a/tests/testapplications/elements/content/RegExpValidatorElement.qml +++ b/tests/testapplications/elements/content/RegExpValidatorElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/RepeaterElement.qml b/tests/testapplications/elements/content/RepeaterElement.qml index b0c0c84b5a..30109cf780 100644 --- a/tests/testapplications/elements/content/RepeaterElement.qml +++ b/tests/testapplications/elements/content/RepeaterElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/RowElement.qml b/tests/testapplications/elements/content/RowElement.qml index 1fe61e3558..c08867ba33 100644 --- a/tests/testapplications/elements/content/RowElement.qml +++ b/tests/testapplications/elements/content/RowElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ScaleElement.qml b/tests/testapplications/elements/content/ScaleElement.qml index d09385393e..7ad339e5aa 100644 --- a/tests/testapplications/elements/content/ScaleElement.qml +++ b/tests/testapplications/elements/content/ScaleElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/SequentialAnimationElement.qml b/tests/testapplications/elements/content/SequentialAnimationElement.qml index 7db1d82d8d..89965f71aa 100644 --- a/tests/testapplications/elements/content/SequentialAnimationElement.qml +++ b/tests/testapplications/elements/content/SequentialAnimationElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/ShapeElement.qml b/tests/testapplications/elements/content/ShapeElement.qml index d813eedb86..2e12aebaf0 100644 --- a/tests/testapplications/elements/content/ShapeElement.qml +++ b/tests/testapplications/elements/content/ShapeElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/SpriteSequenceElement.qml b/tests/testapplications/elements/content/SpriteSequenceElement.qml index 13421ffa6c..4df7d275e8 100644 --- a/tests/testapplications/elements/content/SpriteSequenceElement.qml +++ b/tests/testapplications/elements/content/SpriteSequenceElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/SystemPaletteElement.qml b/tests/testapplications/elements/content/SystemPaletteElement.qml index 8be1bd870e..21d9dc590f 100644 --- a/tests/testapplications/elements/content/SystemPaletteElement.qml +++ b/tests/testapplications/elements/content/SystemPaletteElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/SystemTestHelp.qml b/tests/testapplications/elements/content/SystemTestHelp.qml index b758d88df4..a7a5948b95 100644 --- a/tests/testapplications/elements/content/SystemTestHelp.qml +++ b/tests/testapplications/elements/content/SystemTestHelp.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/TextEditElement.qml b/tests/testapplications/elements/content/TextEditElement.qml index d74757fa14..64c49f52ed 100644 --- a/tests/testapplications/elements/content/TextEditElement.qml +++ b/tests/testapplications/elements/content/TextEditElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/TextElement.qml b/tests/testapplications/elements/content/TextElement.qml index 69f310277b..665a81580a 100644 --- a/tests/testapplications/elements/content/TextElement.qml +++ b/tests/testapplications/elements/content/TextElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/TextInputElement.qml b/tests/testapplications/elements/content/TextInputElement.qml index de2d52e987..7d31ed33cf 100644 --- a/tests/testapplications/elements/content/TextInputElement.qml +++ b/tests/testapplications/elements/content/TextInputElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/TrailEmitterElement.qml b/tests/testapplications/elements/content/TrailEmitterElement.qml index 3bf3fe0f09..1d2ff67a73 100644 --- a/tests/testapplications/elements/content/TrailEmitterElement.qml +++ b/tests/testapplications/elements/content/TrailEmitterElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/XmlListModelElement.qml b/tests/testapplications/elements/content/XmlListModelElement.qml index a26969fc72..9a85a65cdf 100644 --- a/tests/testapplications/elements/content/XmlListModelElement.qml +++ b/tests/testapplications/elements/content/XmlListModelElement.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/content/elements.js b/tests/testapplications/elements/content/elements.js index 7aeb72f19b..d14930459c 100644 --- a/tests/testapplications/elements/content/elements.js +++ b/tests/testapplications/elements/content/elements.js @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/elements/elements.qml b/tests/testapplications/elements/elements.qml index 529091b1fc..fbdee6cb98 100644 --- a/tests/testapplications/elements/elements.qml +++ b/tests/testapplications/elements/elements.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/listview/alteredViews.qml b/tests/testapplications/listview/alteredViews.qml index ea97aa8e53..202a0ba345 100644 --- a/tests/testapplications/listview/alteredViews.qml +++ b/tests/testapplications/listview/alteredViews.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/listview/onRemove.qml b/tests/testapplications/listview/onRemove.qml index 2901f870b9..4875751655 100644 --- a/tests/testapplications/listview/onRemove.qml +++ b/tests/testapplications/listview/onRemove.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/listview/sections.qml b/tests/testapplications/listview/sections.qml index d1069abfad..72ea875a86 100644 --- a/tests/testapplications/listview/sections.qml +++ b/tests/testapplications/listview/sections.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/listview/viewTransitions.qml b/tests/testapplications/listview/viewTransitions.qml index 1e743094a2..b4e62a4344 100644 --- a/tests/testapplications/listview/viewTransitions.qml +++ b/tests/testapplications/listview/viewTransitions.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/qsgimage/ImageNG.qml b/tests/testapplications/qsgimage/ImageNG.qml index 42f1748816..f5717042d5 100644 --- a/tests/testapplications/qsgimage/ImageNG.qml +++ b/tests/testapplications/qsgimage/ImageNG.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/testapplications/qsgimage/img-align.qml b/tests/testapplications/qsgimage/img-align.qml index e7bc7b19fd..2d7bfc1356 100644 --- a/tests/testapplications/qsgimage/img-align.qml +++ b/tests/testapplications/qsgimage/img-align.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtQml module of the Qt Toolkit. diff --git a/tests/testapplications/text/Button.qml b/tests/testapplications/text/Button.qml index a7095542d9..c3025b752b 100644 --- a/tests/testapplications/text/Button.qml +++ b/tests/testapplications/text/Button.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/text/ControlView.qml b/tests/testapplications/text/ControlView.qml index c3000000da..e931eac9de 100644 --- a/tests/testapplications/text/ControlView.qml +++ b/tests/testapplications/text/ControlView.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/text/text.qml b/tests/testapplications/text/text.qml index 09ad506eb5..56ca825d0a 100644 --- a/tests/testapplications/text/text.qml +++ b/tests/testapplications/text/text.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/text/textedit.qml b/tests/testapplications/text/textedit.qml index 5e14bf8a75..789a52894e 100644 --- a/tests/testapplications/text/textedit.qml +++ b/tests/testapplications/text/textedit.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/text/textinput.qml b/tests/testapplications/text/textinput.qml index 17b45b97af..556771bcb5 100644 --- a/tests/testapplications/text/textinput.qml +++ b/tests/testapplications/text/textinput.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. diff --git a/tests/testapplications/textlayout/styledtext-layout.qml b/tests/testapplications/textlayout/styledtext-layout.qml index ed48f4071a..aaf18f0ba0 100644 --- a/tests/testapplications/textlayout/styledtext-layout.qml +++ b/tests/testapplications/textlayout/styledtext-layout.qml @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the test suite of the Qt Toolkit. -- cgit v1.2.3 From 9e604dcd07d5b943520ab2a3d472bd23fdd577ec Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Thu, 17 Jan 2013 18:46:45 +0900 Subject: Fix crash in PathView Change-Id: I259e7af1755ff9615782bbce03fc41ea1957cab3 Task-number: QTBUG-29176 Reviewed-by: Alan Alpert --- tests/auto/quick/qquickpathview/data/emptypath.qml | 6 ++++++ tests/auto/quick/qquickpathview/tst_qquickpathview.cpp | 14 ++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 tests/auto/quick/qquickpathview/data/emptypath.qml (limited to 'tests') diff --git a/tests/auto/quick/qquickpathview/data/emptypath.qml b/tests/auto/quick/qquickpathview/data/emptypath.qml new file mode 100644 index 0000000000..d68cf4491b --- /dev/null +++ b/tests/auto/quick/qquickpathview/data/emptypath.qml @@ -0,0 +1,6 @@ +import QtQuick 2.0 + +PathView { + model: 1 + delegate: Item {} +} diff --git a/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp b/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp index a7e0f2feb4..8821203902 100644 --- a/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp +++ b/tests/auto/quick/qquickpathview/tst_qquickpathview.cpp @@ -118,6 +118,7 @@ private slots: void pathUpdateOnStartChanged(); void package(); void emptyModel(); + void emptyPath(); void closed(); void pathUpdate(); void visualDataModel(); @@ -1373,6 +1374,19 @@ void tst_QQuickPathView::emptyModel() delete window; } +void tst_QQuickPathView::emptyPath() +{ + QQuickView *window = createView(); + + window->setSource(testFileUrl("emptypath.qml")); + qApp->processEvents(); + + QQuickPathView *pathview = qobject_cast(window->rootObject()); + QVERIFY(pathview != 0); + + delete window; +} + void tst_QQuickPathView::closed() { QQmlEngine engine; -- cgit v1.2.3 From 742cff521a366e907ceddbd441b8a34101e58d01 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Wed, 23 Jan 2013 12:05:41 +0100 Subject: Stabilize QQuickTextEdit test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tst_qquicktextedit::remoteCursorDelegate was failing because the test server served the the remote file too fast. It seems like the test relied on a slow machine to run it. Instead pass the Delay option to make the server serve the file delayed. Change-Id: Id99feea07f2da3b2ea0aa6c07e9b548e8f81f18b Reviewed-by: Jędrzej Nowacki --- tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp b/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp index a69a8166bc..78ae94e53e 100644 --- a/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp +++ b/tests/auto/quick/qquicktextedit/tst_qquicktextedit.cpp @@ -2328,7 +2328,7 @@ void tst_qquicktextedit::cursorDelegate() void tst_qquicktextedit::remoteCursorDelegate() { TestHTTPServer server(SERVER_PORT); - server.serveDirectory(dataDirectory()); + server.serveDirectory(dataDirectory(), TestHTTPServer::Delay); QQuickView view; -- cgit v1.2.3 From c5fb0a9d8a7eedaed0c4ecfe354219a9d252062f Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Wed, 23 Jan 2013 22:02:53 -0600 Subject: Disconnect from previous loading image when loading a new image. Change-Id: If2fa95d9715a55d3f07ecf5f232e4f4b9a44a6fb Reviewed-by: Gunnar Sletta --- .../auto/quick/qquickimage/data/correctStatus.qml | 26 +++++++++++ tests/auto/quick/qquickimage/tst_qquickimage.cpp | 51 ++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 tests/auto/quick/qquickimage/data/correctStatus.qml (limited to 'tests') diff --git a/tests/auto/quick/qquickimage/data/correctStatus.qml b/tests/auto/quick/qquickimage/data/correctStatus.qml new file mode 100644 index 0000000000..2326078657 --- /dev/null +++ b/tests/auto/quick/qquickimage/data/correctStatus.qml @@ -0,0 +1,26 @@ +import QtQuick 2.0 + +Item { + property alias status: image1.status + + Image { + id: image1 + asynchronous: true + source: "image://test/first-image.png" + } + + Image { + id: image2 + asynchronous: true + source: "image://test/first-image.png" + } + + Timer { + interval: 50 + running: true + repeat: false + onTriggered: { + image1.source = "image://test/second-image.png" + } + } +} diff --git a/tests/auto/quick/qquickimage/tst_qquickimage.cpp b/tests/auto/quick/qquickimage/tst_qquickimage.cpp index 7f3f0d5cbc..51ac5c640a 100644 --- a/tests/auto/quick/qquickimage/tst_qquickimage.cpp +++ b/tests/auto/quick/qquickimage/tst_qquickimage.cpp @@ -56,6 +56,7 @@ #include #include #include +#include #include "../../shared/util.h" #include "../../shared/testhttpserver.h" @@ -102,6 +103,7 @@ private slots: void sourceSize(); void progressAndStatusChanges(); void sourceSizeChanges(); + void correctStatus(); private: QQmlEngine engine; @@ -868,6 +870,55 @@ void tst_qquickimage::progressAndStatusChanges() delete obj; } +class TestQImageProvider : public QQuickImageProvider +{ +public: + TestQImageProvider() : QQuickImageProvider(Image) {} + + QImage requestImage(const QString &id, QSize *size, const QSize& requestedSize) + { + if (id == QLatin1String("first-image.png")) { + QTest::qWait(50); + int width = 100; + int height = 100; + QImage image(width, height, QImage::Format_RGB32); + image.fill(QColor("yellow").rgb()); + if (size) + *size = QSize(width, height); + return image; + } + + QTest::qWait(400); + int width = 100; + int height = 100; + QImage image(width, height, QImage::Format_RGB32); + image.fill(QColor("green").rgb()); + if (size) + *size = QSize(width, height); + return image; + } +}; + +void tst_qquickimage::correctStatus() +{ + QQmlEngine engine; + engine.addImageProvider(QLatin1String("test"), new TestQImageProvider()); + + QQmlComponent component(&engine, testFileUrl("correctStatus.qml")); + QObject *obj = component.create(); + QVERIFY(obj); + + QTest::qWait(200); + + // at this point image1 should be attempting to load second-image.png, + // and should be in the loading state. Without a clear prior to that load, + // the status can mistakenly be in the ready state. + QCOMPARE(obj->property("status").toInt(), int(QQuickImage::Loading)); + + QTest::qWait(400); + delete obj; +} + QTEST_MAIN(tst_qquickimage) #include "tst_qquickimage.moc" -- cgit v1.2.3 From dde265294fb8c48f9e0dce95d2287482ef0c0c6b Mon Sep 17 00:00:00 2001 From: Eskil Abrahamsen Blomfeldt Date: Thu, 24 Jan 2013 10:28:19 +0100 Subject: Fix alignment of Text element with implicit size In change e1d6b323d474acc5cd70fd9a0b283326316f55a0 there's an optimization which disables layouts on the QTextDocument, but the layout has to be re-enabled before we can call idealWidth() since this will be zero as long as the page size is 0x0. We simply set the page size to undefined again before calling idealWidth. Task-number: QTBUG-29262 Change-Id: I6bebe7be4c99fce0de8fc4178b5e1abc81abbe87 Reviewed-by: Michael Brasser Reviewed-by: aavit --- .../data/text/text_html_center_tag.qml | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/manual/scenegraph_lancelot/data/text/text_html_center_tag.qml (limited to 'tests') diff --git a/tests/manual/scenegraph_lancelot/data/text/text_html_center_tag.qml b/tests/manual/scenegraph_lancelot/data/text/text_html_center_tag.qml new file mode 100644 index 0000000000..86b528f0a4 --- /dev/null +++ b/tests/manual/scenegraph_lancelot/data/text/text_html_center_tag.qml @@ -0,0 +1,35 @@ +import QtQuick 2.0 + +Item { + width: 320 + height: 480 + + Text { + id: implicitSizedText + textFormat: Text.RichText + text: "
Implicit size
----- Second line -----
" + anchors.centerIn: parent + color: "white" + + Rectangle { + anchors.fill: parent + z: -1 + color: "blue" + } + } + Text { + textFormat: Text.RichText + text: "
Explicit size
----- Second line -----
" + anchors.top: implicitSizedText.bottom + anchors.topMargin: 10 + anchors.horizontalCenter: parent.horizontalCenter + width: 300 + color: "white" + + Rectangle { + anchors.fill: parent + z: -1 + color: "blue" + } + } +} -- cgit v1.2.3 From 6933b7e8e6dc279a8eb34e1f4c60bc109dfb7d26 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Fri, 11 Jan 2013 14:48:32 +0100 Subject: Ungrab mouse when FocusAboutToChange instead of Leave Commit 7b2e2117162594a2d0234bb02408f5b5a446488b introduced a regression in mouse handling: When moving the mouse out of the window it would cancel all further mouse events. That is actually not wanted (eg scroll bars). Instead ungrab the mouse when the focus changes, that means the mouse handling with popups works and the scrollbar use case is also fixed. All the tests related to this seem quite timing sensitive, so try some more QTRY_VERIFY. Remove the parallel_test so that more cpu time will actually let the tests pass more reliably. Change-Id: I90586b05f461d3762728a466d71bcb967e03d14b Reviewed-by: Gabriel de Dietrich --- .../auto/quick/qquickflickable/qquickflickable.pro | 1 - .../quick/qquickflickable/tst_qquickflickable.cpp | 10 ++++----- .../auto/quick/qquickmousearea/qquickmousearea.pro | 2 -- .../quick/qquickmousearea/tst_qquickmousearea.cpp | 26 +++++++++++++--------- 4 files changed, 21 insertions(+), 18 deletions(-) (limited to 'tests') diff --git a/tests/auto/quick/qquickflickable/qquickflickable.pro b/tests/auto/quick/qquickflickable/qquickflickable.pro index 3ba752bf7d..95c703befe 100644 --- a/tests/auto/quick/qquickflickable/qquickflickable.pro +++ b/tests/auto/quick/qquickflickable/qquickflickable.pro @@ -9,6 +9,5 @@ include (../shared/util.pri) TESTDATA = data/* -CONFIG += parallel_test QT += core-private gui-private v8-private qml-private quick-private testlib DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 diff --git a/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp b/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp index 662e86018c..784988b913 100644 --- a/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp +++ b/tests/auto/quick/qquickflickable/tst_qquickflickable.cpp @@ -618,7 +618,7 @@ void tst_qquickflickable::movingAndFlicking() window->setSource(testFileUrl("flickable03.qml")); window->show(); window->requestActivate(); - QTest::qWaitForWindowActive(window); + QVERIFY(QTest::qWaitForWindowActive(window)); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); @@ -639,7 +639,7 @@ void tst_qquickflickable::movingAndFlicking() // do a flick that keeps the view within the bounds flick(window, flickFrom, flickToWithoutSnapBack, 200); - QVERIFY(flickable->isMoving()); + QTRY_VERIFY(flickable->isMoving()); QCOMPARE(flickable->isMovingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isMovingVertically(), verticalEnabled); QVERIFY(flickable->isFlicking()); @@ -695,7 +695,7 @@ void tst_qquickflickable::movingAndFlicking() QTRY_VERIFY(!flickable->isMoving()); flick(window, flickFrom, flickToWithSnapBack, 200); - QVERIFY(flickable->isMoving()); + QTRY_VERIFY(flickable->isMoving()); QCOMPARE(flickable->isMovingHorizontally(), horizontalEnabled); QCOMPARE(flickable->isMovingVertically(), verticalEnabled); QVERIFY(flickable->isFlicking()); @@ -999,7 +999,7 @@ void tst_qquickflickable::pressWhileFlicking() // flicking == false, moving == true; flick(window, QPoint(20,190), QPoint(20, 50), 200); QVERIFY(flickable->verticalVelocity() > 0.0); - QVERIFY(flickable->isFlicking()); + QTRY_VERIFY(flickable->isFlicking()); QVERIFY(flickable->isFlickingVertically()); QVERIFY(!flickable->isFlickingHorizontally()); QVERIFY(flickable->isMoving()); @@ -1257,7 +1257,7 @@ void tst_qquickflickable::flickTwiceUsingTouches() window->setSource(testFileUrl("longList.qml")); window->show(); window->requestActivate(); - QTest::qWaitForWindowActive(window); + QVERIFY(QTest::qWaitForWindowActive(window)); QVERIFY(window->rootObject() != 0); QQuickFlickable *flickable = qobject_cast(window->rootObject()); diff --git a/tests/auto/quick/qquickmousearea/qquickmousearea.pro b/tests/auto/quick/qquickmousearea/qquickmousearea.pro index 957b04a558..dd7b434898 100644 --- a/tests/auto/quick/qquickmousearea/qquickmousearea.pro +++ b/tests/auto/quick/qquickmousearea/qquickmousearea.pro @@ -10,7 +10,5 @@ include (../../shared/util.pri) TESTDATA = data/* -CONFIG += parallel_test - QT += core-private gui-private qml-private quick-private network testlib DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 diff --git a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp index 9fd42373e2..ffe7b51537 100644 --- a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp +++ b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp @@ -248,7 +248,7 @@ void tst_QQuickMouseArea::dragging() window->setSource(testFileUrl("dragging.qml")); window->show(); window->requestActivate(); - QTest::qWait(20); + QVERIFY(QTest::qWaitForWindowExposed(window)); QVERIFY(window->rootObject() != 0); QQuickMouseArea *mouseRegion = window->rootObject()->findChild("mouseregion"); @@ -274,19 +274,17 @@ void tst_QQuickMouseArea::dragging() // First move event triggers drag, second is acted upon. // This is due to possibility of higher stacked area taking precedence. - QTest::mouseMove(window, QPoint(111,111)); - QTest::qWait(50); - QTest::mouseMove(window, QPoint(122,122)); - QTest::qWait(50); + QTest::mouseMove(window, QPoint(111,111), 50); + QTest::mouseMove(window, QPoint(116,116), 50); + QTest::mouseMove(window, QPoint(122,122), 50); - QVERIFY(drag->active()); - QCOMPARE(blackRect->x(), 72.0); + QTRY_VERIFY(drag->active()); + QTRY_COMPARE(blackRect->x(), 72.0); QCOMPARE(blackRect->y(), 72.0); QTest::mouseRelease(window, button, 0, QPoint(122,122)); - QTest::qWait(50); - QVERIFY(!drag->active()); + QTRY_VERIFY(!drag->active()); QCOMPARE(blackRect->x(), 72.0); QCOMPARE(blackRect->y(), 72.0); @@ -477,20 +475,28 @@ void tst_QQuickMouseArea::noOnClickedWithPressAndHold() window->show(); window->requestActivate(); QVERIFY(window->rootObject() != 0); + QQuickMouseArea *mouseArea = qobject_cast(window->rootObject()->children().first()); + QVERIFY(mouseArea); QMouseEvent pressEvent(QEvent::MouseButtonPress, QPoint(100, 100), Qt::LeftButton, Qt::LeftButton, 0); QGuiApplication::sendEvent(window, &pressEvent); + QVERIFY(mouseArea->pressedButtons() == Qt::LeftButton); QVERIFY(!window->rootObject()->property("clicked").toBool()); QVERIFY(!window->rootObject()->property("held").toBool()); + // timeout is 800 (in qquickmousearea.cpp) QTest::qWait(1000); + QCoreApplication::processEvents(); + + QVERIFY(!window->rootObject()->property("clicked").toBool()); + QVERIFY(window->rootObject()->property("held").toBool()); QMouseEvent releaseEvent(QEvent::MouseButtonRelease, QPoint(100, 100), Qt::LeftButton, Qt::LeftButton, 0); QGuiApplication::sendEvent(window, &releaseEvent); + QTRY_VERIFY(window->rootObject()->property("held").toBool()); QVERIFY(!window->rootObject()->property("clicked").toBool()); - QVERIFY(window->rootObject()->property("held").toBool()); delete window; } -- cgit v1.2.3 From 561ab99ad65711b61c47df9bd78ea928de525a53 Mon Sep 17 00:00:00 2001 From: Andrew den Exter Date: Wed, 19 Dec 2012 17:12:58 +1000 Subject: Ensure the cursorRectangle is updated as the width of the text changes. Outside of when of a monospace font is used, if the text changes the visual position of the cursor will have most likely changed as well even when the cursor index hasn't. Task-number: QTBUG-28677 Change-Id: If8077772d8541a677d5875976e6cd9fc453731df Reviewed-by: Alan Alpert --- tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests') diff --git a/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp b/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp index 3b1c5eb31c..86a05c3d3b 100644 --- a/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp +++ b/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp @@ -3087,6 +3087,14 @@ void tst_qquicktextinput::cursorRectangle() input.setHAlign(leftToRight ? QQuickTextInput::AlignRight : QQuickTextInput::AlignLeft); r = input.cursorRectangle(); QCOMPARE(r.left(), leftToRight ? input.width() : 0); + + QSignalSpy cursorRectangleSpy(&input, SIGNAL(cursorRectangleChanged())); + + QString widerText = shortText; + widerText[1] = 'W'; // Assumes shortText is at least two characters long. + input.setText(widerText); + + QCOMPARE(cursorRectangleSpy.count(), 1); } void tst_qquicktextinput::readOnly() -- cgit v1.2.3 From fc454c16c84d159767273a21019fbd65572f3bad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20R=C3=B8dal?= Date: Wed, 6 Feb 2013 09:18:19 +0100 Subject: Fixed Canvas ImageData pixel values not being settable to 0. Someone probably figured "since the data is all initialized to 0 to begin with, we can skip 0 values". However, it's possible to temporarily set a value to other than 0 and then back to 0, a fully valid use case that we need to support. Task-number: QTBUG-29065 Change-Id: Ia9f0803743d696ca8b9cca89c666ccba80a3abd0 Reviewed-by: Paul Olav Tvete Reviewed-by: Gunnar Sletta --- tests/auto/quick/qquickcanvasitem/data/tst_pixel.qml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests') diff --git a/tests/auto/quick/qquickcanvasitem/data/tst_pixel.qml b/tests/auto/quick/qquickcanvasitem/data/tst_pixel.qml index 469ff2398d..487f7dc903 100644 --- a/tests/auto/quick/qquickcanvasitem/data/tst_pixel.qml +++ b/tests/auto/quick/qquickcanvasitem/data/tst_pixel.qml @@ -1,4 +1,5 @@ import QtQuick 2.0 +import QtTest 1.0 CanvasTestCase { id:testCase @@ -7,6 +8,13 @@ CanvasTestCase { function test_createImageData(row) { var canvas = createCanvasObject(row); var ctx = canvas.getContext('2d'); + var imageData = ctx.createImageData(1, 1); + var imageDataValues = imageData.data; + imageDataValues[0] = 255; + imageDataValues[0] = 0; + if (imageDataValues[0] != 0) + qtest_fail('ImageData value access fail, expecting 0, got ' + imageDataValues[0]); + ctx.reset(); canvas.destroy() } -- cgit v1.2.3 From 1d29d8edf8e4e709ca2f27791cdf8672c15488f3 Mon Sep 17 00:00:00 2001 From: Frederik Gladhorn Date: Thu, 7 Feb 2013 14:30:48 +0100 Subject: Stabilize resizemodeitem test. Resizing can take time. Instead of qWait(50) use QTRY_COMPARE to make sure we give enough time. Change-Id: I484eca1f4d49381913dc82f405c73de653608493 Reviewed-by: Shawn Rutledge Reviewed-by: David Faure (KDE) Reviewed-by: Friedemann Kleint --- tests/auto/quick/qquickview/tst_qquickview.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/auto/quick/qquickview/tst_qquickview.cpp b/tests/auto/quick/qquickview/tst_qquickview.cpp index 64b108cbec..e2e20a6516 100644 --- a/tests/auto/quick/qquickview/tst_qquickview.cpp +++ b/tests/auto/quick/qquickview/tst_qquickview.cpp @@ -153,8 +153,7 @@ void tst_QQuickView::resizemodeitem() // size update from view view->resize(QSize(200,300)); - QTest::qWait(50); - QCOMPARE(item->width(), 200.0); + QTRY_COMPARE(item->width(), 200.0); QCOMPARE(item->height(), 300.0); QCOMPARE(view->size(), QSize(200, 300)); QCOMPARE(view->size(), view->sizeHint()); -- cgit v1.2.3 From e6aaaca5c1a5d01b8b0ef32abcb8ff6a39d81e3b Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Tue, 12 Feb 2013 21:06:32 +0100 Subject: Remove QPointerBase bic check. QPointerBase is not public or exported and it is to be removed Change-Id: Ieb7360a1a01125d4bff20140b02ec71a076440cb Reviewed-by: Thiago Macieira --- tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt | 5 ----- 1 file changed, 5 deletions(-) (limited to 'tests') diff --git a/tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt index d14e0a21ff..a4af2ac5b2 100644 --- a/tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt +++ b/tests/auto/bic/data/QtQml.5.0.0.linux-gcc-ia32.txt @@ -2407,11 +2407,6 @@ QObjectCleanupHandler (0xb4410384) 0 QObject (0xb43870a8) 0 primary-for QObjectCleanupHandler (0xb4410384) -Class QPointerBase - size=8 align=4 - base size=8 base align=4 -QPointerBase (0xb43875e8) 0 - Class QSharedMemory::QPrivateSignal size=1 align=1 base size=0 base align=1 -- cgit v1.2.3 From b324ee38a67c6e8529023f3f4e34be8af5f60166 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Tue, 12 Feb 2013 22:19:10 -0600 Subject: A MouseArea should not receive move or release events if the press was not accepted. Change-Id: If70650d7150b224f4460697a953611dd37d57af1 Reviewed-by: Frederik Gladhorn --- .../data/moveAndReleaseWithoutPress.qml | 14 +++++++++++++ .../quick/qquickmousearea/tst_qquickmousearea.cpp | 24 ++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 tests/auto/quick/qquickmousearea/data/moveAndReleaseWithoutPress.qml (limited to 'tests') diff --git a/tests/auto/quick/qquickmousearea/data/moveAndReleaseWithoutPress.qml b/tests/auto/quick/qquickmousearea/data/moveAndReleaseWithoutPress.qml new file mode 100644 index 0000000000..6c68f0c7c8 --- /dev/null +++ b/tests/auto/quick/qquickmousearea/data/moveAndReleaseWithoutPress.qml @@ -0,0 +1,14 @@ +import QtQuick 2.0 + +MouseArea { + width: 200 + height: 200 + + property bool hadMove: false + property bool hadRelease: false + + onPressed: mouse.accepted = false + onPositionChanged: hadMove = true + onReleased: hadRelease = true +} + diff --git a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp index ffe7b51537..37ce0fd394 100644 --- a/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp +++ b/tests/auto/quick/qquickmousearea/tst_qquickmousearea.cpp @@ -88,6 +88,7 @@ private slots: #ifndef QT_NO_CURSOR void cursorShape(); #endif + void moveAndReleaseWithoutPress(); private: void acceptedButton_data(); @@ -1402,6 +1403,29 @@ void tst_QQuickMouseArea::cursorShape() } #endif +void tst_QQuickMouseArea::moveAndReleaseWithoutPress() +{ + QQuickView *window = createView(); + + window->setSource(testFileUrl("moveAndReleaseWithoutPress.qml")); + window->show(); + window->requestActivate(); + QVERIFY(QTest::qWaitForWindowExposed(window)); + + QObject *root = window->rootObject(); + QVERIFY(root); + + QTest::mousePress(window, Qt::LeftButton, 0, QPoint(100,100)); + + QTest::mouseMove(window, QPoint(110,110), 50); + QTRY_COMPARE(root->property("hadMove").toBool(), false); + + QTest::mouseRelease(window, Qt::LeftButton, 0, QPoint(110,110)); + QTRY_COMPARE(root->property("hadRelease").toBool(), false); + + delete window; +} + QTEST_MAIN(tst_QQuickMouseArea) #include "tst_qquickmousearea.moc" -- cgit v1.2.3 From fb7ab18fa799032f37fd6f78ab34b76aff91ed6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20E=2E=20Narv=C3=A1ez?= Date: Sat, 16 Feb 2013 10:42:23 -0500 Subject: Add Test for Animating Qml Dynamic Properties using QPropertyAnimation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Test case for calling QQmlVMEMetaObject::metaCall from QPropertyAnimationPrivate::updateProperty Task-number: QTBUG-29082 Change-Id: Iecab74132eb3a843e53356effe3b6bbe4d5a8fb2 Reviewed-by: Alan Alpert Reviewed-by: Jędrzej Nowacki --- .../qquickdynamicpropertyanimation/data/MyItem.qml | 13 ++ .../qquickdynamicpropertyanimation.pro | 14 +++ .../tst_qquickdynamicpropertyanimation.cpp | 138 +++++++++++++++++++++ tests/auto/quick/quick.pro | 1 + 4 files changed, 166 insertions(+) create mode 100644 tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml create mode 100644 tests/auto/quick/qquickdynamicpropertyanimation/qquickdynamicpropertyanimation.pro create mode 100644 tests/auto/quick/qquickdynamicpropertyanimation/tst_qquickdynamicpropertyanimation.cpp (limited to 'tests') diff --git a/tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml b/tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml new file mode 100644 index 0000000000..2fc8b90ac8 --- /dev/null +++ b/tests/auto/quick/qquickdynamicpropertyanimation/data/MyItem.qml @@ -0,0 +1,13 @@ +import QtQuick 2.0 + +Item +{ + property int testInt: 0 + property double testDouble: 0.0 + property real testReal: 0.0 + property point testPoint: Qt.point(0, 0) + property size testSize: Qt.size(0, 0) + property rect testRect: Qt.rect(0, 0, 0, 0) + property color testColor: Qt.rgba(0.0, 0.0, 0.0, 0.0) + property var testVar: 0 +} diff --git a/tests/auto/quick/qquickdynamicpropertyanimation/qquickdynamicpropertyanimation.pro b/tests/auto/quick/qquickdynamicpropertyanimation/qquickdynamicpropertyanimation.pro new file mode 100644 index 0000000000..a67daa91ba --- /dev/null +++ b/tests/auto/quick/qquickdynamicpropertyanimation/qquickdynamicpropertyanimation.pro @@ -0,0 +1,14 @@ +CONFIG += testcase +TARGET = tst_qquickdynamicpropertyanimation +SOURCES += tst_qquickdynamicpropertyanimation.cpp + +include (../../shared/util.pri) + +macx:CONFIG -= app_bundle + +TESTDATA = data/* + +CONFIG += parallel_test + +QT += core gui qml quick testlib +DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0 diff --git a/tests/auto/quick/qquickdynamicpropertyanimation/tst_qquickdynamicpropertyanimation.cpp b/tests/auto/quick/qquickdynamicpropertyanimation/tst_qquickdynamicpropertyanimation.cpp new file mode 100644 index 0000000000..78f2d17e9b --- /dev/null +++ b/tests/auto/quick/qquickdynamicpropertyanimation/tst_qquickdynamicpropertyanimation.cpp @@ -0,0 +1,138 @@ +/**************************************************************************** +** +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/contact-us. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "../../shared/util.h" + +class tst_qquickdynamicpropertyanimation : public QQmlDataTest +{ + Q_OBJECT +public: + tst_qquickdynamicpropertyanimation() {} + +private: + template + void dynamicPropertyAnimation(const QByteArray & propertyName, T toValue) + { + QQuickView view(testFileUrl("MyItem.qml")); + QQuickItem * item = qobject_cast(view.rootObject()); + QVERIFY(item); + QQmlProperty testProp(item, propertyName); + QPropertyAnimation animation(item, propertyName, this); + animation.setEndValue(toValue); + QVERIFY(animation.targetObject() == item); + QVERIFY(animation.propertyName() == propertyName); + QVERIFY(animation.endValue().value() == toValue); + animation.start(); + QVERIFY(animation.state() == QAbstractAnimation::Running); + QTest::qWait(animation.duration()); + QTRY_COMPARE(testProp.read().value(), toValue); + } + +private slots: + void initTestCase() + { + QQmlEngine engine; // ensure types are registered + QQmlDataTest::initTestCase(); + } + + void dynamicIntPropertyAnimation(); + void dynamicDoublePropertyAnimation(); + void dynamicRealPropertyAnimation(); + void dynamicPointPropertyAnimation(); + void dynamicSizePropertyAnimation(); + void dynamicRectPropertyAnimation(); + void dynamicColorPropertyAnimation(); + void dynamicVarPropertyAnimation(); +}; + +void tst_qquickdynamicpropertyanimation::dynamicIntPropertyAnimation() +{ + dynamicPropertyAnimation("testInt", 1); +} + +void tst_qquickdynamicpropertyanimation::dynamicDoublePropertyAnimation() +{ + dynamicPropertyAnimation("testDouble", 1.0); +} + +void tst_qquickdynamicpropertyanimation::dynamicRealPropertyAnimation() +{ + dynamicPropertyAnimation("testReal", qreal(1.0)); +} + +void tst_qquickdynamicpropertyanimation::dynamicPointPropertyAnimation() +{ + dynamicPropertyAnimation("testPoint", QPoint(1, 1)); +} + +void tst_qquickdynamicpropertyanimation::dynamicSizePropertyAnimation() +{ + dynamicPropertyAnimation("testSize", QSize(1,1)); +} + +void tst_qquickdynamicpropertyanimation::dynamicRectPropertyAnimation() +{ + dynamicPropertyAnimation("testRect", QRect(1, 1, 1, 1)); +} + +void tst_qquickdynamicpropertyanimation::dynamicColorPropertyAnimation() +{ + dynamicPropertyAnimation("testColor", QColor::fromRgbF(1.0, 1.0, 1.0, 1.0)); +} + +void tst_qquickdynamicpropertyanimation::dynamicVarPropertyAnimation() +{ + dynamicPropertyAnimation("testVar", QVariant::fromValue(1)); +} + +QTEST_MAIN(tst_qquickdynamicpropertyanimation) + +#include "tst_qquickdynamicpropertyanimation.moc" diff --git a/tests/auto/quick/quick.pro b/tests/auto/quick/quick.pro index 3ed6ca8c99..c4a4173e0f 100644 --- a/tests/auto/quick/quick.pro +++ b/tests/auto/quick/quick.pro @@ -35,6 +35,7 @@ QUICKTESTS = \ qquickanchors \ qquickanimatedimage \ qquickanimatedsprite \ + qquickdynamicpropertyanimation \ qquickborderimage \ qquickwindow \ qquickdrag \ -- cgit v1.2.3