summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-02-19 08:09:02 +0100
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-02-19 09:13:32 +0200
commit7f5db665969865cd6a72841887dddb87a06fd5b9 (patch)
tree4b883e628c001bde2103baa7e42348b665182ccd
parent2bd868b685a2b0cff5399b0340745097d1a79c0c (diff)
downloadqt-creator-7f5db665969865cd6a72841887dddb87a06fd5b9.tar.gz
Fix copyright headers
Change-Id: If02fedb7c191492ddfaf2eb34e74fcdb7a007c94 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--plugins/autotest/AutoTest.json.in8
-rw-r--r--plugins/autotest/autotest_global.h9
-rw-r--r--plugins/autotest/autotestconstants.h9
-rw-r--r--plugins/autotest/autotestplugin.cpp9
-rw-r--r--plugins/autotest/autotestplugin.h9
-rw-r--r--plugins/autotest/autotestunittests.cpp9
-rw-r--r--plugins/autotest/autotestunittests.h9
-rw-r--r--plugins/autotest/testcodeparser.cpp9
-rw-r--r--plugins/autotest/testcodeparser.h9
-rw-r--r--plugins/autotest/testconfiguration.cpp9
-rw-r--r--plugins/autotest/testconfiguration.h9
-rw-r--r--plugins/autotest/testinfo.cpp9
-rw-r--r--plugins/autotest/testinfo.h9
-rw-r--r--plugins/autotest/testnavigationwidget.cpp9
-rw-r--r--plugins/autotest/testnavigationwidget.h9
-rw-r--r--plugins/autotest/testresult.cpp9
-rw-r--r--plugins/autotest/testresult.h9
-rw-r--r--plugins/autotest/testresultdelegate.cpp9
-rw-r--r--plugins/autotest/testresultdelegate.h9
-rw-r--r--plugins/autotest/testresultmodel.cpp9
-rw-r--r--plugins/autotest/testresultmodel.h9
-rw-r--r--plugins/autotest/testresultspane.cpp9
-rw-r--r--plugins/autotest/testresultspane.h9
-rw-r--r--plugins/autotest/testrunner.cpp9
-rw-r--r--plugins/autotest/testrunner.h9
-rw-r--r--plugins/autotest/testsettings.cpp9
-rw-r--r--plugins/autotest/testsettings.h9
-rw-r--r--plugins/autotest/testsettingspage.cpp9
-rw-r--r--plugins/autotest/testsettingspage.h9
-rw-r--r--plugins/autotest/testtreeitem.cpp9
-rw-r--r--plugins/autotest/testtreeitem.h9
-rw-r--r--plugins/autotest/testtreeitemdelegate.cpp9
-rw-r--r--plugins/autotest/testtreeitemdelegate.h9
-rw-r--r--plugins/autotest/testtreemodel.cpp9
-rw-r--r--plugins/autotest/testtreemodel.h9
-rw-r--r--plugins/autotest/testtreeview.cpp9
-rw-r--r--plugins/autotest/testtreeview.h9
-rw-r--r--plugins/autotest/testvisitor.cpp9
-rw-r--r--plugins/autotest/testvisitor.h9
-rw-r--r--plugins/autotest/testxmloutputreader.cpp9
-rw-r--r--plugins/autotest/testxmloutputreader.h9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/bench/tst_benchtest.cpp9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.cpp9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.h9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/gui/tst_guitest.cpp9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/bar/tst_foo.qml9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/notlisted/tst_bla.qml9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test1.qml9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test2.qml9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test3.qml9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test1.qml9
-rw-r--r--plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test2.qml9
-rw-r--r--plugins/autotest/unit_test/plain/test_plain/tst_simple.cpp9
53 files changed, 264 insertions, 212 deletions
diff --git a/plugins/autotest/AutoTest.json.in b/plugins/autotest/AutoTest.json.in
index dd25f250d2..415347eec1 100644
--- a/plugins/autotest/AutoTest.json.in
+++ b/plugins/autotest/AutoTest.json.in
@@ -3,13 +3,13 @@
\"Version\" : \"$$QTCREATOR_VERSION\",
\"CompatVersion\" : \"$$QTCREATOR_COMPAT_VERSION\",
\"Experimental\" : true,
-\"Vendor\" : \"Digia Plc\",
-\"Copyright\" : \"(C) 2014 Digia Plc\",
+\"Vendor\" : \"The Qt Company Ltd\",
+\"Copyright\" : \"(C) 2015 The Qt Company Ltd\",
\"License\" : [ \"Commercial Usage\",
\"\",
-\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Digia.\"
+\"Licensees holding valid Qt Commercial licenses may use this plugin in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company.\"
],
\"Description\" : \"Auto Test plugin.\",
-\"Url\" : \"http://qt.digia.com\",
+\"Url\" : \"http://www.qt.io\",
$$dependencyList
}
diff --git a/plugins/autotest/autotest_global.h b/plugins/autotest/autotest_global.h
index 3f3c6ae192..1d945af765 100644
--- a/plugins/autotest/autotest_global.h
+++ b/plugins/autotest/autotest_global.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/autotestconstants.h b/plugins/autotest/autotestconstants.h
index c82c5efbca..d1ed659079 100644
--- a/plugins/autotest/autotestconstants.h
+++ b/plugins/autotest/autotestconstants.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/autotestplugin.cpp b/plugins/autotest/autotestplugin.cpp
index 82e20e82c3..581ed8a195 100644
--- a/plugins/autotest/autotestplugin.cpp
+++ b/plugins/autotest/autotestplugin.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/autotestplugin.h b/plugins/autotest/autotestplugin.h
index aab664bc2d..8bf2664b40 100644
--- a/plugins/autotest/autotestplugin.h
+++ b/plugins/autotest/autotestplugin.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/autotestunittests.cpp b/plugins/autotest/autotestunittests.cpp
index 1010bbc191..15f32db669 100644
--- a/plugins/autotest/autotestunittests.cpp
+++ b/plugins/autotest/autotestunittests.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/autotestunittests.h b/plugins/autotest/autotestunittests.h
index 16c6042b5d..ab2b7c1b9b 100644
--- a/plugins/autotest/autotestunittests.h
+++ b/plugins/autotest/autotestunittests.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index d0c209224c..6577b5197f 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testcodeparser.h b/plugins/autotest/testcodeparser.h
index 88c2b223ca..c4ca773f38 100644
--- a/plugins/autotest/testcodeparser.h
+++ b/plugins/autotest/testcodeparser.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testconfiguration.cpp b/plugins/autotest/testconfiguration.cpp
index a8ca374334..7c161289ef 100644
--- a/plugins/autotest/testconfiguration.cpp
+++ b/plugins/autotest/testconfiguration.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testconfiguration.h b/plugins/autotest/testconfiguration.h
index 82fb874ca4..aff75d6405 100644
--- a/plugins/autotest/testconfiguration.h
+++ b/plugins/autotest/testconfiguration.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testinfo.cpp b/plugins/autotest/testinfo.cpp
index e3e13274f7..b83c8b61d1 100644
--- a/plugins/autotest/testinfo.cpp
+++ b/plugins/autotest/testinfo.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testinfo.h b/plugins/autotest/testinfo.h
index cadd57212f..21fc120083 100644
--- a/plugins/autotest/testinfo.h
+++ b/plugins/autotest/testinfo.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testnavigationwidget.cpp b/plugins/autotest/testnavigationwidget.cpp
index 2a5bf152e3..b58e8a6b52 100644
--- a/plugins/autotest/testnavigationwidget.cpp
+++ b/plugins/autotest/testnavigationwidget.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testnavigationwidget.h b/plugins/autotest/testnavigationwidget.h
index 3ea7753663..5e0ec2197e 100644
--- a/plugins/autotest/testnavigationwidget.h
+++ b/plugins/autotest/testnavigationwidget.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresult.cpp b/plugins/autotest/testresult.cpp
index 5e87895560..6a054a4c7d 100644
--- a/plugins/autotest/testresult.cpp
+++ b/plugins/autotest/testresult.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresult.h b/plugins/autotest/testresult.h
index 086b0fd21d..c1d6d5eac4 100644
--- a/plugins/autotest/testresult.h
+++ b/plugins/autotest/testresult.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresultdelegate.cpp b/plugins/autotest/testresultdelegate.cpp
index e6df02dc9f..32aa33df5e 100644
--- a/plugins/autotest/testresultdelegate.cpp
+++ b/plugins/autotest/testresultdelegate.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresultdelegate.h b/plugins/autotest/testresultdelegate.h
index 2b85ae1076..0627ed5ee5 100644
--- a/plugins/autotest/testresultdelegate.h
+++ b/plugins/autotest/testresultdelegate.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresultmodel.cpp b/plugins/autotest/testresultmodel.cpp
index f0324458c3..0704001488 100644
--- a/plugins/autotest/testresultmodel.cpp
+++ b/plugins/autotest/testresultmodel.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresultmodel.h b/plugins/autotest/testresultmodel.h
index 5747194a88..c10bc44013 100644
--- a/plugins/autotest/testresultmodel.h
+++ b/plugins/autotest/testresultmodel.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresultspane.cpp b/plugins/autotest/testresultspane.cpp
index cb93d156fa..6985a7d86f 100644
--- a/plugins/autotest/testresultspane.cpp
+++ b/plugins/autotest/testresultspane.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testresultspane.h b/plugins/autotest/testresultspane.h
index 3567bd292e..e2d7c6746f 100644
--- a/plugins/autotest/testresultspane.h
+++ b/plugins/autotest/testresultspane.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testrunner.cpp b/plugins/autotest/testrunner.cpp
index 150e72750d..6b1c68a9d4 100644
--- a/plugins/autotest/testrunner.cpp
+++ b/plugins/autotest/testrunner.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
#include "testrunner.h"
diff --git a/plugins/autotest/testrunner.h b/plugins/autotest/testrunner.h
index a5e472d223..ddbac5e92f 100644
--- a/plugins/autotest/testrunner.h
+++ b/plugins/autotest/testrunner.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testsettings.cpp b/plugins/autotest/testsettings.cpp
index ce4c00d08d..0656784215 100644
--- a/plugins/autotest/testsettings.cpp
+++ b/plugins/autotest/testsettings.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testsettings.h b/plugins/autotest/testsettings.h
index 44ab410093..c7ff22c3ff 100644
--- a/plugins/autotest/testsettings.h
+++ b/plugins/autotest/testsettings.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testsettingspage.cpp b/plugins/autotest/testsettingspage.cpp
index a41c287823..53ab2c71a1 100644
--- a/plugins/autotest/testsettingspage.cpp
+++ b/plugins/autotest/testsettingspage.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testsettingspage.h b/plugins/autotest/testsettingspage.h
index cc30026fe2..3e98c8413d 100644
--- a/plugins/autotest/testsettingspage.h
+++ b/plugins/autotest/testsettingspage.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreeitem.cpp b/plugins/autotest/testtreeitem.cpp
index f377118313..721c605473 100644
--- a/plugins/autotest/testtreeitem.cpp
+++ b/plugins/autotest/testtreeitem.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreeitem.h b/plugins/autotest/testtreeitem.h
index e1814db356..0cfa1aead1 100644
--- a/plugins/autotest/testtreeitem.h
+++ b/plugins/autotest/testtreeitem.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreeitemdelegate.cpp b/plugins/autotest/testtreeitemdelegate.cpp
index 71ccef5756..1e5952c7a0 100644
--- a/plugins/autotest/testtreeitemdelegate.cpp
+++ b/plugins/autotest/testtreeitemdelegate.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreeitemdelegate.h b/plugins/autotest/testtreeitemdelegate.h
index af31022b0b..d4777f438c 100644
--- a/plugins/autotest/testtreeitemdelegate.h
+++ b/plugins/autotest/testtreeitemdelegate.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreemodel.cpp b/plugins/autotest/testtreemodel.cpp
index ea2832451d..0b21ec3cea 100644
--- a/plugins/autotest/testtreemodel.cpp
+++ b/plugins/autotest/testtreemodel.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreemodel.h b/plugins/autotest/testtreemodel.h
index 44186285a9..f1229cedf5 100644
--- a/plugins/autotest/testtreemodel.h
+++ b/plugins/autotest/testtreemodel.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreeview.cpp b/plugins/autotest/testtreeview.cpp
index 704067a637..5675e9266f 100644
--- a/plugins/autotest/testtreeview.cpp
+++ b/plugins/autotest/testtreeview.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testtreeview.h b/plugins/autotest/testtreeview.h
index 9865e69df2..c9a4d9f9ff 100644
--- a/plugins/autotest/testtreeview.h
+++ b/plugins/autotest/testtreeview.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testvisitor.cpp b/plugins/autotest/testvisitor.cpp
index b6706b5bf4..b43a0c0271 100644
--- a/plugins/autotest/testvisitor.cpp
+++ b/plugins/autotest/testvisitor.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testvisitor.h b/plugins/autotest/testvisitor.h
index ae6b844ca2..279aca6cbe 100644
--- a/plugins/autotest/testvisitor.h
+++ b/plugins/autotest/testvisitor.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testxmloutputreader.cpp b/plugins/autotest/testxmloutputreader.cpp
index 193b716a26..31d21b959a 100644
--- a/plugins/autotest/testxmloutputreader.cpp
+++ b/plugins/autotest/testxmloutputreader.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/testxmloutputreader.h b/plugins/autotest/testxmloutputreader.h
index 436dd5fc68..1ca22b9698 100644
--- a/plugins/autotest/testxmloutputreader.h
+++ b/plugins/autotest/testxmloutputreader.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/bench/tst_benchtest.cpp b/plugins/autotest/unit_test/mixed_atp/tests/auto/bench/tst_benchtest.cpp
index 1d968a0147..bd00dda563 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/bench/tst_benchtest.cpp
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/bench/tst_benchtest.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
#include <QString>
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.cpp b/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.cpp
index 9dc2c9ec3a..caac56ff03 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.cpp
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
#include "tst_foo.h"
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.h b/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.h
index 29bb8f5f6e..f9b95a2bd7 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.h
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/dummy/tst_foo.h
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
#ifndef FOO_H_INCLUDED
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/gui/tst_guitest.cpp b/plugins/autotest/unit_test/mixed_atp/tests/auto/gui/tst_guitest.cpp
index 13d61ba151..5681ce1fd3 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/gui/tst_guitest.cpp
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/gui/tst_guitest.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
#include <QString>
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/bar/tst_foo.qml b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/bar/tst_foo.qml
index ff825cd989..da2196e79d 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/bar/tst_foo.qml
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/bar/tst_foo.qml
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
import QtQuick 2.0
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/notlisted/tst_bla.qml b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/notlisted/tst_bla.qml
index 325b7c4927..b6f04f5389 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/notlisted/tst_bla.qml
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/notlisted/tst_bla.qml
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
import QtQuick 2.0
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test1.qml b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test1.qml
index 8bf1379dc9..67d2965452 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test1.qml
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test1.qml
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
import QtQuick 2.0
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test2.qml b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test2.qml
index c9a7f5286b..02331ec9a0 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test2.qml
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test2.qml
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
import QtQuick 2.0
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test3.qml b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test3.qml
index 3575c6b313..8d362d1dd9 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test3.qml
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto/tst_test3.qml
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
import QtQuick 2.0
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test1.qml b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test1.qml
index 8bf1379dc9..67d2965452 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test1.qml
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test1.qml
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
import QtQuick 2.0
diff --git a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test2.qml b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test2.qml
index a72913a84e..1c3465b1c3 100644
--- a/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test2.qml
+++ b/plugins/autotest/unit_test/mixed_atp/tests/auto/quickauto2/tst_test2.qml
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
import QtQuick 2.0
diff --git a/plugins/autotest/unit_test/plain/test_plain/tst_simple.cpp b/plugins/autotest/unit_test/plain/test_plain/tst_simple.cpp
index 785aa6a1c8..864883f75b 100644
--- a/plugins/autotest/unit_test/plain/test_plain/tst_simple.cpp
+++ b/plugins/autotest/unit_test/plain/test_plain/tst_simple.cpp
@@ -1,18 +1,19 @@
/****************************************************************************
**
-** Copyright (C) 2014 Digia Plc
+** Copyright (C) 2015 The Qt Company Ltd
** All rights reserved.
-** For any questions to Digia, please use contact form at http://qt.digia.com
+** For any questions to The Qt Company, please use contact form at
+** http://www.qt.io/contact-us
**
** This file is part of the Qt Creator Enterprise Auto Test Add-on.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia.
+** a written agreement between you and The Qt Company.
**
** If you have questions regarding the use of this file, please use
-** contact form at http://qt.digia.com
+** contact form at http://www.qt.io/contact-us
**
****************************************************************************/
#include "tst_simple.h"