From 0d12d71920067be499d9237b4ad04f7f11047759 Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Fri, 13 Apr 2018 13:55:45 +0200 Subject: Add references from ApiExtractor to shiboken doc Including intersphinx extension allow us to link the documentation from ApiExtractor to shiboken's. ApiExtractor doc need to be build first, so we can use the inventory that sphinx create, to link it to shiboken's configuration. All the harcoded references were replaced by dynamic references. Also new labels were included to properly cross reference topics. Checked the spell on many rst files too. Task-number: PYSIDE-363 Change-Id: I11a50b1f9eee48a00a3de6f957942eb0823eba47 Reviewed-by: Alexandru Croitor --- setup.py | 16 +++++++++++----- sources/shiboken2/ApiExtractor/CMakeLists.txt | 2 +- .../ApiExtractor/doc/typesystem_arguments.rst | 20 +++++++++++++++++--- sources/shiboken2/doc/CMakeLists.txt | 2 +- sources/shiboken2/doc/codeinjectionsemantics.rst | 14 +++++--------- sources/shiboken2/doc/conf.py.in | 4 +++- sources/shiboken2/doc/faq.rst | 7 +++---- sources/shiboken2/doc/typeconverters.rst | 20 +++++++------------- sources/shiboken2/doc/typesystemvariables.rst | 7 ++----- 9 files changed, 50 insertions(+), 42 deletions(-) diff --git a/setup.py b/setup.py index 5b1faf0ff..e2ad9aa14 100644 --- a/setup.py +++ b/setup.py @@ -1293,11 +1293,17 @@ class pyside_build(_build): raise DistutilsSetupError("Error compiling {}".format(extension)) if extension.lower() == "shiboken2": - log.info("Generating Shiboken documentation {}...".format( - extension)) - if run_process([self.make_path, "doc"]) != 0: - raise DistutilsSetupError("Error generating documentation " - "{}".format(extension)) + try: + # Check if sphinx is installed to proceed + import sphinx + + log.info("Generating Shiboken documentation") + if run_process([self.make_path, "doc"]) != 0: + raise DistutilsSetupError( + "Error generating documentation {}".format(extension)) + except ImportError: + log.info("Sphinx not found, skipping documentation build") + if not OPTION_SKIP_MAKE_INSTALL: log.info("Installing module {}...".format(extension)) diff --git a/sources/shiboken2/ApiExtractor/CMakeLists.txt b/sources/shiboken2/ApiExtractor/CMakeLists.txt index 8d68b0dcf..a3301a068 100644 --- a/sources/shiboken2/ApiExtractor/CMakeLists.txt +++ b/sources/shiboken2/ApiExtractor/CMakeLists.txt @@ -63,7 +63,6 @@ parser/enumvalue.cpp set(APIEXTRACTOR_EXTRA_INCLUDES ${CLANG_EXTRA_INCLUDES}) set(APIEXTRACTOR_EXTRA_LIBRARIES ${CLANG_EXTRA_LIBRARIES}) -add_subdirectory(doc) if (NOT DISABLE_DOCSTRINGS) set(apiextractor_SRC ${apiextractor_SRC} @@ -92,6 +91,7 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR} ${Qt5Xml_INCLUDE_DIRS} ) +add_subdirectory(doc) add_library(apiextractor STATIC ${apiextractor_SRC} ${apiextractor_RCCS_SRC}) target_link_libraries(apiextractor ${Qt5Xml_LIBRARIES} diff --git a/sources/shiboken2/ApiExtractor/doc/typesystem_arguments.rst b/sources/shiboken2/ApiExtractor/doc/typesystem_arguments.rst index 16e0678d3..28a5c80bc 100644 --- a/sources/shiboken2/ApiExtractor/doc/typesystem_arguments.rst +++ b/sources/shiboken2/ApiExtractor/doc/typesystem_arguments.rst @@ -3,17 +3,18 @@ Modifying Arguments ------------------- -.. _conversion-rule: +.. _conversionrule: conversion-rule ^^^^^^^^^^^^^^^ The conversion-rule node allows you to write customized code to convert - the given argument between the target language and C++, and it is a child of the modify-argument node. + the given argument between the target language and C++, and it is a child of the modify-argument node: .. code-block:: xml - + + // the code @@ -36,6 +37,8 @@ conversion-rule .. note:: You can also use the conversion-rule node to specify :ref:`a conversion code which will be used instead of the generator's conversion code everywhere for a given type `. +.. _remove-argument: + remove-argument ^^^^^^^^^^^^^^^ @@ -48,6 +51,8 @@ remove-argument +.. _rename-to: + rename to ^^^^^^^^^ @@ -59,6 +64,7 @@ rename to +.. _remove-default-expression: remove-default-expression ^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -72,6 +78,8 @@ remove-default-expression +.. _replace-default-expression: + replace-default-expression ^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -85,6 +93,7 @@ replace-default-expression +.. _replace-type: replace-type ^^^^^^^^^^^^ @@ -103,6 +112,8 @@ replace-type the fully qualified name (including name of the package as well as the class name). +.. _define-ownership: + define-ownership ^^^^^^^^^^^^^^^^ @@ -126,6 +137,7 @@ define-ownership owner="target | c++ | default" /> +.. _reference-count: reference-count ^^^^^^^^^^^^^^^ @@ -161,6 +173,7 @@ reference-count The variable-name attribute specifies the name used for the variable that holds the reference(s). +.. _replace-value: replace-value ^^^^^^^^^^^^^ @@ -173,6 +186,7 @@ replace-value +.. _parent: parent ^^^^^^ diff --git a/sources/shiboken2/doc/CMakeLists.txt b/sources/shiboken2/doc/CMakeLists.txt index 7bd0161ad..bb5ad8607 100644 --- a/sources/shiboken2/doc/CMakeLists.txt +++ b/sources/shiboken2/doc/CMakeLists.txt @@ -1,10 +1,10 @@ - find_program(SPHINX sphinx-build DOC "Path to sphinx-build binary.") if (SPHINX) message("-- sphinx-build - found") configure_file(conf.py.in conf.py @ONLY) add_custom_target(doc ${SPHINX} -b html -c . ${CMAKE_CURRENT_SOURCE_DIR} html ) + add_dependencies(doc doc_apiextractor) else() message("-- sphinx-build - not found! doc target disabled") if (WIN32) diff --git a/sources/shiboken2/doc/codeinjectionsemantics.rst b/sources/shiboken2/doc/codeinjectionsemantics.rst index bf3ddbe5e..0051c63df 100644 --- a/sources/shiboken2/doc/codeinjectionsemantics.rst +++ b/sources/shiboken2/doc/codeinjectionsemantics.rst @@ -2,12 +2,11 @@ Code Injection Semantics ************************ -API Extractor provides the `inject-code`_ tag allowing the user to put custom -written code to on specific locations of the generated code. -Yet this is only part of what is needed to generate proper binding code, where -the custom code should be written to depends upon the technology used on the -generated binding code. - +:std:doc:`API Extractor ` provides the +:ref:`inject-code ` tag +allowing the user to put custom written code to on specific locations of the generated code. +Yet this is only part of what is needed to generate proper binding code, where the custom code +should be written to depends upon the technology used on the generated binding code. This is the ``inject-code`` tag options that matters to |project|. @@ -396,6 +395,3 @@ to prevent bad custom code to pass unnoticed. (...) // Start of ``MODULENAME_module_wrapper.cpp`` - - -.. _`inject-code`: http://www.pyside.org/docs/apiextractor/typesystem_manipulating_objects.html#inject-code diff --git a/sources/shiboken2/doc/conf.py.in b/sources/shiboken2/doc/conf.py.in index 5dc7b868d..57c2f94b9 100644 --- a/sources/shiboken2/doc/conf.py.in +++ b/sources/shiboken2/doc/conf.py.in @@ -22,7 +22,8 @@ import sys, os # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.ifconfig', 'sphinx.ext.coverage'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.ifconfig', +'sphinx.ext.coverage', 'sphinx.ext.intersphinx'] rst_epilog = """ .. |project| replace:: Shiboken @@ -158,3 +159,4 @@ html_show_sourcelink = False # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = '' +intersphinx_mapping = {'apiextractor': ('@CMAKE_BINARY_DIR@/ApiExtractor/doc/html','@CMAKE_BINARY_DIR@/ApiExtractor/doc/html/objects.inv')} diff --git a/sources/shiboken2/doc/faq.rst b/sources/shiboken2/doc/faq.rst index 4b2bf9eea..3653b8654 100644 --- a/sources/shiboken2/doc/faq.rst +++ b/sources/shiboken2/doc/faq.rst @@ -11,7 +11,7 @@ General What is Shiboken? ----------------- -Shiboken is a `GeneratorRunner`_ that outputs C++ code for CPython +Shiboken is a Generator Runner plugin that outputs C++ code for CPython extensions. The first version of PySide had source code based on Boost templates. It was easier to produce code but a paradigm change was needed, as the next @@ -45,7 +45,8 @@ What do I have to do to create my bindings? ------------------------------------------- Most of the work is already done by the API Extractor. -The developer creates a `typesystem`_ file with any customization wanted in +The developer creates a :std:doc:`typesystem ` +file with any customization wanted in the generated code, like removing classes or changing method signatures. The generator will output the *.h* and *.cpp* files with the CPython code that will wrap the target library for python. @@ -68,5 +69,3 @@ That's how we call customized code that will be *injected* into the generated at specific locations. They are specified inside the typesystem. .. _`Mailing list`: http://lists.qt-project.org/mailman/listinfo/pyside -.. _`GeneratorRunner`: http://www.pyside.org/home-binding/binding-generator -.. _`typesystem`: http://www.pyside.org/docs/apiextractor/typesystem.html diff --git a/sources/shiboken2/doc/typeconverters.rst b/sources/shiboken2/doc/typeconverters.rst index ea32c7f0c..6b29bdb4f 100644 --- a/sources/shiboken2/doc/typeconverters.rst +++ b/sources/shiboken2/doc/typeconverters.rst @@ -58,22 +58,22 @@ the "" tag must be used. The details will be given later, but the gist of it are the tags -``_, which has only one conversion from C++ to Python, and -``_, that may define the conversion of multiple Python types +:ref:`native-to-target `, which has only one conversion from C++ to Python, and +:ref:`native-to-native `, that may define the conversion of multiple Python types to C++'s "Complex" type. .. image:: images/converter.png :height: 240px :align: center -|project| expects the code for ``_, to directly return the +|project| expects the code for :ref:`native-to-target `, to directly return the Python result of the conversion, and the added conversions inside the -``_ must attribute the Python to C++ conversion result to +:ref:`target-to-native ` must attribute the Python to C++ conversion result to the :ref:`%out ` variable. Expanding on the last example, if the binding developer want a Python 2-tuple of numbers to be accepted by wrapped C++ functions with "Complex" arguments, -an ``_ tag and a custom check must be added. +an :ref:`add-conversion ` tag and a custom check must be added. Here's how to do it: .. code-block:: xml @@ -130,14 +130,12 @@ Here's how to do it: Container Conversions ===================== -Converters for ``_ are pretty much the same as for other type, +Converters for :ref:`container-type ` are pretty much the same as for other type, except that they make use of the type system variables :ref:`%INTYPE_# ` and :ref:`%OUTTYPE_# `. |project| combines the conversion code for containers with the conversion defined (or automatically generated) for the containers. -.. _`container-type`: http://www.pyside.org/docs/apiextractor/typesystem_specifying_types.html#container-type - .. code-block:: xml @@ -288,10 +286,6 @@ In this case, the parts of the implementation that will be used in the new conversion-rule are the ones in the two last method ``static inline PyObject* toPython(const Complex& cpx)`` and ``static inline Complex toCpp(PyObject* pyobj)``. The ``isConvertible`` method -is gone, and the ``checkType`` is now an attribute of the ``_ +is gone, and the ``checkType`` is now an attribute of the :ref:`add-conversion ` tag. Refer back to the first example in this page and you will be able to correlate the above template with the new scheme of conversion rule definition. - -.. _``: http://www.pyside.org/docs/apiextractor/typesystem_conversionrule.html#native-to-target -.. _``: http://www.pyside.org/docs/apiextractor/typesystem_conversionrule.html#target-to-native -.. _``: http://www.pyside.org/docs/apiextractor/typesystem_conversionrule.html#add-conversion diff --git a/sources/shiboken2/doc/typesystemvariables.rst b/sources/shiboken2/doc/typesystemvariables.rst index 9de2b02f5..e595f7ddc 100644 --- a/sources/shiboken2/doc/typesystemvariables.rst +++ b/sources/shiboken2/doc/typesystemvariables.rst @@ -3,7 +3,7 @@ Type System Variables ********************* User written code can be placed in arbitrary places using the -:doc:`inject-code ` tag. To ease the binding developer +:ref:`inject-code ` tag. To ease the binding developer work, the injected code can make use of special variables that will be replaced by the correct values. This also shields the developer from some |project| implementation specifics. @@ -59,7 +59,7 @@ Variables system), this value will be inserted in the argument list. If you want to remove the argument so completely that it doesn't appear in any form on the ``%ARGUMENT_NAMES`` replacement, don't forget to remove also its default value - with the ``_ type system tag. + with the :ref:`remove-default-expression ` type system tag. Take the following method and related type system description as an example: @@ -332,6 +332,3 @@ that expects a Python sequence instead. delete[] argv; - - -.. _``: http://www.pyside.org/docs/apiextractor/typesystem_arguments.html#remove-default-expression -- cgit v1.2.3 From 7803a22eee4ff86741fd4c12f6d4cf859961c273 Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Wed, 25 Apr 2018 14:38:10 +0200 Subject: Add missing flag for QChartView Task-number: PYSIDE-645 Change-Id: I4f18e1ede50a68767772eb02e55ff4e1fd718636 Reviewed-by: Alexandru Croitor --- sources/pyside2/PySide2/QtCharts/typesystem_charts.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml b/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml index 5932365a7..d913ded16 100644 --- a/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml +++ b/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml @@ -80,7 +80,7 @@ - + -- cgit v1.2.3 From 4035c45e58896329e5b8b72913ff7f30d387c3dc Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 27 Apr 2018 09:11:48 +0200 Subject: shiboken: Accept relative file name as C++ header Relative file names cause Clang not to find them since they are included by a temporary header file. Check and convert to an absolute path via QFileInfo. Change-Id: Ie87b4d2a6fcf5d98062a8a40a3eccbbb9513c62e Reviewed-by: Cristian Maureira-Fredes Reviewed-by: Alexandru Croitor --- sources/shiboken2/generator/main.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sources/shiboken2/generator/main.cpp b/sources/shiboken2/generator/main.cpp index b787d9f7e..1447baf2e 100644 --- a/sources/shiboken2/generator/main.cpp +++ b/sources/shiboken2/generator/main.cpp @@ -544,6 +544,12 @@ int main(int argc, char *argv[]) } QString cppFileName = argsHandler.removeArg(QLatin1String("arg-1")); + const QFileInfo cppFileNameFi(cppFileName); + if (!cppFileNameFi.isFile() && !cppFileNameFi.isSymLink()) { + errorPrint(QLatin1Char('"') + cppFileName + QLatin1String("\" does not exist.")); + return EXIT_FAILURE; + } + QString typeSystemFileName = argsHandler.removeArg(QLatin1String("arg-2")); QString messagePrefix = QFileInfo(typeSystemFileName).baseName(); if (messagePrefix.startsWith(QLatin1String("typesystem_"))) @@ -579,7 +585,7 @@ int main(int argc, char *argv[]) return EXIT_FAILURE; } - extractor.setCppFileName(cppFileName); + extractor.setCppFileName(cppFileNameFi.absoluteFilePath()); extractor.setTypeSystem(typeSystemFileName); if (!extractor.run()) { errorPrint(QLatin1String("Error running ApiExtractor.")); -- cgit v1.2.3 From 76f1ae210a14d57174c429e50df519dfe6d350d0 Mon Sep 17 00:00:00 2001 From: Venugopal Shivashankar Date: Wed, 14 Mar 2018 14:29:19 +0100 Subject: Doc: Add top-level index and getting started information - Updated the copyright text in the config file - Added the copyright to the footer in the template Change-Id: Iaadc293af524abea41873d04206516caec189c53 Reviewed-by: Paul Wicking Reviewed-by: Friedemann Kleint --- sources/pyside2/doc/_templates/layout.html | 1 + sources/pyside2/doc/conf.py.in | 9 ++- sources/pyside2/doc/contents.rst | 5 +- sources/pyside2/doc/gettingstarted.rst | 86 +++++++++++++++++++++++++++ sources/pyside2/doc/index.rst | 94 ++++++++++++++++++++++++++++++ sources/pyside2/doc/modules.rst | 19 ++++-- sources/pyside2/doc/pysideapi2.rst | 5 +- sources/pyside2/doc/pysideversion.rst | 14 ++--- 8 files changed, 210 insertions(+), 23 deletions(-) create mode 100644 sources/pyside2/doc/gettingstarted.rst create mode 100644 sources/pyside2/doc/index.rst diff --git a/sources/pyside2/doc/_templates/layout.html b/sources/pyside2/doc/_templates/layout.html index d2eb1d08d..561bed8ee 100644 --- a/sources/pyside2/doc/_templates/layout.html +++ b/sources/pyside2/doc/_templates/layout.html @@ -28,6 +28,7 @@ {%- endblock %} diff --git a/sources/pyside2/doc/conf.py.in b/sources/pyside2/doc/conf.py.in index c0ae45fd3..21ce43ad2 100644 --- a/sources/pyside2/doc/conf.py.in +++ b/sources/pyside2/doc/conf.py.in @@ -39,12 +39,11 @@ source_suffix = '.rst' source_encoding = 'utf-8' # The master toctree document. -master_doc = 'contents' +master_doc = 'index' # General information about the project. project = u'PySide' -copyright = u'2009-2011, Nokia Corporation' - +copyright = u'© 2018 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. @@ -109,7 +108,7 @@ html_theme_path = ['@CMAKE_CURRENT_SOURCE_DIR@/_themes'] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +html_title = u'PySide2 documentation' # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None @@ -137,7 +136,7 @@ html_theme_path = ['@CMAKE_CURRENT_SOURCE_DIR@/_themes'] # Additional templates that should be rendered to pages, maps page names to # template names. -html_additional_pages = { 'index' : 'index.html'} +#html_additional_pages = { 'index' : 'index.html'} # If false, no module index is generated. #html_use_modindex = True diff --git a/sources/pyside2/doc/contents.rst b/sources/pyside2/doc/contents.rst index c2ea806a2..9ba3663f8 100644 --- a/sources/pyside2/doc/contents.rst +++ b/sources/pyside2/doc/contents.rst @@ -1,9 +1,10 @@ -PySide Documentation contents -***************************** +Qt for Python Documentation +*************************** .. toctree:: :maxdepth: 2 + gettingstarted.rst modules.rst Tutorials diff --git a/sources/pyside2/doc/gettingstarted.rst b/sources/pyside2/doc/gettingstarted.rst new file mode 100644 index 000000000..bb58c1734 --- /dev/null +++ b/sources/pyside2/doc/gettingstarted.rst @@ -0,0 +1,86 @@ +=============== +Getting Started +=============== + +To get started with |project|, install the following prerequisites: + +* Python v3.5 or later +* libclang v3.9 or later +* Optional: a virtual environment, such as `venv `_ or `virtualenv `_ + +With these installed, you are ready to install the |project| +packages using the pip wheel. Run the following command from your command +prompt to install:: + + python -m pip install --index-url=http://download.qt.io/snapshots/ci/pyside/5.9/latest pyside2 --trusted-host download.qt.io + +Now that you have |project| installed, you can test your setup by running the following Python +constructs to print version information: + +.. include:: pysideversion.rst + :start-line: 5 + :end-line: 32 + +Your |project| setup is ready, so try exploring it further by developing a simple application +that prints "Hello World" in several languages. The following instructions will +guide you through the development process: + +* Create a new file named :code:`hello_world.py`, and add the following imports to it. + + :: + + import sys + import random + from PySide2 import QtCore, QtWidgets, QtGui + + These imports should provide access to the APIs specific to those Qt modules. + +* Define a class named :code:`MyWidget`, which extends QWidget and includes a QPushButton and QLabel. + + :: + + class MyWidget(QtWidgets.QWidget): + def __init__(self): + super().__init__() + + self.hello = ["Hallo Welt", "你好,世界", "Hei maailma",\ + "Hola Mundo", "Привет мир"] + + self.button = QtWidgets.QPushButton("Click me!") + self.text = QtWidgets.QLabel("Hello World") + self.text.setAlignment(QtCore.Qt.AlignCenter) + + self.text.setFont(QtGui.QFont("Titillium", 30)) + self.button.setFont(QtGui.QFont("Titillium", 20)) + + self.layout = QtWidgets.QVBoxLayout() + self.layout.addWidget(self.text) + self.layout.addWidget(self.button) + self.setLayout(self.layout) + + self.button.clicked.connect(self.magic) + + + def magic(self): + self.text.setText(random.choice(self.hello)) + + The MyWidget class has the :code:`magic` member function that + randomly chooses an item from the list :code:`hello`. This function + is called when you click the button. + +* Now, add a main function where you instantiate :code:`MyWidget` and + :code:`show` it. + + :: + + if __name__ == "__main__": + app = QtWidgets.QApplication([]) + + widget = MyWidget() + widget.resize(800, 600) + widget.show() + + sys.exit(app.exec_()) + +Your example is ready to be run. Try clicking the button at the bottom +and see which greeting you get. diff --git a/sources/pyside2/doc/index.rst b/sources/pyside2/doc/index.rst new file mode 100644 index 000000000..47437d986 --- /dev/null +++ b/sources/pyside2/doc/index.rst @@ -0,0 +1,94 @@ +|project| +************* + +|project| enables the use of Qt 5 APIs in Python applications. It lets Python +developers utilize the full power of Qt. The following Qt5 modules are supported: + +Qt Modules +=========== + +.. list-table:: + :widths: 150, 150 + :align: left + + * - `Qt Core `_ + Provides core non-GUI functionality. + - `Qt 3D Animation `_ + Provides basic elements required to animate 3D objects. + * - `Qt Gui `_ + Extends QtCore with GUI functionality. + - `Qt Help `_ + Provides classes for integrating online documentation in applications. + * - `Qt Network `_ + Offers classes that lets you to write TCP/IP clients and servers. + - `Qt OpenGL `_ + Offers classes that make it easy to use OpenGL in Qt applications. + * - `Qt PrintSupport `_ + Offers classes that make it easy to use OpenGL in Qt applications. + - `Qt Qml `_ + Python API for Qt QML. + * - `Qt Charts `_ + Provides a set of easy to use chart components. + - `Qt Quick `_ + Provides classes for embedding Qt Quick in Qt applications. + * - `Qt DataVisualization `_ + Provides a way to visualize data in 3D as bar, scatter, and surface graphs. + - `Qt QuickWidgets `_ + Provides the QQuickWidget class for embedding Qt Quick in widget-based applications. + * - `Qt TextToSpeech `_ + Provides API to access text-to-speech engines. + - `Qt Sql `_ + Helps you provide seamless database integration to your Qt applications. + * - `Qt Multimedia `_ + Provides low-level multimedia functionality. + - `Qt MultimediaWidgets `_ + Provides the widget-based multimedia API. + * - `Qt MacExtras `_ + Provides classes and functions specific to + macOS and iOS operating systems. + - `Qt Svg `_ + Provides classes for displaying the contents of SVG files. + * - `Qt UiTools `_ + Provides classes to handle forms created with Qt Designer. + - `Qt Test `_ + Provides classes for unit testing Qt applications and libraries. + * - `Qt Concurrent `_ + Provides high-level APIs that make it possible + to write multi-threaded programs without using low-level threading + primitives such as mutexes, read-write locks, wait conditions, or semaphores. + - `Qt AxContainer `_ + Provides QAxObject and QAxWidget which act as + containers for COM objects and ActiveX controls. + * - `Qt WebChannel `_ + Enables peer-to-peer communication between a server and a client + (HTML/JavaScript or QML application). + - `Qt WebSockets `_ + Provides interfaces that enable Qt applications + to act as a server that can process WebSocket requests, or a client that + can consume data received from the server, or both. + * - `Qt Widgets `_ + Extends Qt GUI with C++ widget functionality. + - `Qt WinExtras `_ + Provides classes and functions for using some Windows APIs in a Qt way. + * - `Qt X11Extras `_ + Provides information about the X display configuration. + - `Qt Xml `_ + Provides a stream reader and writer for XML documents. + * - `Qt XmlPatterns `_ + Provides support for XPath, XQuery, XSLTi, and XML Schema validation. + - `Qt 3D Core `_ + Contains functionality to support near-realtime simulation systems. + * - `Qt 3D Extras `_ + Provides a set of prebuilt elements to help you get started with Qt 3D. + - `Qt 3D Input `_ + Provides classes for handling user input in applications using Qt 3D. + * - `Qt 3D Logic `_ + Enables synchronizing frames with the Qt 3D backend. + - `Qt 3D Render `_ + Contains functionality to support 2D and 3D rendering using Qt 3D. + + +.. toctree:: + :maxdepth: 2 + + contents.rst diff --git a/sources/pyside2/doc/modules.rst b/sources/pyside2/doc/modules.rst index 3bf0f2abb..0ec1fb77d 100644 --- a/sources/pyside2/doc/modules.rst +++ b/sources/pyside2/doc/modules.rst @@ -1,21 +1,28 @@ -PySide modules -************** +|project| modules +******************* -Qt is splitted in several modules. +Qt is split into several modules. .. toctree:: :maxdepth: 1 + PySide2/Qt3DAnimation/index.rst + PySide2/Qt3DCore/index.rst + PySide2/Qt3DExtras/index.rst + PySide2/Qt3DInput/index.rst + PySide2/Qt3DLogic/index.rst + PySide2/Qt3DRender/index.rst PySide2/QtCore/index.rst PySide2/QtGui/index.rst PySide2/QtHelp/index.rst PySide2/QtMultimedia/index.rst PySide2/QtNetwork/index.rst PySide2/QtOpenGL/index.rst - PySide2/QtScript/index.rst - PySide2/QtScriptTools/index.rst + PySide2/QtPrintSupport/index.rst + PySide2/QtQml/index.rst + PySide2/QtQuick/index.rst PySide2/QtSql/index.rst PySide2/QtSvg/index.rst PySide2/QtUiTools/index.rst PySide2/QtXml/index.rst - PySide2/QtWebKit/index.rst + PySide2/QtXmlPatterns/index.rst diff --git a/sources/pyside2/doc/pysideapi2.rst b/sources/pyside2/doc/pysideapi2.rst index e86be05c9..5769ca83b 100644 --- a/sources/pyside2/doc/pysideapi2.rst +++ b/sources/pyside2/doc/pysideapi2.rst @@ -1,8 +1,7 @@ - .. _pysideapi2: -PySide API 2 -************ +|project| API +*************** Since the beginning one of the PySide goals was to be API compatible with PyQt4, but with some (documented) exceptions. For example, PySide will not export to diff --git a/sources/pyside2/doc/pysideversion.rst b/sources/pyside2/doc/pysideversion.rst index 5ad308c1e..24afba12d 100644 --- a/sources/pyside2/doc/pysideversion.rst +++ b/sources/pyside2/doc/pysideversion.rst @@ -1,9 +1,10 @@ -Getting PySide and Qt version -***************************** +Printing |project| and Qt version +********************************* -PySide exports their version numbers among the version of Qt used to compile PySide in a pythonic way, you can check it using the variables: +|project| exports its version numbers in a pythonic way. You can print these +numbers using the following python constructs: -:: + :: import PySide2.QtCore @@ -24,8 +25,7 @@ PySide exports their version numbers among the version of Qt used to compile PyS print(PySide2.QtCore.__version_info__) -Note that the Qt version used to compile PySide may differ from the version used to run PySide, to get the current running Qt version you can do: - -:: +Note that the Qt version used to compile |project| may differ from the version used to +run |project|. To print the current running Qt version number, you can use:: print(PySide2.QtCore.qVersion()) -- cgit v1.2.3 From cf608f65ebc0866f74d0c9aa566dc0fc2a2f4a49 Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Thu, 26 Apr 2018 11:13:16 +0200 Subject: Remove currentThreadId binding Since this method should not be used in any application code, we should remove it from PySide2. Removing also the test registry. https://doc.qt.io/qt-5/qthread.html#currentThreadId Task-number: PYSIDE-275 Change-Id: I152b36ccfa4342d4d6b916d8b2fe228e4fe4a1c4 Reviewed-by: Friedemann Kleint --- sources/pyside2/PySide2/QtCore/typesystem_core_common.xml | 1 + sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py | 1 - sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py | 1 - sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py | 1 - sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py | 1 - sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py | 1 - sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py | 1 - 7 files changed, 1 insertion(+), 6 deletions(-) diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml index 6db3691a6..8c50413cb 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml @@ -2015,6 +2015,7 @@ + diff --git a/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py index 3e18f9efc..3bdced8eb 100644 --- a/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py @@ -2235,7 +2235,6 @@ if "PySide2.QtCore" in sys.modules: # class PySide2.QtCore.QThread: "QThread.__init__": ('PySide2.QtCore.QObject',), "QThread.currentThread": (), - "QThread.currentThreadId": (), "QThread.event": ('PySide2.QtCore.QEvent',), "QThread.eventDispatcher": (), "QThread.exec_": (), diff --git a/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py index bad44da92..553e3e317 100644 --- a/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py @@ -2321,7 +2321,6 @@ if "PySide2.QtCore" in sys.modules: # class PySide2.QtCore.QThread: "QThread.__init__": ('PySide2.QtCore.QObject',), "QThread.currentThread": (), - "QThread.currentThreadId": (), "QThread.event": ('PySide2.QtCore.QEvent',), "QThread.eventDispatcher": (), "QThread.exec_": (), diff --git a/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py index 4edcc2187..65b07b569 100644 --- a/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py @@ -2234,7 +2234,6 @@ if "PySide2.QtCore" in sys.modules: # class PySide2.QtCore.QThread: "QThread.__init__": ('PySide2.QtCore.QObject',), "QThread.currentThread": (), - "QThread.currentThreadId": (), "QThread.event": ('PySide2.QtCore.QEvent',), "QThread.eventDispatcher": (), "QThread.exec_": (), diff --git a/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py index 59d696884..277277d75 100644 --- a/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py @@ -2320,7 +2320,6 @@ if "PySide2.QtCore" in sys.modules: # class PySide2.QtCore.QThread: "QThread.__init__": ('PySide2.QtCore.QObject',), "QThread.currentThread": (), - "QThread.currentThreadId": (), "QThread.event": ('PySide2.QtCore.QEvent',), "QThread.eventDispatcher": (), "QThread.exec_": (), diff --git a/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py index 7e8cccaa3..27dcd61a1 100644 --- a/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py @@ -2239,7 +2239,6 @@ if "PySide2.QtCore" in sys.modules: # class PySide2.QtCore.QThread: "QThread.__init__": ('PySide2.QtCore.QObject',), "QThread.currentThread": (), - "QThread.currentThreadId": (), "QThread.event": ('PySide2.QtCore.QEvent',), "QThread.eventDispatcher": (), "QThread.exec_": (), diff --git a/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py index 8d7c8a7e0..9378fe433 100644 --- a/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py @@ -2325,7 +2325,6 @@ if "PySide2.QtCore" in sys.modules: # class PySide2.QtCore.QThread: "QThread.__init__": ('PySide2.QtCore.QObject',), "QThread.currentThread": (), - "QThread.currentThreadId": (), "QThread.event": ('PySide2.QtCore.QEvent',), "QThread.eventDispatcher": (), "QThread.exec_": (), -- cgit v1.2.3 From 8f7d78ce992943f4bac0c70ace96a52a8dd72ecf Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Wed, 11 Apr 2018 14:18:50 +0200 Subject: Rename PySide references to Qt for Python When referring to the project one should use "Qt for Python" and for the module "PySide2" Change-Id: I36497df245c9f6dd60d6e160e2fc805e48cefcae Reviewed-by: Qt CI Bot Reviewed-by: Alexandru Croitor --- sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml | 2 +- sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml | 2 +- sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml | 2 +- sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml | 2 +- sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml | 2 +- sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml | 2 +- sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml | 2 +- sources/pyside2/PySide2/QtCharts/typesystem_charts.xml | 2 +- sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml | 2 +- sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h | 2 +- sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core.xml.in | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_common.xml | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_win.xml | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml | 2 +- .../PySide2/QtDataVisualization/typesystem_datavisualization.xml | 2 +- sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml | 2 +- sources/pyside2/PySide2/QtHelp/typesystem_help.xml | 2 +- sources/pyside2/PySide2/QtLocation/typesystem_location.xml | 2 +- sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml | 2 +- sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml | 2 +- sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml | 2 +- .../PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml | 2 +- .../PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml | 2 +- sources/pyside2/PySide2/QtNetwork/typesystem_network.xml | 2 +- sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml | 2 +- sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml | 2 +- sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml | 2 +- sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp | 2 +- sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h | 2 +- sources/pyside2/PySide2/QtQml/typesystem_qml.xml | 2 +- sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp | 2 +- sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h | 2 +- sources/pyside2/PySide2/QtQuick/typesystem_quick.xml | 2 +- sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml | 2 +- sources/pyside2/PySide2/QtScript/typesystem_script.xml | 2 +- sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml | 2 +- sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml | 2 +- sources/pyside2/PySide2/QtSql/typesystem_sql.xml | 2 +- sources/pyside2/PySide2/QtSvg/typesystem_svg.xml | 2 +- sources/pyside2/PySide2/QtTest/typesystem_test.xml | 2 +- sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml | 2 +- sources/pyside2/PySide2/QtUiTools/glue/plugins.h | 2 +- sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp | 2 +- sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml | 2 +- sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml | 2 +- sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml | 2 +- .../pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml | 2 +- sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml | 2 +- sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml | 2 +- sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml | 2 +- sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml | 2 +- sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml | 2 +- sources/pyside2/PySide2/QtXml/typesystem_xml.xml | 2 +- sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml | 2 +- sources/pyside2/PySide2/global.h.in | 2 +- sources/pyside2/PySide2/licensecomment.txt | 2 +- sources/pyside2/PySide2/pysideqtesttouch.h | 2 +- sources/pyside2/PySide2/pysidewtypes.h | 2 +- sources/pyside2/PySide2/qpytextobject.cpp | 2 +- sources/pyside2/PySide2/qpytextobject.h | 2 +- sources/pyside2/PySide2/support/__init__.py | 2 +- sources/pyside2/PySide2/support/signature/__init__.py | 2 +- sources/pyside2/PySide2/support/signature/backport_inspect.py | 2 +- sources/pyside2/PySide2/support/signature/fix-complaints.py | 2 +- sources/pyside2/PySide2/support/signature/inspect.py | 2 +- sources/pyside2/PySide2/support/signature/loader.py | 2 +- sources/pyside2/PySide2/support/signature/mapping.py | 2 +- sources/pyside2/PySide2/support/signature/parser.py | 2 +- sources/pyside2/PySide2/support/signature/typing27.py | 2 +- sources/pyside2/PySide2/support/signature/typing36.py | 2 +- sources/pyside2/PySide2/typesystem_templates.xml | 2 +- .../doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h | 2 +- .../doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc | 2 +- .../doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp | 2 +- .../doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp | 2 +- .../doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp | 2 +- .../doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp | 2 +- .../src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp | 2 +- .../src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp | 2 +- .../doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp | 2 +- .../doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp | 2 +- .../doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp | 2 +- .../doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp | 2 +- .../doc/src/snippets/code/src_gui_accessible_qaccessible.cpp | 2 +- .../doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp | 2 +- .../doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp | 2 +- .../src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp | 2 +- .../doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp | 2 +- .../doc/src/snippets/code/src_gui_painting_qpainterpath.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp | 2 +- .../doc/src/snippets/code/src_gui_painting_qregion_unix.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp | 2 +- .../doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp | 2 +- .../doc/src/snippets/code/src_gui_util_qdesktopservices.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp | 2 +- .../doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp | 2 +- .../doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp | 2 +- .../doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp | 2 +- .../doc/src/snippets/code/src_network_kernel_qhostaddress.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp | 2 +- .../doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qabstractsocket.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qudpsocket.cpp | 2 +- .../doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp | 2 +- .../doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp | 2 +- .../doc/src/snippets/code/src_script_qscriptengineagent.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp | 2 +- .../doc/src/snippets/code/src_script_qscriptvalueiterator.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp | 2 +- .../doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp | 2 +- .../src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp | 2 +- .../code/tools_designer_src_lib_extension_default_extensionfactory.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_extension_extension.cpp | 2 +- .../code/tools_designer_src_lib_extension_qextensionmanager.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp | 2 +- .../code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp | 2 +- .../code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp | 2 +- .../code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp | 2 +- .../snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp | 2 +- .../snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp | 2 +- .../doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp | 2 +- .../src/snippets/code/tools_patternist_qapplicationargumentparser.cpp | 2 +- .../snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp | 2 +- .../snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp | 2 +- .../snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp | 2 +- .../src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp | 2 +- .../doc/src/snippets/designer/autoconnection/imagedialog.cpp | 2 +- .../codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h | 2 +- .../doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp | 2 +- .../doc/src/snippets/designer/multipleinheritance/imagedialog.cpp | 2 +- .../doc/src/snippets/designer/multipleinheritance/imagedialog.h | 2 +- .../codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp | 2 +- .../doc/src/snippets/designer/noautoconnection/imagedialog.cpp | 2 +- .../doc/src/snippets/designer/noautoconnection/imagedialog.h | 2 +- .../codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp | 2 +- .../doc/src/snippets/designer/singleinheritance/imagedialog.cpp | 2 +- .../doc/src/snippets/designer/singleinheritance/imagedialog.h | 2 +- .../codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h | 2 +- .../doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp | 2 +- .../codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp | 2 +- .../codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h | 2 +- .../doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/object.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h | 2 +- .../doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h | 2 +- .../doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp | 2 +- .../codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h | 2 +- .../doc/src/snippets/qsortfilterproxymodel-details/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp | 2 +- .../codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h | 2 +- .../doc/src/snippets/qtreewidgetitemiterator-using/main.cpp | 2 +- .../doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp | 2 +- .../doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp | 2 +- .../codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp | 2 +- .../doc/src/snippets/qtscript/registeringobjects/myobject.cpp | 2 +- .../doc/src/snippets/qtscript/registeringobjects/myobject.h | 2 +- .../codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h | 2 +- .../doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/window.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/separations/screenwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h | 2 +- .../codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h | 2 +- .../doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp | 2 +- .../doc/src/snippets/textdocument-selections/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/window.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp | 2 +- .../codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp | 2 +- .../doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp | 2 +- .../codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp | 2 +- .../doc/src/snippets/widgets-tutorial/windowlayout/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h | 2 +- sources/pyside2/doc/codesnippets/examples/dbus/example-client.py | 2 +- sources/pyside2/doc/codesnippets/examples/dbus/example-server.py | 2 +- .../codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp | 2 +- .../codesnippets/examples/declarative/cppextensions/plugins/plugins.qml | 2 +- .../pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp | 2 +- .../doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp | 2 +- .../pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp | 2 +- .../doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp | 2 +- .../doc/codesnippets/examples/imageprovider/imageprovider-example.qml | 2 +- .../pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp | 2 +- .../examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp | 2 +- .../doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp | 2 +- .../doc/codesnippets/examples/mainwindows/application/mainwindow.cpp | 2 +- .../doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp | 2 +- sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp | 2 +- sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml | 2 +- .../codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp | 2 +- .../doc/codesnippets/examples/richtext/textobject/svgtextobject.h | 2 +- sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp | 2 +- .../pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp | 2 +- sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp | 2 +- sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp | 2 +- .../pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp | 2 +- .../doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp | 2 +- .../doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp | 2 +- sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp | 2 +- sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp | 2 +- sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp | 2 +- sources/pyside2/doc/pyhtml2devhelp.py | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml | 2 +- .../qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml | 2 +- .../tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml | 2 +- .../tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml | 2 +- sources/pyside2/doc/typesystem_doc.xml.in | 2 +- sources/pyside2/libpyside/destroylistener.cpp | 2 +- sources/pyside2/libpyside/destroylistener.h | 2 +- sources/pyside2/libpyside/dynamicqmetaobject.cpp | 2 +- sources/pyside2/libpyside/dynamicqmetaobject.h | 2 +- sources/pyside2/libpyside/dynamicqmetaobject_p.h | 2 +- sources/pyside2/libpyside/globalreceiver.cpp | 2 +- sources/pyside2/libpyside/globalreceiver.h | 2 +- sources/pyside2/libpyside/globalreceiverv2.cpp | 2 +- sources/pyside2/libpyside/globalreceiverv2.h | 2 +- sources/pyside2/libpyside/pyside.cpp | 2 +- sources/pyside2/libpyside/pyside.h | 2 +- sources/pyside2/libpyside/pysideclassinfo.cpp | 2 +- sources/pyside2/libpyside/pysideclassinfo.h | 2 +- sources/pyside2/libpyside/pysideclassinfo_p.h | 2 +- sources/pyside2/libpyside/pysidemacros.h | 2 +- sources/pyside2/libpyside/pysidemetafunction.cpp | 2 +- sources/pyside2/libpyside/pysidemetafunction.h | 2 +- sources/pyside2/libpyside/pysidemetafunction_p.h | 2 +- sources/pyside2/libpyside/pysideproperty.cpp | 2 +- sources/pyside2/libpyside/pysideproperty.h | 2 +- sources/pyside2/libpyside/pysideproperty_p.h | 2 +- sources/pyside2/libpyside/pysideqflags.cpp | 2 +- sources/pyside2/libpyside/pysideqflags.h | 2 +- sources/pyside2/libpyside/pysidesignal.cpp | 2 +- sources/pyside2/libpyside/pysidesignal.h | 2 +- sources/pyside2/libpyside/pysidesignal_p.h | 2 +- sources/pyside2/libpyside/pysideslot.cpp | 2 +- sources/pyside2/libpyside/pysideslot_p.h | 2 +- sources/pyside2/libpyside/pysideweakref.cpp | 2 +- sources/pyside2/libpyside/pysideweakref.h | 2 +- sources/pyside2/libpyside/signalmanager.cpp.in | 2 +- sources/pyside2/libpyside/signalmanager.h | 2 +- sources/pyside2/plugins/customwidget.cpp | 2 +- sources/pyside2/plugins/customwidget.h | 2 +- sources/pyside2/plugins/customwidgets.cpp | 2 +- sources/pyside2/plugins/customwidgets.h | 2 +- sources/pyside2/pyside_version.py | 2 +- sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py | 2 +- sources/pyside2/tests/QtCharts/qcharts_test.py | 2 +- sources/pyside2/tests/QtCore/blocking_signals_test.py | 2 +- sources/pyside2/tests/QtCore/bug_1019.py | 2 +- sources/pyside2/tests/QtCore/bug_1031.py | 2 +- sources/pyside2/tests/QtCore/bug_1063.py | 2 +- sources/pyside2/tests/QtCore/bug_1069.py | 2 +- sources/pyside2/tests/QtCore/bug_278_test.py | 2 +- sources/pyside2/tests/QtCore/bug_332.py | 2 +- sources/pyside2/tests/QtCore/bug_408.py | 2 +- sources/pyside2/tests/QtCore/bug_428.py | 2 +- sources/pyside2/tests/QtCore/bug_462.py | 2 +- sources/pyside2/tests/QtCore/bug_505.py | 2 +- sources/pyside2/tests/QtCore/bug_515.py | 2 +- sources/pyside2/tests/QtCore/bug_606.py | 2 +- sources/pyside2/tests/QtCore/bug_656.py | 2 +- sources/pyside2/tests/QtCore/bug_686.py | 2 +- sources/pyside2/tests/QtCore/bug_699.py | 2 +- sources/pyside2/tests/QtCore/bug_706.py | 2 +- sources/pyside2/tests/QtCore/bug_820.py | 2 +- sources/pyside2/tests/QtCore/bug_826.py | 2 +- sources/pyside2/tests/QtCore/bug_829.py | 2 +- sources/pyside2/tests/QtCore/bug_835.py | 2 +- sources/pyside2/tests/QtCore/bug_920.py | 2 +- sources/pyside2/tests/QtCore/bug_927.py | 2 +- sources/pyside2/tests/QtCore/bug_931.py | 2 +- sources/pyside2/tests/QtCore/bug_938.py | 2 +- sources/pyside2/tests/QtCore/bug_953.py | 2 +- sources/pyside2/tests/QtCore/bug_987.py | 2 +- sources/pyside2/tests/QtCore/bug_994.py | 2 +- sources/pyside2/tests/QtCore/bug_PYSIDE-164.py | 2 +- sources/pyside2/tests/QtCore/bug_PYSIDE-42.py | 2 +- sources/pyside2/tests/QtCore/child_event_test.py | 2 +- sources/pyside2/tests/QtCore/classinfo_test.py | 2 +- sources/pyside2/tests/QtCore/deepcopy_test.py | 2 +- sources/pyside2/tests/QtCore/deletelater_test.py | 2 +- sources/pyside2/tests/QtCore/destroysignal_test.py | 2 +- sources/pyside2/tests/QtCore/duck_punching_test.py | 2 +- sources/pyside2/tests/QtCore/hash_test.py | 2 +- sources/pyside2/tests/QtCore/inherits_test.py | 2 +- sources/pyside2/tests/QtCore/max_signals.py | 2 +- sources/pyside2/tests/QtCore/missing_symbols_test.py | 2 +- sources/pyside2/tests/QtCore/mockclass_test.py | 2 +- sources/pyside2/tests/QtCore/python_conversion.py | 2 +- sources/pyside2/tests/QtCore/qabs_test.py | 2 +- sources/pyside2/tests/QtCore/qabstractitemmodel_test.py | 2 +- sources/pyside2/tests/QtCore/qabstracttransition_test.py | 2 +- sources/pyside2/tests/QtCore/qanimationgroup_test.py | 2 +- sources/pyside2/tests/QtCore/qbitarray_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_operator_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_test.py | 2 +- sources/pyside2/tests/QtCore/qcollator_test.py | 2 +- sources/pyside2/tests/QtCore/qcommandlineparser_test.py | 2 +- sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py | 2 +- sources/pyside2/tests/QtCore/qdatastream_test.py | 2 +- sources/pyside2/tests/QtCore/qdate_test.py | 2 +- sources/pyside2/tests/QtCore/qdatetime_test.py | 2 +- sources/pyside2/tests/QtCore/qeasingcurve_test.py | 2 +- sources/pyside2/tests/QtCore/qenum_test.py | 2 +- sources/pyside2/tests/QtCore/qevent_test.py | 2 +- sources/pyside2/tests/QtCore/qfile_test.py | 2 +- sources/pyside2/tests/QtCore/qfileinfo_test.py | 2 +- sources/pyside2/tests/QtCore/qfileread_test.py | 2 +- sources/pyside2/tests/QtCore/qflags_test.py | 2 +- sources/pyside2/tests/QtCore/qhandle_test.py | 2 +- sources/pyside2/tests/QtCore/qinstallmsghandler_test.py | 2 +- sources/pyside2/tests/QtCore/qlinef_test.py | 2 +- sources/pyside2/tests/QtCore/qlocale_test.py | 2 +- sources/pyside2/tests/QtCore/qmetaobject_test.py | 2 +- sources/pyside2/tests/QtCore/qmimedatabase_test.py | 2 +- sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_children_segfault_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_connect_notify_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_destructor.py | 2 +- sources/pyside2/tests/QtCore/qobject_event_filter_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_inherits_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_objectproperty_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_parent_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_property_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_protected_methods_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_timer_event_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py | 2 +- sources/pyside2/tests/QtCore/qpoint_test.py | 2 +- sources/pyside2/tests/QtCore/qprocess_test.py | 2 +- sources/pyside2/tests/QtCore/qproperty_decorator.py | 2 +- sources/pyside2/tests/QtCore/qrect_test.py | 2 +- sources/pyside2/tests/QtCore/qregexp_test.py | 2 +- sources/pyside2/tests/QtCore/qregularexpression_test.py | 2 +- sources/pyside2/tests/QtCore/qresource_test.py | 2 +- sources/pyside2/tests/QtCore/qsize_test.py | 2 +- sources/pyside2/tests/QtCore/qslot_object_test.py | 2 +- sources/pyside2/tests/QtCore/qsrand_test.py | 2 +- sources/pyside2/tests/QtCore/qstandardpaths_test.py | 2 +- sources/pyside2/tests/QtCore/qstate_test.py | 2 +- sources/pyside2/tests/QtCore/qstatemachine_test.py | 2 +- sources/pyside2/tests/QtCore/qstorageinfo_test.py | 2 +- sources/pyside2/tests/QtCore/qstring_test.py | 2 +- sources/pyside2/tests/QtCore/qsysinfo_test.py | 2 +- sources/pyside2/tests/QtCore/qtext_codec_test.py | 2 +- sources/pyside2/tests/QtCore/qtextstream_test.py | 2 +- sources/pyside2/tests/QtCore/qthread_prod_cons_test.py | 2 +- sources/pyside2/tests/QtCore/qthread_signal_test.py | 2 +- sources/pyside2/tests/QtCore/qthread_test.py | 2 +- sources/pyside2/tests/QtCore/qtimer_singleshot_test.py | 2 +- sources/pyside2/tests/QtCore/qtimer_timeout_test.py | 2 +- sources/pyside2/tests/QtCore/qtimezone_test.py | 2 +- sources/pyside2/tests/QtCore/qtnamespace_test.py | 2 +- sources/pyside2/tests/QtCore/qurl_test.py | 2 +- sources/pyside2/tests/QtCore/qurlquery_test.py | 2 +- sources/pyside2/tests/QtCore/quuid_test.py | 2 +- sources/pyside2/tests/QtCore/qversionnumber_test.py | 2 +- sources/pyside2/tests/QtCore/repr_test.py | 2 +- sources/pyside2/tests/QtCore/resources_mc.py | 2 +- sources/pyside2/tests/QtCore/setprop_on_ctor_test.py | 2 +- sources/pyside2/tests/QtCore/staticMetaObject_test.py | 2 +- sources/pyside2/tests/QtCore/static_method_test.py | 2 +- sources/pyside2/tests/QtCore/thread_signals_test.py | 2 +- sources/pyside2/tests/QtCore/tr_noop_test.py | 2 +- sources/pyside2/tests/QtCore/translation_test.py | 2 +- sources/pyside2/tests/QtCore/unaryoperator_test.py | 2 +- sources/pyside2/tests/QtCore/unicode_test.py | 2 +- sources/pyside2/tests/QtCore/versioninfo_test.py | 2 +- sources/pyside2/tests/QtDataVisualization/datavisualization_test.py | 2 +- sources/pyside2/tests/QtGui/bug_1091.py | 2 +- sources/pyside2/tests/QtGui/bug_300_test.py | 2 +- sources/pyside2/tests/QtGui/bug_367.py | 2 +- sources/pyside2/tests/QtGui/bug_480.py | 2 +- sources/pyside2/tests/QtGui/bug_606.py | 2 +- sources/pyside2/tests/QtGui/bug_617.py | 2 +- sources/pyside2/tests/QtGui/bug_652.py | 2 +- sources/pyside2/tests/QtGui/bug_660.py | 2 +- sources/pyside2/tests/QtGui/bug_716.py | 2 +- sources/pyside2/tests/QtGui/bug_740.py | 2 +- sources/pyside2/tests/QtGui/bug_743.py | 2 +- sources/pyside2/tests/QtGui/bug_991.py | 2 +- sources/pyside2/tests/QtGui/bug_PYSIDE-344.py | 2 +- sources/pyside2/tests/QtGui/bug_PYSIDE-41.py | 2 +- sources/pyside2/tests/QtGui/deepcopy_test.py | 2 +- sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py | 2 +- sources/pyside2/tests/QtGui/pyside_reload_test.py | 2 +- sources/pyside2/tests/QtGui/qcolor_reduce_test.py | 2 +- sources/pyside2/tests/QtGui/qcolor_test.py | 2 +- sources/pyside2/tests/QtGui/qcursor_test.py | 2 +- sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py | 2 +- sources/pyside2/tests/QtGui/qdesktopservices_test.py | 2 +- sources/pyside2/tests/QtGui/qfontmetrics_test.py | 2 +- sources/pyside2/tests/QtGui/qicon_test.py | 2 +- sources/pyside2/tests/QtGui/qitemselection_test.py | 2 +- sources/pyside2/tests/QtGui/qkeysequence_test.py | 2 +- sources/pyside2/tests/QtGui/qmatrix_test.py | 2 +- sources/pyside2/tests/QtGui/qopenglbuffer_test.py | 2 +- sources/pyside2/tests/QtGui/qopenglwindow_test.py | 2 +- sources/pyside2/tests/QtGui/qpainter_test.py | 2 +- sources/pyside2/tests/QtGui/qpdfwriter_test.py | 2 +- sources/pyside2/tests/QtGui/qpixelformat_test.py | 2 +- sources/pyside2/tests/QtGui/qpixmap_test.py | 2 +- sources/pyside2/tests/QtGui/qpixmapcache_test.py | 2 +- sources/pyside2/tests/QtGui/qpolygonf_test.py | 2 +- sources/pyside2/tests/QtGui/qradialgradient_test.py | 2 +- sources/pyside2/tests/QtGui/qrasterwindow_test.py | 2 +- sources/pyside2/tests/QtGui/qregion_test.py | 2 +- sources/pyside2/tests/QtGui/qstylehints_test.py | 2 +- sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py | 2 +- sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py | 2 +- sources/pyside2/tests/QtGui/qtextline_test.py | 2 +- sources/pyside2/tests/QtGui/qtransform_test.py | 2 +- sources/pyside2/tests/QtGui/repr_test.py | 2 +- sources/pyside2/tests/QtGui/timed_app_test.py | 2 +- sources/pyside2/tests/QtHelp/help_test.py | 2 +- sources/pyside2/tests/QtHelp/helpsearchengine_test.py | 2 +- sources/pyside2/tests/QtLocation/location.py | 2 +- sources/pyside2/tests/QtMultimedia/audio_test.py | 2 +- sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py | 2 +- sources/pyside2/tests/QtNetwork/accessManager_test.py | 2 +- sources/pyside2/tests/QtNetwork/bug_1084.py | 2 +- sources/pyside2/tests/QtNetwork/bug_446.py | 2 +- sources/pyside2/tests/QtNetwork/qipv6address_test.py | 2 +- sources/pyside2/tests/QtNetwork/tcpserver_test.py | 2 +- sources/pyside2/tests/QtNetwork/udpsocket_test.py | 2 +- sources/pyside2/tests/QtOpenGL/qglbuffer_test.py | 2 +- sources/pyside2/tests/QtOpenGL/qglwidget_test.py | 2 +- sources/pyside2/tests/QtPositioning/positioning.py | 2 +- sources/pyside2/tests/QtPrintSupport/bug_500.py | 2 +- sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py | 2 +- sources/pyside2/tests/QtQml/bug_1029.py | 2 +- sources/pyside2/tests/QtQml/bug_1029.qml | 2 +- sources/pyside2/tests/QtQml/bug_451.py | 2 +- sources/pyside2/tests/QtQml/bug_451.qml | 2 +- sources/pyside2/tests/QtQml/bug_456.py | 2 +- sources/pyside2/tests/QtQml/bug_456.qml | 2 +- sources/pyside2/tests/QtQml/bug_557.py | 2 +- sources/pyside2/tests/QtQml/bug_726.py | 2 +- sources/pyside2/tests/QtQml/bug_726.qml | 2 +- sources/pyside2/tests/QtQml/bug_814.py | 2 +- sources/pyside2/tests/QtQml/bug_814.qml | 2 +- sources/pyside2/tests/QtQml/bug_825.py | 2 +- sources/pyside2/tests/QtQml/bug_825.qml | 2 +- sources/pyside2/tests/QtQml/bug_847.py | 2 +- sources/pyside2/tests/QtQml/bug_847.qml | 2 +- sources/pyside2/tests/QtQml/bug_915.py | 2 +- sources/pyside2/tests/QtQml/bug_926.py | 2 +- sources/pyside2/tests/QtQml/bug_926.qml | 2 +- sources/pyside2/tests/QtQml/bug_951.py | 2 +- sources/pyside2/tests/QtQml/bug_951.qml | 2 +- sources/pyside2/tests/QtQml/bug_995.py | 2 +- sources/pyside2/tests/QtQml/bug_995.qml | 2 +- sources/pyside2/tests/QtQml/bug_997.py | 2 +- sources/pyside2/tests/QtQml/bug_997.qml | 2 +- sources/pyside2/tests/QtQml/connect_python_qml.py | 2 +- sources/pyside2/tests/QtQml/connect_python_qml.qml | 2 +- sources/pyside2/tests/QtQml/hw.qml | 2 +- sources/pyside2/tests/QtQml/javascript_exceptions.py | 2 +- sources/pyside2/tests/QtQml/javascript_exceptions.qml | 2 +- sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py | 2 +- sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml | 2 +- sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml | 2 +- sources/pyside2/tests/QtQml/qqmlnetwork_test.py | 2 +- sources/pyside2/tests/QtQml/qquickitem_grabToImage.py | 2 +- sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml | 2 +- sources/pyside2/tests/QtQml/qquickview_test.py | 2 +- sources/pyside2/tests/QtQml/registertype.py | 2 +- sources/pyside2/tests/QtQml/registertype.qml | 2 +- sources/pyside2/tests/QtQml/view.qml | 2 +- sources/pyside2/tests/QtQml/viewmodel.qml | 2 +- sources/pyside2/tests/QtScript/base_test.py | 2 +- sources/pyside2/tests/QtScript/bug_1022.py | 2 +- sources/pyside2/tests/QtScript/engine_test.py | 2 +- sources/pyside2/tests/QtScript/property_test.py | 2 +- sources/pyside2/tests/QtScript/qscriptvalue_test.py | 2 +- sources/pyside2/tests/QtScriptTools/debugger_test.py | 2 +- sources/pyside2/tests/QtSensors/sensors.py | 2 +- sources/pyside2/tests/QtSql/bug_1013.py | 2 +- sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py | 2 +- sources/pyside2/tests/QtSql/qvarianttype_test.py | 2 +- sources/pyside2/tests/QtSvg/qsvggenerator_test.py | 2 +- sources/pyside2/tests/QtSvg/qsvgrenderer_test.py | 2 +- sources/pyside2/tests/QtSvg/qsvgwidget_test.py | 2 +- sources/pyside2/tests/QtTest/click_test.py | 2 +- sources/pyside2/tests/QtTest/eventfilter_test.py | 2 +- sources/pyside2/tests/QtTest/qvalidator_test.py | 2 +- sources/pyside2/tests/QtTest/touchevent_test.py | 2 +- sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py | 2 +- sources/pyside2/tests/QtUiTools/bug_1060.py | 2 +- sources/pyside2/tests/QtUiTools/bug_360.py | 2 +- sources/pyside2/tests/QtUiTools/bug_376.py | 2 +- sources/pyside2/tests/QtUiTools/bug_392.py | 2 +- sources/pyside2/tests/QtUiTools/bug_426.py | 2 +- sources/pyside2/tests/QtUiTools/bug_552.py | 2 +- sources/pyside2/tests/QtUiTools/bug_797.py | 2 +- sources/pyside2/tests/QtUiTools/bug_909.py | 2 +- sources/pyside2/tests/QtUiTools/bug_913.py | 2 +- sources/pyside2/tests/QtUiTools/bug_958.py | 2 +- sources/pyside2/tests/QtUiTools/bug_965.py | 2 +- sources/pyside2/tests/QtUiTools/ui_test.py | 2 +- sources/pyside2/tests/QtUiTools/uiloader_test.py | 2 +- sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt | 2 +- sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py | 2 +- sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt | 2 +- sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py | 2 +- sources/pyside2/tests/QtWebKit/bug_448.py | 2 +- sources/pyside2/tests/QtWebKit/bug_694.py | 2 +- sources/pyside2/tests/QtWebKit/bug_803.py | 2 +- sources/pyside2/tests/QtWebKit/bug_899.py | 2 +- sources/pyside2/tests/QtWebKit/bug_959.py | 2 +- sources/pyside2/tests/QtWebKit/qml_plugin_test.py | 2 +- sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py | 2 +- sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py | 2 +- sources/pyside2/tests/QtWebKit/webframe_test.py | 2 +- sources/pyside2/tests/QtWebKit/webpage_test.py | 2 +- sources/pyside2/tests/QtWebKit/webview_test.py | 2 +- sources/pyside2/tests/QtWidgets/action_clear.py | 2 +- sources/pyside2/tests/QtWidgets/add_action_test.py | 2 +- sources/pyside2/tests/QtWidgets/api2_test.py | 2 +- sources/pyside2/tests/QtWidgets/application_test.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1002.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1006.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1048.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1077.py | 2 +- sources/pyside2/tests/QtWidgets/bug_172.py | 2 +- sources/pyside2/tests/QtWidgets/bug_243.py | 2 +- sources/pyside2/tests/QtWidgets/bug_307.py | 2 +- sources/pyside2/tests/QtWidgets/bug_324.py | 2 +- sources/pyside2/tests/QtWidgets/bug_338.py | 2 +- sources/pyside2/tests/QtWidgets/bug_363.py | 2 +- sources/pyside2/tests/QtWidgets/bug_389.py | 2 +- sources/pyside2/tests/QtWidgets/bug_400.py | 2 +- sources/pyside2/tests/QtWidgets/bug_416.py | 2 +- sources/pyside2/tests/QtWidgets/bug_429.py | 2 +- sources/pyside2/tests/QtWidgets/bug_430.py | 2 +- sources/pyside2/tests/QtWidgets/bug_433.py | 2 +- sources/pyside2/tests/QtWidgets/bug_467.py | 2 +- sources/pyside2/tests/QtWidgets/bug_493.py | 2 +- sources/pyside2/tests/QtWidgets/bug_512.py | 2 +- sources/pyside2/tests/QtWidgets/bug_525.py | 2 +- sources/pyside2/tests/QtWidgets/bug_546.py | 2 +- sources/pyside2/tests/QtWidgets/bug_547.py | 2 +- sources/pyside2/tests/QtWidgets/bug_549.py | 2 +- sources/pyside2/tests/QtWidgets/bug_569.py | 2 +- sources/pyside2/tests/QtWidgets/bug_575.py | 2 +- sources/pyside2/tests/QtWidgets/bug_576.py | 2 +- sources/pyside2/tests/QtWidgets/bug_585.py | 2 +- sources/pyside2/tests/QtWidgets/bug_589.py | 2 +- sources/pyside2/tests/QtWidgets/bug_632.py | 2 +- sources/pyside2/tests/QtWidgets/bug_635.py | 2 +- sources/pyside2/tests/QtWidgets/bug_640.py | 2 +- sources/pyside2/tests/QtWidgets/bug_653.py | 2 +- sources/pyside2/tests/QtWidgets/bug_662.py | 2 +- sources/pyside2/tests/QtWidgets/bug_667.py | 2 +- sources/pyside2/tests/QtWidgets/bug_668.py | 2 +- sources/pyside2/tests/QtWidgets/bug_674.py | 2 +- sources/pyside2/tests/QtWidgets/bug_675.py | 2 +- sources/pyside2/tests/QtWidgets/bug_688.py | 2 +- sources/pyside2/tests/QtWidgets/bug_693.py | 2 +- sources/pyside2/tests/QtWidgets/bug_696.py | 2 +- sources/pyside2/tests/QtWidgets/bug_711.py | 2 +- sources/pyside2/tests/QtWidgets/bug_714.py | 2 +- sources/pyside2/tests/QtWidgets/bug_722.py | 2 +- sources/pyside2/tests/QtWidgets/bug_728.py | 2 +- sources/pyside2/tests/QtWidgets/bug_736.py | 2 +- sources/pyside2/tests/QtWidgets/bug_750.py | 2 +- sources/pyside2/tests/QtWidgets/bug_778.py | 2 +- sources/pyside2/tests/QtWidgets/bug_785.py | 2 +- sources/pyside2/tests/QtWidgets/bug_793.py | 2 +- sources/pyside2/tests/QtWidgets/bug_811.py | 2 +- sources/pyside2/tests/QtWidgets/bug_834.py | 2 +- sources/pyside2/tests/QtWidgets/bug_836.py | 2 +- sources/pyside2/tests/QtWidgets/bug_844.py | 2 +- sources/pyside2/tests/QtWidgets/bug_854.py | 2 +- sources/pyside2/tests/QtWidgets/bug_860.py | 2 +- sources/pyside2/tests/QtWidgets/bug_862.py | 2 +- sources/pyside2/tests/QtWidgets/bug_871.py | 2 +- sources/pyside2/tests/QtWidgets/bug_879.py | 2 +- sources/pyside2/tests/QtWidgets/bug_919.py | 2 +- sources/pyside2/tests/QtWidgets/bug_921.py | 2 +- sources/pyside2/tests/QtWidgets/bug_941.py | 2 +- sources/pyside2/tests/QtWidgets/bug_964.py | 2 +- sources/pyside2/tests/QtWidgets/bug_967.py | 2 +- sources/pyside2/tests/QtWidgets/bug_972.py | 2 +- sources/pyside2/tests/QtWidgets/bug_979.py | 2 +- sources/pyside2/tests/QtWidgets/bug_988.py | 2 +- sources/pyside2/tests/QtWidgets/bug_998.py | 2 +- sources/pyside2/tests/QtWidgets/customproxywidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/event_filter_test.py | 2 +- sources/pyside2/tests/QtWidgets/grandparent_method_test.py | 2 +- sources/pyside2/tests/QtWidgets/hashabletype_test.py | 2 +- sources/pyside2/tests/QtWidgets/keep_reference_test.py | 2 +- sources/pyside2/tests/QtWidgets/missing_symbols_test.py | 2 +- sources/pyside2/tests/QtWidgets/paint_event_test.py | 2 +- sources/pyside2/tests/QtWidgets/parent_method_test.py | 2 +- sources/pyside2/tests/QtWidgets/python_properties_test.py | 2 +- sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qaction_test.py | 2 +- sources/pyside2/tests/QtWidgets/qapp_issue_585.py | 2 +- sources/pyside2/tests/QtWidgets/qapp_test.py | 2 +- sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py | 2 +- sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py | 2 +- sources/pyside2/tests/QtWidgets/qbrush_test.py | 2 +- sources/pyside2/tests/QtWidgets/qcolormap_test.py | 2 +- sources/pyside2/tests/QtWidgets/qdynamic_signal.py | 2 +- sources/pyside2/tests/QtWidgets/qfontdialog_test.py | 2 +- sources/pyside2/tests/QtWidgets/qformlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py | 2 +- sources/pyside2/tests/QtWidgets/qimage_test.py | 2 +- sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py | 2 +- sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlayout_ref_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlcdnumber_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlistwidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py | 2 +- sources/pyside2/tests/QtWidgets/qmainwindow_test.py | 2 +- sources/pyside2/tests/QtWidgets/qmenu_test.py | 2 +- sources/pyside2/tests/QtWidgets/qmenuadd_test.py | 2 +- sources/pyside2/tests/QtWidgets/qobject_mi_test.py | 2 +- sources/pyside2/tests/QtWidgets/qpen_test.py | 2 +- sources/pyside2/tests/QtWidgets/qpicture_test.py | 2 +- sources/pyside2/tests/QtWidgets/qpixmap_constructor.py | 2 +- sources/pyside2/tests/QtWidgets/qpushbutton_test.py | 2 +- sources/pyside2/tests/QtWidgets/qshortcut_test.py | 2 +- sources/pyside2/tests/QtWidgets/qsplitter_test.py | 2 +- sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py | 2 +- sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py | 2 +- sources/pyside2/tests/QtWidgets/qstyle_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtableview_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtabwidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtextedit_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtoolbar_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtoolbox_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtreeview_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtreewidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qvariant_test.py | 2 +- sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qwidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/reference_count_test.py | 2 +- sources/pyside2/tests/QtWidgets/standardpixmap_test.py | 2 +- sources/pyside2/tests/QtWidgets/test_module_template.py | 2 +- sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py | 2 +- sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py | 2 +- sources/pyside2/tests/QtWidgets/wrong_return_test.py | 2 +- sources/pyside2/tests/QtXml/qdomdocument_test.py | 2 +- sources/pyside2/tests/QtXml/qxmlsimplereader_test.py | 2 +- sources/pyside2/tests/QtXmlPatterns/import_test.py | 2 +- sources/pyside2/tests/mac/qmacstyle_test.py | 2 +- sources/pyside2/tests/manually/bug_841.py | 2 +- sources/pyside2/tests/pysidetest/all_modules_load_test.py | 2 +- sources/pyside2/tests/pysidetest/bug_1016.py | 2 +- sources/pyside2/tests/pysidetest/decoratedslot_test.py | 2 +- sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py | 2 +- sources/pyside2/tests/pysidetest/enum_test.py | 2 +- sources/pyside2/tests/pysidetest/hiddenobject.cpp | 2 +- sources/pyside2/tests/pysidetest/hiddenobject.h | 2 +- sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py | 2 +- sources/pyside2/tests/pysidetest/list_signal_test.py | 2 +- sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py | 2 +- sources/pyside2/tests/pysidetest/modelview_test.py | 2 +- sources/pyside2/tests/pysidetest/new_inherited_functions_test.py | 2 +- sources/pyside2/tests/pysidetest/notify_id.py | 2 +- sources/pyside2/tests/pysidetest/pysidetest_global.h | 2 +- sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py | 2 +- sources/pyside2/tests/pysidetest/qvariant_test.py | 2 +- sources/pyside2/tests/pysidetest/signal_slot_warning.py | 2 +- sources/pyside2/tests/pysidetest/signalandnamespace_test.py | 2 +- sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py | 2 +- sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py | 2 +- sources/pyside2/tests/pysidetest/testobject.cpp | 2 +- sources/pyside2/tests/pysidetest/testobject.h | 2 +- sources/pyside2/tests/pysidetest/testview.cpp | 2 +- sources/pyside2/tests/pysidetest/testview.h | 2 +- sources/pyside2/tests/pysidetest/typedef_signal_test.py | 2 +- sources/pyside2/tests/pysidetest/version_test.py | 2 +- sources/pyside2/tests/registry/CMakeLists.txt | 2 +- sources/pyside2/tests/registry/existence_test.py | 2 +- sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py | 2 +- sources/pyside2/tests/registry/init_platform.py | 2 +- sources/pyside2/tests/registry/signature_test.py | 2 +- sources/pyside2/tests/registry/util.py | 2 +- sources/pyside2/tests/run_test.sh | 2 +- sources/pyside2/tests/signals/args_dont_match_test.py | 2 +- sources/pyside2/tests/signals/bug_189.py | 2 +- sources/pyside2/tests/signals/bug_311.py | 2 +- sources/pyside2/tests/signals/bug_312.py | 2 +- sources/pyside2/tests/signals/bug_319.py | 2 +- sources/pyside2/tests/signals/bug_79.py | 2 +- sources/pyside2/tests/signals/decorators_test.py | 2 +- sources/pyside2/tests/signals/disconnect_test.py | 2 +- sources/pyside2/tests/signals/invalid_callback_test.py | 2 +- sources/pyside2/tests/signals/lambda_gui_test.py | 2 +- sources/pyside2/tests/signals/lambda_test.py | 2 +- sources/pyside2/tests/signals/leaking_signal_test.py | 2 +- sources/pyside2/tests/signals/multiple_connections_gui_test.py | 2 +- sources/pyside2/tests/signals/multiple_connections_test.py | 2 +- sources/pyside2/tests/signals/pysignal_test.py | 2 +- sources/pyside2/tests/signals/qobject_destroyed_test.py | 2 +- sources/pyside2/tests/signals/qobject_receivers_test.py | 2 +- sources/pyside2/tests/signals/qobject_sender_test.py | 2 +- sources/pyside2/tests/signals/ref01_test.py | 2 +- sources/pyside2/tests/signals/ref02_test.py | 2 +- sources/pyside2/tests/signals/ref03_test.py | 2 +- sources/pyside2/tests/signals/ref04_test.py | 2 +- sources/pyside2/tests/signals/ref05_test.py | 2 +- sources/pyside2/tests/signals/ref06_test.py | 2 +- sources/pyside2/tests/signals/segfault_proxyparent_test.py | 2 +- sources/pyside2/tests/signals/self_connect_test.py | 2 +- sources/pyside2/tests/signals/short_circuit_test.py | 2 +- sources/pyside2/tests/signals/signal2signal_connect_test.py | 2 +- sources/pyside2/tests/signals/signal_autoconnect_test.py | 2 +- sources/pyside2/tests/signals/signal_connectiontype_support_test.py | 2 +- sources/pyside2/tests/signals/signal_emission_gui_test.py | 2 +- sources/pyside2/tests/signals/signal_emission_test.py | 2 +- sources/pyside2/tests/signals/signal_func_test.py | 2 +- sources/pyside2/tests/signals/signal_manager_refcount_test.py | 2 +- sources/pyside2/tests/signals/signal_number_limit_test.py | 2 +- sources/pyside2/tests/signals/signal_object_test.py | 2 +- sources/pyside2/tests/signals/signal_signature_test.py | 2 +- sources/pyside2/tests/signals/signal_with_primitive_type_test.py | 2 +- sources/pyside2/tests/signals/slot_reference_count_test.py | 2 +- sources/pyside2/tests/signals/static_metaobject_test.py | 2 +- sources/pyside2/tests/tools/list-class-hierarchy.py | 2 +- sources/pyside2/tests/util/color.py | 2 +- sources/pyside2/tests/util/helper/__init__.py | 2 +- sources/pyside2/tests/util/helper/docmodifier.py | 2 +- sources/pyside2/tests/util/httpd.py | 2 +- sources/pyside2/tests/util/processtimer.py | 2 +- sources/pyside2/tests/util/py2xfunctions.py | 2 +- sources/pyside2/tests/util/py3kcompat.py | 2 +- sources/pyside2/tests/util/py3xfunctions.py | 2 +- sources/pyside2/tests/util/pyqt_diff.py | 2 +- sources/pyside2/tests/util/pyqtcheck.py | 2 +- sources/pyside2/tests/util/rename_imports.sh | 2 +- sources/pyside2/tests/util/test_processtimer.py | 2 +- sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp | 2 +- sources/shiboken2/ApiExtractor/abstractmetabuilder.h | 2 +- sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h | 2 +- sources/shiboken2/ApiExtractor/abstractmetalang.cpp | 2 +- sources/shiboken2/ApiExtractor/abstractmetalang.h | 2 +- sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h | 2 +- sources/shiboken2/ApiExtractor/apiextractor.cpp | 2 +- sources/shiboken2/ApiExtractor/apiextractor.h | 2 +- sources/shiboken2/ApiExtractor/apiextractormacros.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangparser.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangutils.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/compilersupport.h | 2 +- sources/shiboken2/ApiExtractor/dependency.h | 2 +- sources/shiboken2/ApiExtractor/docparser.cpp | 2 +- sources/shiboken2/ApiExtractor/docparser.h | 2 +- sources/shiboken2/ApiExtractor/doxygenparser.cpp | 2 +- sources/shiboken2/ApiExtractor/doxygenparser.h | 2 +- sources/shiboken2/ApiExtractor/fileout.cpp | 2 +- sources/shiboken2/ApiExtractor/fileout.h | 2 +- sources/shiboken2/ApiExtractor/graph.cpp | 2 +- sources/shiboken2/ApiExtractor/graph.h | 2 +- sources/shiboken2/ApiExtractor/header_paths.h | 2 +- sources/shiboken2/ApiExtractor/include.cpp | 2 +- sources/shiboken2/ApiExtractor/include.h | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel.cpp | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel.h | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel_enums.h | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h | 2 +- sources/shiboken2/ApiExtractor/parser/enumvalue.cpp | 2 +- sources/shiboken2/ApiExtractor/parser/enumvalue.h | 2 +- sources/shiboken2/ApiExtractor/qtdocparser.cpp | 2 +- sources/shiboken2/ApiExtractor/qtdocparser.h | 2 +- sources/shiboken2/ApiExtractor/reporthandler.cpp | 2 +- sources/shiboken2/ApiExtractor/reporthandler.h | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h | 2 +- sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testaddfunction.h | 2 +- sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testarrayargument.h | 2 +- sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testcodeinjection.h | 2 +- sources/shiboken2/ApiExtractor/tests/testcontainer.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testcontainer.h | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionoperator.h | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionruletag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testctorinformation.h | 2 +- sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h | 2 +- sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testdtorinformation.h | 2 +- sources/shiboken2/ApiExtractor/tests/testenum.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testenum.h | 2 +- sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testextrainclude.h | 2 +- sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testfunctiontag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h | 2 +- sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testinserttemplate.h | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h | 2 +- sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h | 2 +- sources/shiboken2/ApiExtractor/tests/testnamespace.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testnamespace.h | 2 +- sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testnestedtypes.h | 2 +- sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h | 2 +- sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testrefcounttag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h | 2 +- sources/shiboken2/ApiExtractor/tests/testremovefield.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testremovefield.h | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h | 2 +- sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testresolvetype.h | 2 +- sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testreverseoperators.h | 2 +- sources/shiboken2/ApiExtractor/tests/testtemplates.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testtemplates.h | 2 +- sources/shiboken2/ApiExtractor/tests/testtoposort.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testtoposort.h | 2 +- sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testtyperevision.h | 2 +- sources/shiboken2/ApiExtractor/tests/testutil.h | 2 +- sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testvoidarg.h | 2 +- sources/shiboken2/ApiExtractor/typedatabase.cpp | 2 +- sources/shiboken2/ApiExtractor/typedatabase.h | 2 +- sources/shiboken2/ApiExtractor/typedatabase_typedefs.h | 2 +- sources/shiboken2/ApiExtractor/typeparser.cpp | 2 +- sources/shiboken2/ApiExtractor/typeparser.h | 2 +- sources/shiboken2/ApiExtractor/typesystem.cpp | 2 +- sources/shiboken2/ApiExtractor/typesystem.h | 2 +- sources/shiboken2/ApiExtractor/typesystem_enums.h | 2 +- sources/shiboken2/ApiExtractor/typesystem_p.h | 2 +- sources/shiboken2/ApiExtractor/typesystem_typedefs.h | 2 +- sources/shiboken2/generator/generator.cpp | 2 +- sources/shiboken2/generator/generator.h | 2 +- sources/shiboken2/generator/main.cpp | 2 +- sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp | 2 +- sources/shiboken2/generator/qtdoc/qtdocgenerator.h | 2 +- sources/shiboken2/generator/shiboken2/cppgenerator.cpp | 2 +- sources/shiboken2/generator/shiboken2/cppgenerator.h | 2 +- sources/shiboken2/generator/shiboken2/headergenerator.cpp | 2 +- sources/shiboken2/generator/shiboken2/headergenerator.h | 2 +- sources/shiboken2/generator/shiboken2/overloaddata.cpp | 2 +- sources/shiboken2/generator/shiboken2/overloaddata.h | 2 +- sources/shiboken2/generator/shiboken2/shibokengenerator.cpp | 2 +- sources/shiboken2/generator/shiboken2/shibokengenerator.h | 2 +- sources/shiboken2/generatorrunnermacros.h | 2 +- sources/shiboken2/generators/shiboken/shiboken.cpp | 2 +- sources/shiboken2/libshiboken/autodecref.h | 2 +- sources/shiboken2/libshiboken/basewrapper.cpp | 2 +- sources/shiboken2/libshiboken/basewrapper.h | 2 +- sources/shiboken2/libshiboken/basewrapper_p.h | 2 +- sources/shiboken2/libshiboken/bindingmanager.cpp | 2 +- sources/shiboken2/libshiboken/bindingmanager.h | 2 +- sources/shiboken2/libshiboken/debugfreehook.cpp | 2 +- sources/shiboken2/libshiboken/debugfreehook.h | 2 +- sources/shiboken2/libshiboken/gilstate.cpp | 2 +- sources/shiboken2/libshiboken/gilstate.h | 2 +- sources/shiboken2/libshiboken/helper.cpp | 2 +- sources/shiboken2/libshiboken/helper.h | 2 +- sources/shiboken2/libshiboken/python25compat.h | 2 +- sources/shiboken2/libshiboken/qapp_macro.cpp | 2 +- sources/shiboken2/libshiboken/qapp_macro.h | 2 +- sources/shiboken2/libshiboken/sbkarrayconverter.cpp | 2 +- sources/shiboken2/libshiboken/sbkarrayconverter.h | 2 +- sources/shiboken2/libshiboken/sbkarrayconverter_p.h | 2 +- sources/shiboken2/libshiboken/sbkconverter.cpp | 2 +- sources/shiboken2/libshiboken/sbkconverter.h | 2 +- sources/shiboken2/libshiboken/sbkconverter_p.h | 2 +- sources/shiboken2/libshiboken/sbkdbg.h | 2 +- sources/shiboken2/libshiboken/sbkenum.cpp | 2 +- sources/shiboken2/libshiboken/sbkenum.h | 2 +- sources/shiboken2/libshiboken/sbkmodule.cpp | 2 +- sources/shiboken2/libshiboken/sbkmodule.h | 2 +- sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp | 2 +- sources/shiboken2/libshiboken/sbkpython.h | 2 +- sources/shiboken2/libshiboken/sbkstring.cpp | 2 +- sources/shiboken2/libshiboken/sbkstring.h | 2 +- sources/shiboken2/libshiboken/sbkversion.h.in | 2 +- sources/shiboken2/libshiboken/shiboken.h | 2 +- sources/shiboken2/libshiboken/shibokenbuffer.cpp | 2 +- sources/shiboken2/libshiboken/shibokenbuffer.h | 2 +- sources/shiboken2/libshiboken/shibokenmacros.h | 2 +- sources/shiboken2/libshiboken/signature.cpp | 2 +- sources/shiboken2/libshiboken/signature.h | 2 +- sources/shiboken2/libshiboken/threadstatesaver.cpp | 2 +- sources/shiboken2/libshiboken/threadstatesaver.h | 2 +- sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp | 2 +- sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h | 2 +- sources/shiboken2/libshiboken/voidptr.cpp | 2 +- sources/shiboken2/libshiboken/voidptr.h | 2 +- sources/shiboken2/shiboken_version.py | 2 +- sources/shiboken2/tests/dumpcodemodel/main.cpp | 2 +- sources/shiboken2/tests/libminimal/libminimalmacros.h | 2 +- sources/shiboken2/tests/libminimal/listuser.cpp | 2 +- sources/shiboken2/tests/libminimal/listuser.h | 2 +- sources/shiboken2/tests/libminimal/minbool.h | 2 +- sources/shiboken2/tests/libminimal/obj.cpp | 2 +- sources/shiboken2/tests/libminimal/obj.h | 2 +- sources/shiboken2/tests/libminimal/typedef.cpp | 2 +- sources/shiboken2/tests/libminimal/typedef.h | 2 +- sources/shiboken2/tests/libminimal/val.h | 2 +- sources/shiboken2/tests/libother/extendsnoimplicitconversion.h | 2 +- sources/shiboken2/tests/libother/libothermacros.h | 2 +- sources/shiboken2/tests/libother/number.cpp | 2 +- sources/shiboken2/tests/libother/number.h | 2 +- sources/shiboken2/tests/libother/otherderived.cpp | 2 +- sources/shiboken2/tests/libother/otherderived.h | 2 +- sources/shiboken2/tests/libother/othermultiplederived.cpp | 2 +- sources/shiboken2/tests/libother/othermultiplederived.h | 2 +- sources/shiboken2/tests/libother/otherobjecttype.cpp | 2 +- sources/shiboken2/tests/libother/otherobjecttype.h | 2 +- sources/shiboken2/tests/libsample/abstract.cpp | 2 +- sources/shiboken2/tests/libsample/abstract.h | 2 +- sources/shiboken2/tests/libsample/blackbox.cpp | 2 +- sources/shiboken2/tests/libsample/blackbox.h | 2 +- sources/shiboken2/tests/libsample/bucket.cpp | 2 +- sources/shiboken2/tests/libsample/bucket.h | 2 +- sources/shiboken2/tests/libsample/bytearray.cpp | 2 +- sources/shiboken2/tests/libsample/bytearray.h | 2 +- sources/shiboken2/tests/libsample/collector.cpp | 2 +- sources/shiboken2/tests/libsample/collector.h | 2 +- sources/shiboken2/tests/libsample/complex.cpp | 2 +- sources/shiboken2/tests/libsample/complex.h | 2 +- sources/shiboken2/tests/libsample/ctorconvrule.h | 2 +- sources/shiboken2/tests/libsample/cvlist.h | 2 +- sources/shiboken2/tests/libsample/derived.cpp | 2 +- sources/shiboken2/tests/libsample/derived.h | 2 +- sources/shiboken2/tests/libsample/echo.cpp | 2 +- sources/shiboken2/tests/libsample/echo.h | 2 +- sources/shiboken2/tests/libsample/expression.cpp | 2 +- sources/shiboken2/tests/libsample/expression.h | 2 +- sources/shiboken2/tests/libsample/filter.cpp | 2 +- sources/shiboken2/tests/libsample/filter.h | 2 +- sources/shiboken2/tests/libsample/functions.cpp | 2 +- sources/shiboken2/tests/libsample/functions.h | 2 +- sources/shiboken2/tests/libsample/handle.cpp | 2 +- sources/shiboken2/tests/libsample/handle.h | 2 +- sources/shiboken2/tests/libsample/implicitconv.cpp | 2 +- sources/shiboken2/tests/libsample/implicitconv.h | 2 +- sources/shiboken2/tests/libsample/injectcode.cpp | 2 +- sources/shiboken2/tests/libsample/injectcode.h | 2 +- sources/shiboken2/tests/libsample/libsamplemacros.h | 2 +- sources/shiboken2/tests/libsample/list.h | 2 +- sources/shiboken2/tests/libsample/listuser.cpp | 2 +- sources/shiboken2/tests/libsample/listuser.h | 2 +- sources/shiboken2/tests/libsample/main.cpp | 2 +- sources/shiboken2/tests/libsample/mapuser.cpp | 2 +- sources/shiboken2/tests/libsample/mapuser.h | 2 +- sources/shiboken2/tests/libsample/modelindex.h | 2 +- sources/shiboken2/tests/libsample/modifications.cpp | 2 +- sources/shiboken2/tests/libsample/modifications.h | 2 +- sources/shiboken2/tests/libsample/modified_constructor.cpp | 2 +- sources/shiboken2/tests/libsample/modified_constructor.h | 2 +- sources/shiboken2/tests/libsample/multiple_derived.cpp | 2 +- sources/shiboken2/tests/libsample/multiple_derived.h | 2 +- sources/shiboken2/tests/libsample/noimplicitconversion.h | 2 +- sources/shiboken2/tests/libsample/nondefaultctor.h | 2 +- sources/shiboken2/tests/libsample/null.h | 2 +- sources/shiboken2/tests/libsample/objectmodel.cpp | 2 +- sources/shiboken2/tests/libsample/objectmodel.h | 2 +- sources/shiboken2/tests/libsample/objecttype.cpp | 2 +- sources/shiboken2/tests/libsample/objecttype.h | 2 +- sources/shiboken2/tests/libsample/objecttypebyvalue.h | 2 +- sources/shiboken2/tests/libsample/objecttypeholder.cpp | 2 +- sources/shiboken2/tests/libsample/objecttypeholder.h | 2 +- sources/shiboken2/tests/libsample/objecttypelayout.cpp | 2 +- sources/shiboken2/tests/libsample/objecttypelayout.h | 2 +- sources/shiboken2/tests/libsample/objecttypeoperators.cpp | 2 +- sources/shiboken2/tests/libsample/objecttypeoperators.h | 2 +- sources/shiboken2/tests/libsample/objectview.cpp | 2 +- sources/shiboken2/tests/libsample/objectview.h | 2 +- sources/shiboken2/tests/libsample/oddbool.h | 2 +- sources/shiboken2/tests/libsample/onlycopy.cpp | 2 +- sources/shiboken2/tests/libsample/onlycopy.h | 2 +- sources/shiboken2/tests/libsample/overload.cpp | 2 +- sources/shiboken2/tests/libsample/overload.h | 2 +- sources/shiboken2/tests/libsample/overloadsort.cpp | 2 +- sources/shiboken2/tests/libsample/overloadsort.h | 2 +- sources/shiboken2/tests/libsample/pairuser.cpp | 2 +- sources/shiboken2/tests/libsample/pairuser.h | 2 +- sources/shiboken2/tests/libsample/pen.cpp | 2 +- sources/shiboken2/tests/libsample/pen.h | 2 +- sources/shiboken2/tests/libsample/photon.cpp | 2 +- sources/shiboken2/tests/libsample/photon.h | 2 +- sources/shiboken2/tests/libsample/point.cpp | 2 +- sources/shiboken2/tests/libsample/point.h | 2 +- sources/shiboken2/tests/libsample/pointerholder.h | 2 +- sources/shiboken2/tests/libsample/pointf.cpp | 2 +- sources/shiboken2/tests/libsample/pointf.h | 2 +- sources/shiboken2/tests/libsample/polygon.cpp | 2 +- sources/shiboken2/tests/libsample/polygon.h | 2 +- sources/shiboken2/tests/libsample/privatector.h | 2 +- sources/shiboken2/tests/libsample/privatedtor.h | 2 +- sources/shiboken2/tests/libsample/protected.cpp | 2 +- sources/shiboken2/tests/libsample/protected.h | 2 +- sources/shiboken2/tests/libsample/rect.h | 2 +- sources/shiboken2/tests/libsample/reference.cpp | 2 +- sources/shiboken2/tests/libsample/reference.h | 2 +- sources/shiboken2/tests/libsample/removednamespaces.h | 2 +- sources/shiboken2/tests/libsample/sample.cpp | 2 +- sources/shiboken2/tests/libsample/sample.h | 2 +- sources/shiboken2/tests/libsample/samplenamespace.cpp | 2 +- sources/shiboken2/tests/libsample/samplenamespace.h | 2 +- sources/shiboken2/tests/libsample/sbkdate.cpp | 2 +- sources/shiboken2/tests/libsample/sbkdate.h | 2 +- sources/shiboken2/tests/libsample/simplefile.cpp | 2 +- sources/shiboken2/tests/libsample/simplefile.h | 2 +- sources/shiboken2/tests/libsample/size.cpp | 2 +- sources/shiboken2/tests/libsample/size.h | 2 +- sources/shiboken2/tests/libsample/sometime.cpp | 2 +- sources/shiboken2/tests/libsample/sometime.h | 2 +- sources/shiboken2/tests/libsample/str.cpp | 2 +- sources/shiboken2/tests/libsample/str.h | 2 +- sources/shiboken2/tests/libsample/strlist.cpp | 2 +- sources/shiboken2/tests/libsample/strlist.h | 2 +- sources/shiboken2/tests/libsample/templateptr.cpp | 2 +- sources/shiboken2/tests/libsample/templateptr.h | 2 +- sources/shiboken2/tests/libsample/transform.cpp | 2 +- sources/shiboken2/tests/libsample/transform.h | 2 +- sources/shiboken2/tests/libsample/valueandvirtual.h | 2 +- sources/shiboken2/tests/libsample/virtualmethods.cpp | 2 +- sources/shiboken2/tests/libsample/virtualmethods.h | 2 +- sources/shiboken2/tests/libsample/voidholder.h | 2 +- sources/shiboken2/tests/libsmart/libsmartmacros.h | 2 +- sources/shiboken2/tests/libsmart/smart.cpp | 2 +- sources/shiboken2/tests/libsmart/smart.h | 2 +- sources/shiboken2/tests/minimalbinding/global.h | 2 +- sources/shiboken2/tests/minimalbinding/listuser_test.py | 2 +- sources/shiboken2/tests/minimalbinding/minbool_test.py | 2 +- sources/shiboken2/tests/minimalbinding/obj_test.py | 2 +- sources/shiboken2/tests/minimalbinding/typedef_test.py | 2 +- sources/shiboken2/tests/minimalbinding/val_test.py | 2 +- .../shiboken2/tests/otherbinding/collector_external_operator_test.py | 2 +- .../conversion_operator_for_class_without_implicit_conversions_test.py | 2 +- sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py | 2 +- sources/shiboken2/tests/otherbinding/global.h | 2 +- sources/shiboken2/tests/otherbinding/module_reload_test.py | 2 +- sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py | 2 +- sources/shiboken2/tests/otherbinding/objtypehashes_test.py | 2 +- sources/shiboken2/tests/otherbinding/otherderived_test.py | 2 +- sources/shiboken2/tests/otherbinding/test_module_template.py | 2 +- sources/shiboken2/tests/otherbinding/typediscovery_test.py | 2 +- .../shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py | 2 +- sources/shiboken2/tests/otherbinding/wrongctor_test.py | 2 +- sources/shiboken2/tests/py3kcompat.py | 2 +- sources/shiboken2/tests/samplebinding/__del___test.py | 2 +- sources/shiboken2/tests/samplebinding/abstract_test.py | 2 +- sources/shiboken2/tests/samplebinding/addedfunction_test.py | 2 +- .../tests/samplebinding/addedfunction_with_container_args_test.py | 2 +- sources/shiboken2/tests/samplebinding/argumentmodifications_test.py | 2 +- sources/shiboken2/tests/samplebinding/array_numpy_test.py | 2 +- sources/shiboken2/tests/samplebinding/array_sequence_test.py | 2 +- sources/shiboken2/tests/samplebinding/bug_554_test.py | 2 +- sources/shiboken2/tests/samplebinding/bug_704_test.py | 2 +- sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp | 2 +- sources/shiboken2/tests/samplebinding/bytearray_test.py | 2 +- sources/shiboken2/tests/samplebinding/child_return_test.py | 2 +- sources/shiboken2/tests/samplebinding/class_fields_test.py | 2 +- sources/shiboken2/tests/samplebinding/collector_test.py | 2 +- sources/shiboken2/tests/samplebinding/complex_test.py | 2 +- sources/shiboken2/tests/samplebinding/conversion_operator_test.py | 2 +- sources/shiboken2/tests/samplebinding/copy_test.py | 2 +- sources/shiboken2/tests/samplebinding/ctorconvrule_test.py | 2 +- sources/shiboken2/tests/samplebinding/cyclic_test.py | 2 +- sources/shiboken2/tests/samplebinding/date_test.py | 2 +- sources/shiboken2/tests/samplebinding/decisor_test.py | 2 +- sources/shiboken2/tests/samplebinding/delete_test.py | 2 +- sources/shiboken2/tests/samplebinding/deprecated_test.py | 2 +- sources/shiboken2/tests/samplebinding/derived_test.py | 2 +- sources/shiboken2/tests/samplebinding/duck_punching_test.py | 2 +- sources/shiboken2/tests/samplebinding/echo_test.py | 2 +- sources/shiboken2/tests/samplebinding/enum_test.py | 2 +- sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py | 2 +- sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py | 2 +- sources/shiboken2/tests/samplebinding/event_loop_thread_test.py | 2 +- sources/shiboken2/tests/samplebinding/filter_test.py | 2 +- sources/shiboken2/tests/samplebinding/global.h | 2 +- sources/shiboken2/tests/samplebinding/handleholder_test.py | 2 +- sources/shiboken2/tests/samplebinding/hashabletype_test.py | 2 +- sources/shiboken2/tests/samplebinding/ignorederefop_test.py | 2 +- sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py | 2 +- sources/shiboken2/tests/samplebinding/implicitconv_test.py | 2 +- sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py | 2 +- sources/shiboken2/tests/samplebinding/injectcode_test.py | 2 +- sources/shiboken2/tests/samplebinding/innerclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/intlist_test.py | 2 +- sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py | 2 +- sources/shiboken2/tests/samplebinding/keep_reference_test.py | 2 +- sources/shiboken2/tests/samplebinding/list_test.py | 2 +- sources/shiboken2/tests/samplebinding/lock_test.py | 2 +- sources/shiboken2/tests/samplebinding/map_test.py | 2 +- sources/shiboken2/tests/samplebinding/metaclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py | 2 +- sources/shiboken2/tests/samplebinding/mixed_mi_test.py | 2 +- sources/shiboken2/tests/samplebinding/modelindex_test.py | 2 +- sources/shiboken2/tests/samplebinding/modelview_test.py | 2 +- sources/shiboken2/tests/samplebinding/modifications_test.py | 2 +- sources/shiboken2/tests/samplebinding/modified_constructor_test.py | 2 +- sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py | 2 +- sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py | 2 +- sources/shiboken2/tests/samplebinding/multiple_derived_test.py | 2 +- sources/shiboken2/tests/samplebinding/namespace_test.py | 2 +- sources/shiboken2/tests/samplebinding/newdivision_test.py | 2 +- sources/shiboken2/tests/samplebinding/nondefaultctor_test.py | 2 +- sources/shiboken2/tests/samplebinding/nonzero_test.py | 2 +- sources/shiboken2/tests/samplebinding/numericaltypedef_test.py | 2 +- sources/shiboken2/tests/samplebinding/numpy_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttype_test.py | 2 +- .../shiboken2/tests/samplebinding/objecttype_with_named_args_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttypelayout_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py | 2 +- .../samplebinding/objecttypereferenceasvirtualmethodargument_test.py | 2 +- sources/shiboken2/tests/samplebinding/oddbool_test.py | 2 +- sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py | 2 +- sources/shiboken2/tests/samplebinding/onlycopyclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/overflow_test.py | 2 +- sources/shiboken2/tests/samplebinding/overload_sorting_test.py | 2 +- sources/shiboken2/tests/samplebinding/overload_test.py | 2 +- sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py | 2 +- .../tests/samplebinding/ownership_argument_invalidation_test.py | 2 +- .../shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py | 2 +- .../tests/samplebinding/ownership_delete_child_in_python_test.py | 2 +- sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py | 2 +- .../tests/samplebinding/ownership_invalidate_after_use_test.py | 2 +- .../shiboken2/tests/samplebinding/ownership_invalidate_child_test.py | 2 +- .../tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py | 2 +- .../shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py | 2 +- sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py | 2 +- sources/shiboken2/tests/samplebinding/ownership_transference_test.py | 2 +- sources/shiboken2/tests/samplebinding/pair_test.py | 2 +- sources/shiboken2/tests/samplebinding/pen_test.py | 2 +- sources/shiboken2/tests/samplebinding/point_test.py | 2 +- sources/shiboken2/tests/samplebinding/pointerholder_test.py | 2 +- sources/shiboken2/tests/samplebinding/pointf_test.py | 2 +- .../shiboken2/tests/samplebinding/primitivereferenceargument_test.py | 2 +- sources/shiboken2/tests/samplebinding/privatector_test.py | 2 +- sources/shiboken2/tests/samplebinding/privatedtor_test.py | 2 +- sources/shiboken2/tests/samplebinding/protected_test.py | 2 +- sources/shiboken2/tests/samplebinding/pstrlist_test.py | 2 +- sources/shiboken2/tests/samplebinding/pystr_test.py | 2 +- sources/shiboken2/tests/samplebinding/python_thread_test.py | 2 +- sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py | 2 +- sources/shiboken2/tests/samplebinding/reference_test.py | 2 +- sources/shiboken2/tests/samplebinding/referencetopointer_test.py | 2 +- sources/shiboken2/tests/samplebinding/return_null_test.py | 2 +- sources/shiboken2/tests/samplebinding/richcompare_test.py | 2 +- sources/shiboken2/tests/samplebinding/sample_test.py | 2 +- sources/shiboken2/tests/samplebinding/simplefile_glue.cpp | 2 +- sources/shiboken2/tests/samplebinding/simplefile_test.py | 2 +- sources/shiboken2/tests/samplebinding/size_test.py | 2 +- sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py | 2 +- sources/shiboken2/tests/samplebinding/str_test.py | 2 +- sources/shiboken2/tests/samplebinding/strlist_test.py | 2 +- sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/time_test.py | 2 +- sources/shiboken2/tests/samplebinding/transform_test.py | 2 +- sources/shiboken2/tests/samplebinding/typeconverters_test.py | 2 +- sources/shiboken2/tests/samplebinding/typedealloc_test.py | 2 +- sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py | 2 +- sources/shiboken2/tests/samplebinding/unsafe_parent_test.py | 2 +- sources/shiboken2/tests/samplebinding/useraddedctor_test.py | 2 +- sources/shiboken2/tests/samplebinding/virtualdtor_test.py | 2 +- sources/shiboken2/tests/samplebinding/virtualmethods_test.py | 2 +- sources/shiboken2/tests/samplebinding/visibilitychange_test.py | 2 +- sources/shiboken2/tests/samplebinding/voidholder_test.py | 2 +- sources/shiboken2/tests/samplebinding/weakref_test.py | 2 +- sources/shiboken2/tests/samplebinding/writableclassdict_test.py | 2 +- sources/shiboken2/tests/shibokenmodule/module_test.py | 2 +- sources/shiboken2/tests/smartbinding/global.h | 2 +- sources/shiboken2/tests/smartbinding/smart_pointer_test.py | 2 +- sources/shiboken2/tests/sphinxtabletest.cpp | 2 +- sources/shiboken2/tests/sphinxtabletest.h | 2 +- sources/shiboken2/tests/test_generator/dummygenerator.cpp | 2 +- sources/shiboken2/tests/test_generator/dummygenerator.h | 2 +- sources/shiboken2/tests/test_generator/dummygentest.cpp | 2 +- sources/shiboken2/tests/test_generator/dummygentest.h | 2 +- sources/shiboken2/tests/test_generator/main.cpp | 2 +- 1690 files changed, 1690 insertions(+), 1690 deletions(-) diff --git a/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml b/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml index 99c24c241..e4852c596 100644 --- a/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml +++ b/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml b/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml index 62245d6e3..0b78806d2 100644 --- a/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml +++ b/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml b/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml index 9bcaa6705..67c387358 100644 --- a/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml +++ b/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml b/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml index b26e5d7fe..f257db191 100644 --- a/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml +++ b/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml b/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml index d448fd29a..6f37ae207 100644 --- a/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml +++ b/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml b/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml index cfa332742..6ada77687 100644 --- a/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml +++ b/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml b/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml index a6648f612..560ad08ee 100644 --- a/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml +++ b/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml b/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml index d913ded16..c7058c931 100644 --- a/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml +++ b/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml b/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml index 09f590914..df3a88d4f 100644 --- a/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml +++ b/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp b/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp index 593b4bfba..d7c18fac9 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp b/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp index b2dfae38f..c9a72e2b1 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp index 6955b1149..bfac66a99 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h index 39acac5d5..c77a27a5d 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h +++ b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp b/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp index 5690112ca..989b1adf0 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp b/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp index 5aa75566e..3b1ca6bae 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in b/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in index 58caaee55..00a0cfa47 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in +++ b/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml index 8c50413cb..0e83f6228 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml index be4832c01..60f6a680b 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml index c9c9f73c5..78ed4b0b2 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml index 801c52b0f..b11e825ce 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml b/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml index 6b628c9bf..708294d47 100644 --- a/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml +++ b/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp b/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp index 38a4c1ccb..6fc666952 100644 --- a/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp +++ b/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in b/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in index ee909875e..dc6491602 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml index 976380cda..488d9861a 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml index 76a092d34..813b39a22 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml index eb8631cc0..b2a4e5841 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml index eb8631cc0..b2a4e5841 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtHelp/typesystem_help.xml b/sources/pyside2/PySide2/QtHelp/typesystem_help.xml index bcaa5fee3..9ba4a5e72 100644 --- a/sources/pyside2/PySide2/QtHelp/typesystem_help.xml +++ b/sources/pyside2/PySide2/QtHelp/typesystem_help.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtLocation/typesystem_location.xml b/sources/pyside2/PySide2/QtLocation/typesystem_location.xml index de8fbca7f..c8feb321d 100644 --- a/sources/pyside2/PySide2/QtLocation/typesystem_location.xml +++ b/sources/pyside2/PySide2/QtLocation/typesystem_location.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml b/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml index 69c9bc963..96a75e229 100644 --- a/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml +++ b/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml index e89104284..dc803a28e 100644 --- a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml +++ b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml index ea34e0b02..434a4326b 100644 --- a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml +++ b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml index df6e28c85..453d3f9ca 100644 --- a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml +++ b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml b/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml index 07f6f99c3..221758d49 100644 --- a/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml +++ b/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml b/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml index 5378d0dfa..2512b899f 100644 --- a/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml +++ b/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml b/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml index 9b7adb71a..025f4e430 100644 --- a/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml +++ b/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml b/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml index 058994ad0..99d30a995 100644 --- a/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml +++ b/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml b/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml index daf0ed763..af6a4c346 100644 --- a/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml +++ b/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp index 3e217a707..be8b2f07d 100644 --- a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp +++ b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h index fba7f8d26..397547ba7 100644 --- a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h +++ b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQml/typesystem_qml.xml b/sources/pyside2/PySide2/QtQml/typesystem_qml.xml index 385383fcc..83a018682 100644 --- a/sources/pyside2/PySide2/QtQml/typesystem_qml.xml +++ b/sources/pyside2/PySide2/QtQml/typesystem_qml.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp index 6468068a3..770365cc1 100644 --- a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp +++ b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h index 35a669084..364779cca 100644 --- a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h +++ b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml b/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml index d9373e86d..2adb4e092 100644 --- a/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml +++ b/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml b/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml index 782ca0360..89818fc70 100644 --- a/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml +++ b/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtScript/typesystem_script.xml b/sources/pyside2/PySide2/QtScript/typesystem_script.xml index 4467f1de9..8dd0473d6 100644 --- a/sources/pyside2/PySide2/QtScript/typesystem_script.xml +++ b/sources/pyside2/PySide2/QtScript/typesystem_script.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml b/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml index 023e03ba1..1bb656758 100644 --- a/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml +++ b/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml b/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml index 45d64e0a2..a699dee04 100644 --- a/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml +++ b/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtSql/typesystem_sql.xml b/sources/pyside2/PySide2/QtSql/typesystem_sql.xml index 2e7222a16..7ab519b20 100644 --- a/sources/pyside2/PySide2/QtSql/typesystem_sql.xml +++ b/sources/pyside2/PySide2/QtSql/typesystem_sql.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml b/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml index 7d11970e7..3cd130815 100644 --- a/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml +++ b/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtTest/typesystem_test.xml b/sources/pyside2/PySide2/QtTest/typesystem_test.xml index ae5e08949..919e7634a 100644 --- a/sources/pyside2/PySide2/QtTest/typesystem_test.xml +++ b/sources/pyside2/PySide2/QtTest/typesystem_test.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml b/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml index d5006de6f..d7327461a 100644 --- a/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml +++ b/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtUiTools/glue/plugins.h b/sources/pyside2/PySide2/QtUiTools/glue/plugins.h index d550c3fc6..d9c5c77aa 100644 --- a/sources/pyside2/PySide2/QtUiTools/glue/plugins.h +++ b/sources/pyside2/PySide2/QtUiTools/glue/plugins.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp b/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp index 9a5d23046..400122449 100644 --- a/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp +++ b/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml b/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml index f18b8e818..2dd981403 100644 --- a/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml +++ b/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml b/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml index 153a4da83..e24d6014a 100644 --- a/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml +++ b/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml b/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml index 5fb064ccb..a5b5d0f51 100644 --- a/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml +++ b/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml b/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml index 41c8afcfe..8ff8b7fc4 100644 --- a/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml +++ b/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml b/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml index 09b3917e3..98f4a148f 100644 --- a/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml +++ b/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml b/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml index 3f51bedbf..1597ecd07 100644 --- a/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml +++ b/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml b/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml index f528850e2..5d8786bf2 100644 --- a/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml +++ b/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp index 1419f5755..a95508cf2 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp index e1d2ffc4d..dfeda8cb8 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp index 68e991ce7..3c95b8035 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp index 15ddfb81a..69d3f76d0 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp index 1dd03a8fc..c8acd4b31 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in index bad39516c..fcea1140c 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml index 98ffb2af7..488f5081d 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml index 2dc29f815..512a95c5f 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml index d15ec8191..bff5a2978 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml index d15ec8191..bff5a2978 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml b/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml index 3aa375ea9..c625d0d3c 100644 --- a/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml +++ b/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml b/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml index 23d578ca6..6eaab6c98 100644 --- a/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml +++ b/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml @@ -6,7 +6,7 @@ ** Copyright (C) 2016 Mateusz Skowroński ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtXml/typesystem_xml.xml b/sources/pyside2/PySide2/QtXml/typesystem_xml.xml index d5b2ec974..e05d48cd3 100644 --- a/sources/pyside2/PySide2/QtXml/typesystem_xml.xml +++ b/sources/pyside2/PySide2/QtXml/typesystem_xml.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml b/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml index c597b41d1..1b29e8305 100644 --- a/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml +++ b/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/global.h.in b/sources/pyside2/PySide2/global.h.in index 60afc1744..7cb22c495 100644 --- a/sources/pyside2/PySide2/global.h.in +++ b/sources/pyside2/PySide2/global.h.in @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/licensecomment.txt b/sources/pyside2/PySide2/licensecomment.txt index 83535d9ad..aacf1237d 100644 --- a/sources/pyside2/PySide2/licensecomment.txt +++ b/sources/pyside2/PySide2/licensecomment.txt @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/pysideqtesttouch.h b/sources/pyside2/PySide2/pysideqtesttouch.h index 6993f0384..50888d70a 100644 --- a/sources/pyside2/PySide2/pysideqtesttouch.h +++ b/sources/pyside2/PySide2/pysideqtesttouch.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/pysidewtypes.h b/sources/pyside2/PySide2/pysidewtypes.h index 056819b8e..b1037720b 100644 --- a/sources/pyside2/PySide2/pysidewtypes.h +++ b/sources/pyside2/PySide2/pysidewtypes.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/qpytextobject.cpp b/sources/pyside2/PySide2/qpytextobject.cpp index 23d38902a..96214b8ba 100644 --- a/sources/pyside2/PySide2/qpytextobject.cpp +++ b/sources/pyside2/PySide2/qpytextobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/qpytextobject.h b/sources/pyside2/PySide2/qpytextobject.h index 1c0383e3c..3753e5de5 100644 --- a/sources/pyside2/PySide2/qpytextobject.h +++ b/sources/pyside2/PySide2/qpytextobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/support/__init__.py b/sources/pyside2/PySide2/support/__init__.py index 6a6d267b6..a1a44c802 100644 --- a/sources/pyside2/PySide2/support/__init__.py +++ b/sources/pyside2/PySide2/support/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/__init__.py b/sources/pyside2/PySide2/support/signature/__init__.py index 12083df53..a1879a10a 100644 --- a/sources/pyside2/PySide2/support/signature/__init__.py +++ b/sources/pyside2/PySide2/support/signature/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/backport_inspect.py b/sources/pyside2/PySide2/support/signature/backport_inspect.py index 6b8e8d026..6048cb5cd 100644 --- a/sources/pyside2/PySide2/support/signature/backport_inspect.py +++ b/sources/pyside2/PySide2/support/signature/backport_inspect.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/fix-complaints.py b/sources/pyside2/PySide2/support/signature/fix-complaints.py index 8cbe90a2a..f4015a1ee 100644 --- a/sources/pyside2/PySide2/support/signature/fix-complaints.py +++ b/sources/pyside2/PySide2/support/signature/fix-complaints.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/inspect.py b/sources/pyside2/PySide2/support/signature/inspect.py index cae96bc16..17165a993 100644 --- a/sources/pyside2/PySide2/support/signature/inspect.py +++ b/sources/pyside2/PySide2/support/signature/inspect.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/loader.py b/sources/pyside2/PySide2/support/signature/loader.py index b734436e8..fa1d039d3 100644 --- a/sources/pyside2/PySide2/support/signature/loader.py +++ b/sources/pyside2/PySide2/support/signature/loader.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/mapping.py b/sources/pyside2/PySide2/support/signature/mapping.py index 2bedbb1bf..c0cd995e3 100644 --- a/sources/pyside2/PySide2/support/signature/mapping.py +++ b/sources/pyside2/PySide2/support/signature/mapping.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/parser.py b/sources/pyside2/PySide2/support/signature/parser.py index b067f245b..af9efddf1 100644 --- a/sources/pyside2/PySide2/support/signature/parser.py +++ b/sources/pyside2/PySide2/support/signature/parser.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/typing27.py b/sources/pyside2/PySide2/support/signature/typing27.py index a8312b3c2..3fe2becfa 100644 --- a/sources/pyside2/PySide2/support/signature/typing27.py +++ b/sources/pyside2/PySide2/support/signature/typing27.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/typing36.py b/sources/pyside2/PySide2/support/signature/typing36.py index bdc256b54..ab629c89e 100644 --- a/sources/pyside2/PySide2/support/signature/typing36.py +++ b/sources/pyside2/PySide2/support/signature/typing36.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/typesystem_templates.xml b/sources/pyside2/PySide2/typesystem_templates.xml index 11a384263..492e9e928 100644 --- a/sources/pyside2/PySide2/typesystem_templates.xml +++ b/sources/pyside2/PySide2/typesystem_templates.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp index 1422a8076..cce8c5218 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp index 42d4692ba..c2da43219 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp index 3a6ec771c..2c3013bc0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp index df5430bb0..bdb9ab849 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp index 796f9b2df..370992d7a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp index 9ea023f24..8781cf242 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp index e24a0679b..37195ed90 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp index c50eda786..2e16437b4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp index cd50455ce..47912e896 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h index b4bedefe6..8aa3ba175 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp index 448598bf3..7da4c818a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h index bc05bba21..823b357dd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp index dfa4af26d..0bc42ef36 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp index 2e4c967e2..c220078b7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h index 8543bae80..a50b236bb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp index 7aef200bb..1f7536c25 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc index 5a9a2f49d..d2483795b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp index 19de66485..ace6c9a1d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp index f9f12b147..0dc2631de 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp index 39afcc8f5..f1bf2bbc2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp index 2971f244b..c7c03495a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp index cf6bc2894..a56b25f8d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp index ce3f07148..7b489be9a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp index 72f998f43..61c68be15 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp index 7bcf8437f..f067b86af 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp index c18c98a71..6e6a770a8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp index e813afd58..6c10284bf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp index fbfe131ee..ad0d1476c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp index c422d5a9a..6fa26fc53 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp index 5dcc8c991..e3122cbc0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp index 73b713536..6f28680f1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp index 6b39702ac..fda25cb9d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp index 6a6d019a1..7c464b5bf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp index dff0b2c7c..d1858e2df 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp index 85019de30..45b2010cf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp index 9d37d9f95..42aa1520d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp index ea225684c..6d77e8668 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp index 5a53e7ac6..367e5fdfb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp index 0ad210141..3573b4870 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp index 5542c796e..55d26be51 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp index 9ddf2d602..d32230376 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp index 067b9a375..dff94583a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp index d9efd55f4..254789e2d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp index bacee95ff..f1f6b7922 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp index a9480e381..71d49b742 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp index e5f664cba..e422f2141 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp index 71e264832..af2cd6ac1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp index 62c9ae327..406c2a8b7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp index a2e6547f2..8eac050ac 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp index bfe6d1d1a..3d41b20c3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp index 247d10806..760dc8a58 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp index b34bdd206..9c1844944 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp index 6fe5807b9..464677eb5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp index 3d19de0fe..df496fea2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp index d61013239..353a45b6e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp index 8632c8b4f..6095c5707 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp index b83164d56..b11555f32 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp index a5e3952a8..fc74ffa37 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp index 015aadfaf..05444f997 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp index 26cfd6a0e..216ab4b03 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp index c9c702ae4..263a87cb1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp index 5ac95c9c0..4b3dd159b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp index 03d953cd4..434415739 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp index 7328a41c0..6546954b1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp index f3a230894..6930dd2b9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp index b742a51b3..c93da2b43 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp index 41dc8f848..cb84e0f3e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp index de65c5e6b..29ed62c41 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp index 4a8de1a86..341bd61e4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp index da0b4dad8..aa4f14a3d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp index 3b11b62f0..796bb8a81 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp index 372cb0d5d..f2e2ee661 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp index 1154d11a3..46538d944 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp index 7afefee7c..815896125 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp index 7897e141c..50c5877b4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp index 17ca6bd8d..581a036a9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp index a82785b7f..00eb1322b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp index d11a1b4bf..3baab7e48 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp index 591712c1e..24885fcd3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp index 95285f91f..1414b37bb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp index aa1cc23b6..f30259689 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp index f3a472a1c..aa617701a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp index d32fe6223..1ea4f5c46 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp index be4586376..1746335f4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp index 0112271b5..17ab16290 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp index 7a04f492a..a6902c523 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp index 201138e90..103145763 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp index 67e588075..b7361f61c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp index 77e7c0149..17a1b97d1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp index 518af80ce..7f372c500 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp index 0538cbaef..c22c1b7ea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp index 4cf7d8411..d9db310b8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp index 5a1c7bb7d..24fbb67c6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp index f23f6e176..397051e02 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp index 92af1464e..cf97f52c5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp index 37c6a1baa..1c7d8a043 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp index 3a3083697..68d7ea37f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp index bf760794e..fe52fb4ea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp index 3e5561329..ad0c5d189 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp index 03fec9076..0e15eee02 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp index 7acb620cb..1b064e77d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp index 6952941f9..9f5b8632f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp index 95b9a866c..973168218 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp index 9408be93c..e3323d30f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp index ba0e31c71..f14bd41ec 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp index 22efc1979..03f9a5325 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp index 5ab02333f..7cd9a2d15 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp index 47cb1d9d1..9e3131822 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp index cd0ee658c..ec81a17be 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp index cc5130949..cd6b06a17 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp index 5828a9624..263f1820a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp index 3ea9bb495..3f77270fe 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp index c0cfeef50..d1a20a5d5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp index 47369ee8b..df34f285b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp index a52c02c3b..b7d9438d8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp index 629f74936..e716565bf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp index 3e07cb3c0..826ed8751 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp index 7b5e9bad9..8575b6f08 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp index 5b6488ff6..c3289c16e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp index b954f3cd3..71f70aa0c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp index ca5842070..9d908bd00 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp index 98ff665ea..e11db229b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp index aef402ffa..80533dc4d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp index f44597c40..18141bf61 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp index 57f8300dd..a0884e3ce 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp index 15a7f7d04..67e24dfb9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp index 0d0807971..74644acc9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp index 5ebbefcec..56157ac0f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp index 7f063971d..671340e70 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp index 301f19499..12edf4cd3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp index 76f08b156..7b1a17777 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp index dd063e1f9..f561147f0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp index bdbdbad73..13175d1d5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp index a4354c671..792fe3db7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp index 0e221a1fe..2d35ee8d6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp index ef89f1d7f..234b1a4c3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp index 05300479a..804e64c7d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp index 4e3ec2f99..56951fecd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp index 626436fea..4408db0d7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp index 2f01083ca..aa33f288f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp index 4010efc95..60b5388cc 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp index b4622a8a9..93ed56c14 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp index 9d1196790..628ef1761 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp index b366dc2ab..2fb4d6b7e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp index d84336a89..e61b55e65 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp index b2b49698e..b066e87e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp index c2d6f4c18..3df91f48b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp index c11b58961..1c495ed32 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp index 04a9d9df4..6d7652818 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp index 951f9ec01..a20da33ca 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp index 0d2c80015..3bf2182af 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp index 9418f5ea5..31e1aed08 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp index dfc7e6902..0135a0a11 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp index f5fcc8ca3..0a7710b41 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp index e3e974fe2..946b2f99e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp index dd3d0e3b7..e79e66b97 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp index 8a689fc74..2881509b4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp index 3ff390b35..eb952a709 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp index 8df536bf2..a275225fb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp index 6d6ec7ba5..c25eadb33 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp index b6cf932d8..fe4a15d76 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp index cf9382dbc..07bdbd35d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp index fef8b8e34..f55a6de9e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp index f26999148..8a69ff479 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp index 26177869a..fca1f74c1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp index 31216fd7f..156eeff5e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp index 962733aa6..c9265450f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp index 53d0de06e..2ad600a99 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp index 951446fbb..6720cc51f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp index e6de7bf36..c0a3ed6d0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp index 87e773863..a19633722 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp index 681534045..665fad3d8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp index f1e271eaf..23be6b87f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp index f7815a631..af5027706 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp index 02c4e5032..5ac493bb8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp index d1ecc6754..306951c39 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp index 234502ec6..f84857917 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp index 0d95b3bbb..5df2014e7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp index 865b8ce50..e8cffbbcd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp index 64c69aee9..913b7f9f1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp index 6a087c3a8..b8f4aee35 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp index 20c1d7431..41df4a487 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp index 2633705df..213b3616a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp index fbc97b416..13cdbde22 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp index 86ac79c8f..eaafdcc9f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp index 41df2baea..687fb6072 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp index 393c9cd4e..e88ab788b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp index 2f27b446e..f8311d40e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp index c8041d80e..376b5ec0c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp index a2a780b91..45a6214c1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp index 9b899385d..e983e9151 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp index 632011812..9d13b9072 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp index 89c68465f..f02c8e1da 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp index 9911add09..f2abec88e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp index b2bdd454a..dcb44f94c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp index 9ffac81b8..e392ff227 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp index 65bbc41e9..8d48fe0f8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp index b037221bb..dc593938d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp index 33f639c84..99dac1f43 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp index 6adda1721..7b3aedbc2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp index e8df709c8..aea3f2754 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp index 3007057d1..6f037a9af 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp index 5df7d059b..630b694e8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp index 60bd6b9c6..18c103814 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp index b29136eea..d1fe77b96 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp index 733d5c2c7..12324c099 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp index e8df709c8..aea3f2754 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp index 34554d99e..3d107ba24 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp index 7bd0e9a08..24f6c1f90 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp index 0896b7590..a167a8071 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp index a03482d56..949805e59 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp index d81e7fb0b..c14da9520 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp index 291f839b1..e5905b509 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp index 2b59b22b0..5466b03fd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp index 2bdf62cde..9f96e9d0a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp index d81e7fb0b..c14da9520 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp index cec019625..a7d926016 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp index 2093c8e5a..0994531de 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp index ba832d63d..13fb70b47 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp index 7282bb545..9fd6c8bae 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp index fb39b23ea..2d9a80a63 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp index 6a7045f57..c46d36b7d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp index 31bd49818..1f7785cc7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp index d908e315e..82d489675 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp index 808a9f35f..46f48dc4b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp index 3d7b2a372..f621d6065 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp index c0c14512f..9676610d1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h index 89e324cb3..bbd1fadf3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp index abdfdf5a1..f1fb80200 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp index f21ec7c89..a6c84fa5a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp index 42f2d81a7..83b3c4c7c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h index b0140d24f..8e2b19a88 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp index 98ed0b868..05400fd11 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp index b89c5abd0..c0014e183 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp index f2e861f40..a5e66b59a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h index b9cf4492e..2d250a0a1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp index 98ed0b868..05400fd11 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp index eef9acb66..91bd9118e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h index 5760f24b2..f5e5e83fe 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp index 98ed0b868..05400fd11 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp index ec66252f5..9baf84bb4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h index a6b332287..c23483e87 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp index 98ed0b868..05400fd11 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp index 58fb5653b..2d42b17b4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp index 97c2aacd1..afbe0025b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp index 6e1753611..616fdcb29 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h index 29163b607..518efcbf6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp index 4d31bf612..14ccb81d3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h index 0e20d53f1..8f11a1a9e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp index b25cc33b9..2608af05f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp index 4dc3b8bfb..adba96728 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h index e07519341..002d568b7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp index 45b08af63..0730119b5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h index ffbe5ce35..d2fd8fcb1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp index e0a65868b..b53da88fa 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp index ed5fbd39c..b5acd8864 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h index 8eae5e588..7616e018c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp index 954feb402..c2ee07440 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp index 6916f51b4..30723f825 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp index 023aa1522..e1a8394e2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h index 8eae5e588..7616e018c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp index e0a65868b..b53da88fa 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp index 932d8d436..46a9bf47e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h index 6e0e30ee0..e18a337df 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp index 808aaa762..d0eae7d11 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h index 55ce51d6d..72b1c34f2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp index 6fa7e00cb..468d6af75 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp index e3dc8ef7e..28d782de7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp index 79950ded7..6d11c5820 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h index 9a50889ed..e2b8694df 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp index 80eac22d4..8941fc90a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp index e52117f84..6728c77f6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp index 4aff915fe..4003f2b3c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp index e1b266df5..e267d0773 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp index 027bfdc5d..e65110735 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp index 9e3fbe28e..e78aac3bd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp index be748892e..9d0b3bbf2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h index 46aa84eb6..25631a36c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp index e03c67519..d628aeed8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp index 4e60b64ef..532fd290f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp index f8bbe5ede..a4b62a39c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h index 7f7ef891e..a2996eab4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp index 5437a484f..1df450169 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp index 55f8def35..077096107 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h index 886e77852..5d0a6e500 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp index 46e58e8da..6474f44fa 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp index d98d91f39..d1de11947 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp index 615d26aee..47085f91d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp index c0512f538..1b1eaa443 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp index e7dd80fe9..b7aed8bf5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp index 5098ac38f..77e225dbc 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h index 859ef90a7..79bd5ffa9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h index 2bfe4ced6..2bce95658 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h index 60834c8e5..2e057edd2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp index 84752a4fd..d74655c8e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp index 50ba15020..5504e12ef 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h index 0c0239046..4efb95b3e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp index a2a341bcb..bde6ba824 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h index 4a78426de..4153be6b0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp index 35af752ae..d6b0f422c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h index c9949adf4..e1c984c2d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp index 325f1b317..9dd6fe5bf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp index f7a0d22bf..02a93a5fb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp index 1b247884d..90d8109ae 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp index 8073744a3..d4d09ca2d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp index da90be7e6..c57947531 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp index 6d17518fb..9fe366a0f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h index af4fcb202..ce5ccdb2b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h index 3d6b27970..b66805c49 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp index a46954197..d0a33a830 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp index 28c6cda92..fa42d611c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp index 46e919112..cf222abc7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h index 2a6352058..58c496dfd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp index 3272b742c..d5bc353d2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp index 393ab5a70..076e372eb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp index 990351121..b2f0ecf12 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp index 7d5222182..c9850a86e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h index 36e766114..556705fc3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp index 5d42297d3..a3f56e3de 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp index 553e1d726..e83100df4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp index fdf135f45..8611fb960 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h index 388001d5f..701d0ee81 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp index 43f01f84a..b007ee4d4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp index ce32d21d3..c3163cd06 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp index 8a1751fa3..f815f44af 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp index de61bd13c..4ab2319ae 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp index e4ab7c75c..aff8c18c5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp index 75c1fbd99..506abc22e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp index 99f8896b3..4cad6853a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp index dc459c8b8..015bd2a8b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp index 51f3f59dd..37b2bad29 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp index 02bd2441a..bec416dd4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp index db5d00fbf..cc8c40ae8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp index d8d2c9897..bac5ecc98 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp index b646ceaff..d14a96ae3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp index ce83d0daa..bde944a85 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h index dbcd38211..7424e0a2c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp index f26f42eca..00af59652 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h index eddbe0ab8..bc7afcdb8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp index d2ea654d8..155712e19 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h index cde8c5800..6b78e51a8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp index 9927e4594..e1c3f288d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h index 936f30856..c279e07d5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h index 215443270..a44cf0357 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp index 806f3ce9b..2067958bb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h index 79ed14699..eb9c8836c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp index 659cfbb98..c8fce42df 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h index 344a429f0..60fea7d09 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm index 36d6927ee..89dcb2303 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h index 68ebab9e2..5a2a3dad9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp index 68ebab9e2..5a2a3dad9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp index 68ebab9e2..5a2a3dad9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h index 68ebab9e2..5a2a3dad9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp index cca4a000e..24107069f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h index 68ebab9e2..5a2a3dad9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp index 286b53a30..2de9fc9b8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp index fa6246e98..304ce096d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h index fe708a150..115cd5883 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp index e1e8f4310..a3e8b950a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp index 8236ec6c5..4ca6a31f7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp index 2c5496b4c..ba2803a46 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h index f2436b493..d13d6eda9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp index 4ddabd59e..cd9f76b5d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h index 8274b8f7b..6b64ccec9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp index d951c9465..435cb9f6f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp index 1205cb928..0e831d823 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp index cb1888da8..4be852c82 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp index 4d1a8dda8..665fab01b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h index 79e9665ec..1956dd7d6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp index 6dd6c8934..f9126a5fb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp index 18b24aa15..31acb937c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp index 1009119f7..007efdd53 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp index f43744ed7..f8b6496f8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp index 1c321682c..0e1e8e68d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp index d62bbdbcf..d94ecaee3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp index f4ca91d2a..a70ebacc1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp index 5f7420acc..6dbbe02d7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp index 9ea182d6d..ac8258182 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp index 61ad18a64..dbeec6ac2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp index c362b92f6..c30a0bcb2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp index d9d398e78..cd8c33800 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h index 42ac2740d..8ac610bd1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp index ad76da6b8..1268c6792 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h index e8e06d1be..09a6e916e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp index 52928b835..7a1805a6a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h index fa35433c8..3c364e509 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp index cdc2736b5..64e0b6ce3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h index b5507ad9d..c3828e919 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp index cfd07ca6c..fdd4bddfd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h index d639bb17f..59b56953d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp index 373a17ea9..83d35c9e8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h index 55d8e2399..4173b9f33 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp index 0243dc528..2439b4c50 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h index b96243b3f..32da31bd7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp index 7b10543eb..d13b2d1b8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h index 9d02df605..4b1df74e7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp index 64b4f0a16..05078d6d5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h index 30a6ede95..5cdf5fef4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp index 08343ac18..f43a178e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp index 97e6ce164..4149a9fac 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h index 30a6ede95..5cdf5fef4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp index 45f1788c1..396486dd1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp index 4406c8298..5ed3f826a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp index d063540e7..4dd35dea4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h index ebc597fcf..411dc55ab 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp index 3b45042cf..368be0126 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp index 2ac44fb63..08885f56c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp index 74299e228..0e743b860 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp index 70b136e9c..cae3b24a3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h index 62c38ca0a..2c409a2bf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp index b94b2cea9..c4a67e1cf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp index 55fd34b23..830403e87 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h index cf2fdccff..21d86d73a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp index b966d1eab..8d927f5a7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp index 103680a7f..5a4974e3f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp index f8e0b07b9..6b3af2042 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp index 1ec0652e9..39923a6cb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp index e3a24968e..8b6c5013b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp index 48588d081..494666a20 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h index 886e77852..5d0a6e500 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp index 2d86dd951..cb7518193 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h index 63f566384..d0b33039e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp index 49597ecc3..ae184d2ea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp index e88a5c032..8c2963889 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp index 3f42a50d3..b24933ac6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h index 90c06712f..a0a8a5cb4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp index 8d7109b9a..d35eee152 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp index f3cc73327..2c1da9e9a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h index ad1c76c84..7f569a575 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp index 65eabb600..3144383e3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h index 4e10f1f62..f368d74c1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp index 7eaef2877..9a4eaff71 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp index 531660469..3a0a09c93 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp index 942db372a..8d1360cd9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h index 97209ff33..6507d1015 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp index 3f36468da..ece976f80 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp index c0adef6e7..af585a571 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h index 886e77852..5d0a6e500 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp index efe8a06cd..410dcdbe7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h index a56e3b83c..e8446b27b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp index 7fa593642..df498d364 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp index 437d3a674..5e753921d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h index 6a0930f6b..8495d53e6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp index 75c691503..44d17f0be 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h index 2d04faf13..964455bff 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp index dfc9669ea..b80e8e1bb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp index 6f18c7786..d85469638 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h index 1d3ec1144..9b1de5771 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp index f16891533..ae461f5ec 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp index 3ca90077e..e9b3fde21 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp index 63446a78a..a9a27d896 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp index 18699c7e9..3364548cb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h index 1022e56b3..b0373bdb1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp index d92a03335..82e6007fe 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp index dd2190242..abd1c0419 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp index 7f7eec71b..c8e96850d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp index a63496f21..f9dfdf328 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h index dcf91e389..b3e9efb82 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp index 0b004b6b3..31a07b6ed 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp index 7db78a159..c5bac4640 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp index 404a678d2..0cd5b4ac0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp index f6ba623fb..3c2349cea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp index 5a5107824..20446b3d7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h index 7ec5194e0..60d171382 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp index d16dffc0c..335e8c163 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h index e0c559a6b..61d6df6a9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp index f6ba623fb..3c2349cea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp index a0db618cc..0947a6600 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h index 7ec5194e0..60d171382 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp index b021dffa6..99acdfdb1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h index a47e34cc8..9cfd82736 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp index 776550300..e232475f3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp index ddac007c6..7578aab9d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp index 756d05488..e6b16d07b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp index 07ced234f..136fe0163 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp index 6c675daf4..3b34706c1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp index fecbf0f0a..b35972a48 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h index eff212a4a..89bece20e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp index 4a6cd5d5c..64d868b40 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h index 2a0f33322..05f28609e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp index 2eda7e7f8..d2c438bdc 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp index e69e18d4d..ebe75b0c7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h index 7f8f86df9..2bb358e5b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp index 34ec55125..ff0788351 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp index 25718f485..8d4bc9f13 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp index f6ba623fb..3c2349cea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp index 45389626d..90d127ec3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h index 4d8dab676..9e57c708c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp index f6ba623fb..3c2349cea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp index d9707f30c..670ccf928 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h index cfbc1d0c4..5b6f42a91 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp index f6ba623fb..3c2349cea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp index a8f8d1b6b..2d949517d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h index 133dd5973..527a6b174 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp index f6ba623fb..3c2349cea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp index bde20edda..4777ca42e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h index 311fb923a..a8fff0788 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp index 9ebc95f09..5621b4b8a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp index dedc06e86..2cb9f0bb5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h index 15671417b..7744dceff 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp index 3f6640aec..4117aa0ff 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h index 6cfab3aa0..3a65a4b12 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp index 640575050..24bb27a78 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp index 3ad7b4785..050bcf947 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp index 6a7f042bd..bf410568d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h index 01f03ee62..57642974d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp index 70be14a03..157e93068 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp index c13be4b95..98167c8d4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp index 784f4df1a..f75181741 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp index d89d230c7..4e7505f50 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp index 48588d081..494666a20 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h index 886e77852..5d0a6e500 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp index 0bd7fbfda..1e2aed329 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h index 032412d40..c45338ed8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp index 0a416de58..848f4cce0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp index be575f53f..bb97444c6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp index 70f073783..854756228 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp index 660ced865..616ac5c9f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp index 751b326c3..9d874ca4f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp index f4e66193e..1a6cb8118 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp index 4d553de4b..32fb54c48 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp index 06e7b3db3..18cd3fbef 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp index 4c2d26d7b..978b47e40 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h index 453b1e4c3..424eefd2b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp index db8a62732..6ed8fd932 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp index fb62dbecf..232b9556b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h index 9490a1a3e..af8e7c48d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py b/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py index a294b6f20..e5da1aa6c 100755 --- a/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py +++ b/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the documentation of PySide2. +## This file is part of the documentation of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py b/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py index c4b9ce13e..811d47d64 100755 --- a/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py +++ b/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the documentation of PySide2. +## This file is part of the documentation of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp index 822fded38..57be8dcb9 100644 --- a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp +++ b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml index 094b81f2e..3c2b7fac1 100644 --- a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml +++ b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp b/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp index 18612e4ba..5af32556b 100644 --- a/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp +++ b/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp b/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp index ed305196a..494818542 100644 --- a/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp +++ b/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp b/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp index 2244c2275..fc219f83d 100644 --- a/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp +++ b/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp b/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp index 73e1a40b3..71d210947 100644 --- a/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml index fc6063e40..d66c4be84 100644 --- a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml +++ b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp index 4d1aeb74f..4a5f361d5 100644 --- a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp +++ b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp b/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp index 4732b7773..9a0d416e6 100644 --- a/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp +++ b/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp b/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp index 77eaf55e6..802a65ef6 100644 --- a/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp +++ b/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp index d22a39151..ae3bb50b1 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp index c6fd2894b..e8365a4e1 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp index 33cb540b4..0c863f6ec 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp index ed23e83eb..c83fa0123 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp index 33cb540b4..0c863f6ec 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp index fe52f0fbb..a1b12b152 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml b/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml index df2dcbd94..9641e65c6 100644 --- a/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml +++ b/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp b/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp index 8df1d73b2..114249296 100644 --- a/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp +++ b/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h b/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h index 0c9b7c06e..0f1c4998f 100644 --- a/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h +++ b/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp b/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp index 9203e5ba3..179739926 100644 --- a/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp +++ b/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp b/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp index f0d1f2ac6..9d2b8e17b 100644 --- a/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp +++ b/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp b/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp index bf07fb73c..5cc0659a5 100644 --- a/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp +++ b/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of PySide2. +## This file is part of the examples of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp b/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp index b5963f418..8ace76183 100644 --- a/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp +++ b/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp b/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp index 4c8401022..c7b209b14 100644 --- a/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp +++ b/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp index 0f5495cd1..32315b51b 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp index 82b84076b..d7459a1b3 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp index ee6b2c213..ec8017240 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp index 673f045e8..f02d64a70 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp index 92df5730b..c864d4f1a 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/pyhtml2devhelp.py b/sources/pyside2/doc/pyhtml2devhelp.py index 29a37bfca..de188477e 100644 --- a/sources/pyside2/doc/pyhtml2devhelp.py +++ b/sources/pyside2/doc/pyhtml2devhelp.py @@ -6,7 +6,7 @@ ## Copyright (C) 2009 Matthias Klose ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the tools applications of PySide2. +## This file is part of the Qt for Python project tools. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml index b130b2864..27520cef4 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml index b419fb562..64d86d527 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml index 8f71901b7..18f256a05 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml index 3f91bc7cc..ac1ae7616 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml index 2de0d9422..0e0aef7e2 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml index 9f5cef44a..7e8257b25 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml index d0f3d7619..4d4f9f3c5 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml index 2de0d9422..0e0aef7e2 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml index 897c5bf3b..637e8ade7 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml index d10a2caa9..7ad4bd0bb 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml index 97f63c2e3..7392e3e37 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml index 2de0d9422..0e0aef7e2 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml index b9787da1e..a46ee74bb 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml index b241d0924..6053136c3 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml index a2b346724..82e3be38f 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml index 2cef1500f..6c793dbed 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml index 2d2000bc6..c00d5176d 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml index f1b972cc4..8f4c926c6 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of PySide2. +** This file is part of the examples of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/typesystem_doc.xml.in b/sources/pyside2/doc/typesystem_doc.xml.in index 78ccb5bc9..9ad5f82d7 100644 --- a/sources/pyside2/doc/typesystem_doc.xml.in +++ b/sources/pyside2/doc/typesystem_doc.xml.in @@ -4,7 +4,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of PySide2. +** This file is part of the documentation of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/destroylistener.cpp b/sources/pyside2/libpyside/destroylistener.cpp index c1d3afb89..1c047cb55 100644 --- a/sources/pyside2/libpyside/destroylistener.cpp +++ b/sources/pyside2/libpyside/destroylistener.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/destroylistener.h b/sources/pyside2/libpyside/destroylistener.h index c4dd28aec..370281c67 100644 --- a/sources/pyside2/libpyside/destroylistener.h +++ b/sources/pyside2/libpyside/destroylistener.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/dynamicqmetaobject.cpp b/sources/pyside2/libpyside/dynamicqmetaobject.cpp index 651ed70c1..df8a32173 100644 --- a/sources/pyside2/libpyside/dynamicqmetaobject.cpp +++ b/sources/pyside2/libpyside/dynamicqmetaobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/dynamicqmetaobject.h b/sources/pyside2/libpyside/dynamicqmetaobject.h index ac8f4644d..92153320b 100644 --- a/sources/pyside2/libpyside/dynamicqmetaobject.h +++ b/sources/pyside2/libpyside/dynamicqmetaobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/dynamicqmetaobject_p.h b/sources/pyside2/libpyside/dynamicqmetaobject_p.h index 202e87b08..1e756ab6f 100644 --- a/sources/pyside2/libpyside/dynamicqmetaobject_p.h +++ b/sources/pyside2/libpyside/dynamicqmetaobject_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiver.cpp b/sources/pyside2/libpyside/globalreceiver.cpp index 5e0aa0d66..4f1247489 100644 --- a/sources/pyside2/libpyside/globalreceiver.cpp +++ b/sources/pyside2/libpyside/globalreceiver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiver.h b/sources/pyside2/libpyside/globalreceiver.h index d1114465a..42ce6eb07 100644 --- a/sources/pyside2/libpyside/globalreceiver.h +++ b/sources/pyside2/libpyside/globalreceiver.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiverv2.cpp b/sources/pyside2/libpyside/globalreceiverv2.cpp index 9e9bccbaf..a7f86f561 100644 --- a/sources/pyside2/libpyside/globalreceiverv2.cpp +++ b/sources/pyside2/libpyside/globalreceiverv2.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiverv2.h b/sources/pyside2/libpyside/globalreceiverv2.h index 3ad9ba6b7..932fc478b 100644 --- a/sources/pyside2/libpyside/globalreceiverv2.h +++ b/sources/pyside2/libpyside/globalreceiverv2.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pyside.cpp b/sources/pyside2/libpyside/pyside.cpp index 51bbb22e1..6d7511d85 100644 --- a/sources/pyside2/libpyside/pyside.cpp +++ b/sources/pyside2/libpyside/pyside.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pyside.h b/sources/pyside2/libpyside/pyside.h index d36965d7b..bbd02b06d 100644 --- a/sources/pyside2/libpyside/pyside.h +++ b/sources/pyside2/libpyside/pyside.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideclassinfo.cpp b/sources/pyside2/libpyside/pysideclassinfo.cpp index a80ed9c54..df78d1411 100644 --- a/sources/pyside2/libpyside/pysideclassinfo.cpp +++ b/sources/pyside2/libpyside/pysideclassinfo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideclassinfo.h b/sources/pyside2/libpyside/pysideclassinfo.h index 9c92b3fcf..26d6de3e0 100644 --- a/sources/pyside2/libpyside/pysideclassinfo.h +++ b/sources/pyside2/libpyside/pysideclassinfo.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideclassinfo_p.h b/sources/pyside2/libpyside/pysideclassinfo_p.h index 3dbc0cd9a..c08a3b5d1 100644 --- a/sources/pyside2/libpyside/pysideclassinfo_p.h +++ b/sources/pyside2/libpyside/pysideclassinfo_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemacros.h b/sources/pyside2/libpyside/pysidemacros.h index df1ed6e8c..5a28cdd1c 100644 --- a/sources/pyside2/libpyside/pysidemacros.h +++ b/sources/pyside2/libpyside/pysidemacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemetafunction.cpp b/sources/pyside2/libpyside/pysidemetafunction.cpp index 039db513b..44e959fa8 100644 --- a/sources/pyside2/libpyside/pysidemetafunction.cpp +++ b/sources/pyside2/libpyside/pysidemetafunction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemetafunction.h b/sources/pyside2/libpyside/pysidemetafunction.h index 2be369407..e34116b14 100644 --- a/sources/pyside2/libpyside/pysidemetafunction.h +++ b/sources/pyside2/libpyside/pysidemetafunction.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemetafunction_p.h b/sources/pyside2/libpyside/pysidemetafunction_p.h index 979bbb120..41f6ac45c 100644 --- a/sources/pyside2/libpyside/pysidemetafunction_p.h +++ b/sources/pyside2/libpyside/pysidemetafunction_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideproperty.cpp b/sources/pyside2/libpyside/pysideproperty.cpp index 07b9dfae5..2146fff85 100644 --- a/sources/pyside2/libpyside/pysideproperty.cpp +++ b/sources/pyside2/libpyside/pysideproperty.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideproperty.h b/sources/pyside2/libpyside/pysideproperty.h index 9ac61dc23..2f0694bba 100644 --- a/sources/pyside2/libpyside/pysideproperty.h +++ b/sources/pyside2/libpyside/pysideproperty.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideproperty_p.h b/sources/pyside2/libpyside/pysideproperty_p.h index 95ed2a0f8..4eb3164e1 100644 --- a/sources/pyside2/libpyside/pysideproperty_p.h +++ b/sources/pyside2/libpyside/pysideproperty_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideqflags.cpp b/sources/pyside2/libpyside/pysideqflags.cpp index 380c67f61..7a1b3ee62 100644 --- a/sources/pyside2/libpyside/pysideqflags.cpp +++ b/sources/pyside2/libpyside/pysideqflags.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideqflags.h b/sources/pyside2/libpyside/pysideqflags.h index 500727eaf..7f05a75f8 100644 --- a/sources/pyside2/libpyside/pysideqflags.h +++ b/sources/pyside2/libpyside/pysideqflags.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidesignal.cpp b/sources/pyside2/libpyside/pysidesignal.cpp index a901d10af..f0e1f351c 100644 --- a/sources/pyside2/libpyside/pysidesignal.cpp +++ b/sources/pyside2/libpyside/pysidesignal.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidesignal.h b/sources/pyside2/libpyside/pysidesignal.h index ead62198c..73090750a 100644 --- a/sources/pyside2/libpyside/pysidesignal.h +++ b/sources/pyside2/libpyside/pysidesignal.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidesignal_p.h b/sources/pyside2/libpyside/pysidesignal_p.h index b692b96ad..61e041b8c 100644 --- a/sources/pyside2/libpyside/pysidesignal_p.h +++ b/sources/pyside2/libpyside/pysidesignal_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideslot.cpp b/sources/pyside2/libpyside/pysideslot.cpp index c562e41e2..ab105b5c5 100644 --- a/sources/pyside2/libpyside/pysideslot.cpp +++ b/sources/pyside2/libpyside/pysideslot.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideslot_p.h b/sources/pyside2/libpyside/pysideslot_p.h index 33e881c18..4409c4d7d 100644 --- a/sources/pyside2/libpyside/pysideslot_p.h +++ b/sources/pyside2/libpyside/pysideslot_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideweakref.cpp b/sources/pyside2/libpyside/pysideweakref.cpp index dfbf9e90c..d35867834 100644 --- a/sources/pyside2/libpyside/pysideweakref.cpp +++ b/sources/pyside2/libpyside/pysideweakref.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideweakref.h b/sources/pyside2/libpyside/pysideweakref.h index 7a7082345..29938a098 100644 --- a/sources/pyside2/libpyside/pysideweakref.h +++ b/sources/pyside2/libpyside/pysideweakref.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/signalmanager.cpp.in b/sources/pyside2/libpyside/signalmanager.cpp.in index ca176c693..5e9d4c5b7 100644 --- a/sources/pyside2/libpyside/signalmanager.cpp.in +++ b/sources/pyside2/libpyside/signalmanager.cpp.in @@ -4,7 +4,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/signalmanager.h b/sources/pyside2/libpyside/signalmanager.h index 6f2201ed0..6f0b798e3 100644 --- a/sources/pyside2/libpyside/signalmanager.h +++ b/sources/pyside2/libpyside/signalmanager.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidget.cpp b/sources/pyside2/plugins/customwidget.cpp index 771867796..87a264d0e 100644 --- a/sources/pyside2/plugins/customwidget.cpp +++ b/sources/pyside2/plugins/customwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidget.h b/sources/pyside2/plugins/customwidget.h index 1b854c69a..0126ee075 100644 --- a/sources/pyside2/plugins/customwidget.h +++ b/sources/pyside2/plugins/customwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidgets.cpp b/sources/pyside2/plugins/customwidgets.cpp index 01ef392b0..b285d6118 100644 --- a/sources/pyside2/plugins/customwidgets.cpp +++ b/sources/pyside2/plugins/customwidgets.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidgets.h b/sources/pyside2/plugins/customwidgets.h index a666f66dd..af6dd0a96 100644 --- a/sources/pyside2/plugins/customwidgets.h +++ b/sources/pyside2/plugins/customwidgets.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/pyside_version.py b/sources/pyside2/pyside_version.py index aacb7e0d9..24b06e0b3 100644 --- a/sources/pyside2/pyside_version.py +++ b/sources/pyside2/pyside_version.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py b/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py index 967886a14..a1b668ab6 100644 --- a/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py +++ b/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCharts/qcharts_test.py b/sources/pyside2/tests/QtCharts/qcharts_test.py index 1503b2e54..32da5ad4b 100644 --- a/sources/pyside2/tests/QtCharts/qcharts_test.py +++ b/sources/pyside2/tests/QtCharts/qcharts_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/blocking_signals_test.py b/sources/pyside2/tests/QtCore/blocking_signals_test.py index 64d5335aa..93db68ee1 100644 --- a/sources/pyside2/tests/QtCore/blocking_signals_test.py +++ b/sources/pyside2/tests/QtCore/blocking_signals_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1019.py b/sources/pyside2/tests/QtCore/bug_1019.py index 039c66dbd..4cd03aa23 100644 --- a/sources/pyside2/tests/QtCore/bug_1019.py +++ b/sources/pyside2/tests/QtCore/bug_1019.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1031.py b/sources/pyside2/tests/QtCore/bug_1031.py index bdc159f0d..21d19c5c8 100644 --- a/sources/pyside2/tests/QtCore/bug_1031.py +++ b/sources/pyside2/tests/QtCore/bug_1031.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1063.py b/sources/pyside2/tests/QtCore/bug_1063.py index 0ab09cc35..c4af4feb3 100644 --- a/sources/pyside2/tests/QtCore/bug_1063.py +++ b/sources/pyside2/tests/QtCore/bug_1063.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1069.py b/sources/pyside2/tests/QtCore/bug_1069.py index 90b66eaed..d046b2ac2 100644 --- a/sources/pyside2/tests/QtCore/bug_1069.py +++ b/sources/pyside2/tests/QtCore/bug_1069.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_278_test.py b/sources/pyside2/tests/QtCore/bug_278_test.py index 710971e63..f1c312068 100644 --- a/sources/pyside2/tests/QtCore/bug_278_test.py +++ b/sources/pyside2/tests/QtCore/bug_278_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_332.py b/sources/pyside2/tests/QtCore/bug_332.py index e863a93db..105075df9 100644 --- a/sources/pyside2/tests/QtCore/bug_332.py +++ b/sources/pyside2/tests/QtCore/bug_332.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_408.py b/sources/pyside2/tests/QtCore/bug_408.py index 5ccb25ee8..573043240 100644 --- a/sources/pyside2/tests/QtCore/bug_408.py +++ b/sources/pyside2/tests/QtCore/bug_408.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_428.py b/sources/pyside2/tests/QtCore/bug_428.py index d256fbfd8..c2915aa02 100644 --- a/sources/pyside2/tests/QtCore/bug_428.py +++ b/sources/pyside2/tests/QtCore/bug_428.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_462.py b/sources/pyside2/tests/QtCore/bug_462.py index 14576c09c..235e981be 100644 --- a/sources/pyside2/tests/QtCore/bug_462.py +++ b/sources/pyside2/tests/QtCore/bug_462.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_505.py b/sources/pyside2/tests/QtCore/bug_505.py index 115f40ab5..242c9616a 100644 --- a/sources/pyside2/tests/QtCore/bug_505.py +++ b/sources/pyside2/tests/QtCore/bug_505.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_515.py b/sources/pyside2/tests/QtCore/bug_515.py index 8d57589d3..847f41e6a 100644 --- a/sources/pyside2/tests/QtCore/bug_515.py +++ b/sources/pyside2/tests/QtCore/bug_515.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_606.py b/sources/pyside2/tests/QtCore/bug_606.py index 31aa000f0..9f4d185e3 100644 --- a/sources/pyside2/tests/QtCore/bug_606.py +++ b/sources/pyside2/tests/QtCore/bug_606.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_656.py b/sources/pyside2/tests/QtCore/bug_656.py index 5eb1f2ce4..fc28d2672 100644 --- a/sources/pyside2/tests/QtCore/bug_656.py +++ b/sources/pyside2/tests/QtCore/bug_656.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_686.py b/sources/pyside2/tests/QtCore/bug_686.py index a8c0973ee..5e25bd3e2 100644 --- a/sources/pyside2/tests/QtCore/bug_686.py +++ b/sources/pyside2/tests/QtCore/bug_686.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_699.py b/sources/pyside2/tests/QtCore/bug_699.py index 203daf60a..a655bfe84 100644 --- a/sources/pyside2/tests/QtCore/bug_699.py +++ b/sources/pyside2/tests/QtCore/bug_699.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_706.py b/sources/pyside2/tests/QtCore/bug_706.py index 58acfe3c0..c28fef7a7 100644 --- a/sources/pyside2/tests/QtCore/bug_706.py +++ b/sources/pyside2/tests/QtCore/bug_706.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_820.py b/sources/pyside2/tests/QtCore/bug_820.py index ef005fd55..d9cc3369a 100644 --- a/sources/pyside2/tests/QtCore/bug_820.py +++ b/sources/pyside2/tests/QtCore/bug_820.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_826.py b/sources/pyside2/tests/QtCore/bug_826.py index e94e4bdcf..85c508a61 100644 --- a/sources/pyside2/tests/QtCore/bug_826.py +++ b/sources/pyside2/tests/QtCore/bug_826.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_829.py b/sources/pyside2/tests/QtCore/bug_829.py index 730a2e9ed..32679f89b 100644 --- a/sources/pyside2/tests/QtCore/bug_829.py +++ b/sources/pyside2/tests/QtCore/bug_829.py @@ -4,7 +4,7 @@ ## Copyright (C) 2011 Thomas Perl ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_835.py b/sources/pyside2/tests/QtCore/bug_835.py index 05918b9b6..7f8c3d7b2 100644 --- a/sources/pyside2/tests/QtCore/bug_835.py +++ b/sources/pyside2/tests/QtCore/bug_835.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_920.py b/sources/pyside2/tests/QtCore/bug_920.py index 7ffaafc0d..88e9008a6 100644 --- a/sources/pyside2/tests/QtCore/bug_920.py +++ b/sources/pyside2/tests/QtCore/bug_920.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_927.py b/sources/pyside2/tests/QtCore/bug_927.py index 98126cf2c..32eae42e2 100644 --- a/sources/pyside2/tests/QtCore/bug_927.py +++ b/sources/pyside2/tests/QtCore/bug_927.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_931.py b/sources/pyside2/tests/QtCore/bug_931.py index aaec4d470..4bd64cf8a 100644 --- a/sources/pyside2/tests/QtCore/bug_931.py +++ b/sources/pyside2/tests/QtCore/bug_931.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_938.py b/sources/pyside2/tests/QtCore/bug_938.py index fdab35705..20fb8a843 100644 --- a/sources/pyside2/tests/QtCore/bug_938.py +++ b/sources/pyside2/tests/QtCore/bug_938.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_953.py b/sources/pyside2/tests/QtCore/bug_953.py index 03e87bb37..4a695d769 100644 --- a/sources/pyside2/tests/QtCore/bug_953.py +++ b/sources/pyside2/tests/QtCore/bug_953.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_987.py b/sources/pyside2/tests/QtCore/bug_987.py index 73704f86c..802ee4543 100644 --- a/sources/pyside2/tests/QtCore/bug_987.py +++ b/sources/pyside2/tests/QtCore/bug_987.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_994.py b/sources/pyside2/tests/QtCore/bug_994.py index 27171bb50..fda1c109a 100644 --- a/sources/pyside2/tests/QtCore/bug_994.py +++ b/sources/pyside2/tests/QtCore/bug_994.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py b/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py index 8d13b8cb2..6861b628d 100644 --- a/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py +++ b/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py b/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py index 15b6fead8..64eacb3cc 100644 --- a/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py +++ b/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/child_event_test.py b/sources/pyside2/tests/QtCore/child_event_test.py index 6b0ac211c..851e5b892 100644 --- a/sources/pyside2/tests/QtCore/child_event_test.py +++ b/sources/pyside2/tests/QtCore/child_event_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/classinfo_test.py b/sources/pyside2/tests/QtCore/classinfo_test.py index 1ff67e19a..81acc4739 100644 --- a/sources/pyside2/tests/QtCore/classinfo_test.py +++ b/sources/pyside2/tests/QtCore/classinfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/deepcopy_test.py b/sources/pyside2/tests/QtCore/deepcopy_test.py index 9d8117449..2be701f73 100644 --- a/sources/pyside2/tests/QtCore/deepcopy_test.py +++ b/sources/pyside2/tests/QtCore/deepcopy_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/deletelater_test.py b/sources/pyside2/tests/QtCore/deletelater_test.py index 7a2ee03cc..b01a9cca5 100644 --- a/sources/pyside2/tests/QtCore/deletelater_test.py +++ b/sources/pyside2/tests/QtCore/deletelater_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/destroysignal_test.py b/sources/pyside2/tests/QtCore/destroysignal_test.py index 0d48f283e..a25081a57 100644 --- a/sources/pyside2/tests/QtCore/destroysignal_test.py +++ b/sources/pyside2/tests/QtCore/destroysignal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/duck_punching_test.py b/sources/pyside2/tests/QtCore/duck_punching_test.py index c0ee4403d..e341b95e9 100644 --- a/sources/pyside2/tests/QtCore/duck_punching_test.py +++ b/sources/pyside2/tests/QtCore/duck_punching_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/hash_test.py b/sources/pyside2/tests/QtCore/hash_test.py index d1962bcf3..314e1a39f 100644 --- a/sources/pyside2/tests/QtCore/hash_test.py +++ b/sources/pyside2/tests/QtCore/hash_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/inherits_test.py b/sources/pyside2/tests/QtCore/inherits_test.py index 1fc620c9a..10dba0a51 100644 --- a/sources/pyside2/tests/QtCore/inherits_test.py +++ b/sources/pyside2/tests/QtCore/inherits_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/max_signals.py b/sources/pyside2/tests/QtCore/max_signals.py index c3bb7b303..cba3cb286 100644 --- a/sources/pyside2/tests/QtCore/max_signals.py +++ b/sources/pyside2/tests/QtCore/max_signals.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/missing_symbols_test.py b/sources/pyside2/tests/QtCore/missing_symbols_test.py index cc7b7a2b5..d54a0593b 100644 --- a/sources/pyside2/tests/QtCore/missing_symbols_test.py +++ b/sources/pyside2/tests/QtCore/missing_symbols_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/mockclass_test.py b/sources/pyside2/tests/QtCore/mockclass_test.py index ab794b0a2..2d0e93e94 100644 --- a/sources/pyside2/tests/QtCore/mockclass_test.py +++ b/sources/pyside2/tests/QtCore/mockclass_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/python_conversion.py b/sources/pyside2/tests/QtCore/python_conversion.py index 4e04c1630..c99ec2c95 100644 --- a/sources/pyside2/tests/QtCore/python_conversion.py +++ b/sources/pyside2/tests/QtCore/python_conversion.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qabs_test.py b/sources/pyside2/tests/QtCore/qabs_test.py index 8bfdf6452..e4c4e34b4 100644 --- a/sources/pyside2/tests/QtCore/qabs_test.py +++ b/sources/pyside2/tests/QtCore/qabs_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py b/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py index 0c9da65c5..ae1d97f8e 100644 --- a/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py +++ b/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qabstracttransition_test.py b/sources/pyside2/tests/QtCore/qabstracttransition_test.py index 84c6cff3c..23ebe57ae 100644 --- a/sources/pyside2/tests/QtCore/qabstracttransition_test.py +++ b/sources/pyside2/tests/QtCore/qabstracttransition_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qanimationgroup_test.py b/sources/pyside2/tests/QtCore/qanimationgroup_test.py index 85f4c27f8..fe5298d31 100644 --- a/sources/pyside2/tests/QtCore/qanimationgroup_test.py +++ b/sources/pyside2/tests/QtCore/qanimationgroup_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbitarray_test.py b/sources/pyside2/tests/QtCore/qbitarray_test.py index 4c165166e..5eb617a13 100644 --- a/sources/pyside2/tests/QtCore/qbitarray_test.py +++ b/sources/pyside2/tests/QtCore/qbitarray_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py b/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py index 18e732f8c..b5fa3459d 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py b/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py index 641eeb066..148435060 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py b/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py index 07b043df5..f4f19c9e5 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_operator_test.py b/sources/pyside2/tests/QtCore/qbytearray_operator_test.py index 73ba0cdb9..ca90f9d60 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_operator_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_test.py b/sources/pyside2/tests/QtCore/qbytearray_test.py index dce2b498c..c6008cf12 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qcollator_test.py b/sources/pyside2/tests/QtCore/qcollator_test.py index 0afb1ca8b..38ea73785 100644 --- a/sources/pyside2/tests/QtCore/qcollator_test.py +++ b/sources/pyside2/tests/QtCore/qcollator_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qcommandlineparser_test.py b/sources/pyside2/tests/QtCore/qcommandlineparser_test.py index d752dfafe..b30085502 100644 --- a/sources/pyside2/tests/QtCore/qcommandlineparser_test.py +++ b/sources/pyside2/tests/QtCore/qcommandlineparser_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py b/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py index 9be752cd8..35896a40f 100644 --- a/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py +++ b/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qdatastream_test.py b/sources/pyside2/tests/QtCore/qdatastream_test.py index 309d55208..2b86712b1 100644 --- a/sources/pyside2/tests/QtCore/qdatastream_test.py +++ b/sources/pyside2/tests/QtCore/qdatastream_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qdate_test.py b/sources/pyside2/tests/QtCore/qdate_test.py index 9554e41e0..6ddcf2a51 100644 --- a/sources/pyside2/tests/QtCore/qdate_test.py +++ b/sources/pyside2/tests/QtCore/qdate_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qdatetime_test.py b/sources/pyside2/tests/QtCore/qdatetime_test.py index 6df6edf70..a47142030 100644 --- a/sources/pyside2/tests/QtCore/qdatetime_test.py +++ b/sources/pyside2/tests/QtCore/qdatetime_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qeasingcurve_test.py b/sources/pyside2/tests/QtCore/qeasingcurve_test.py index e6d8683b3..5e3cfa8fe 100644 --- a/sources/pyside2/tests/QtCore/qeasingcurve_test.py +++ b/sources/pyside2/tests/QtCore/qeasingcurve_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qenum_test.py b/sources/pyside2/tests/QtCore/qenum_test.py index c0c734278..7dd65756c 100644 --- a/sources/pyside2/tests/QtCore/qenum_test.py +++ b/sources/pyside2/tests/QtCore/qenum_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qevent_test.py b/sources/pyside2/tests/QtCore/qevent_test.py index f0c028f76..b5dc3bc2c 100644 --- a/sources/pyside2/tests/QtCore/qevent_test.py +++ b/sources/pyside2/tests/QtCore/qevent_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qfile_test.py b/sources/pyside2/tests/QtCore/qfile_test.py index b58e9b6ab..cbabf4bc5 100644 --- a/sources/pyside2/tests/QtCore/qfile_test.py +++ b/sources/pyside2/tests/QtCore/qfile_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qfileinfo_test.py b/sources/pyside2/tests/QtCore/qfileinfo_test.py index 9d06aa955..709532e99 100644 --- a/sources/pyside2/tests/QtCore/qfileinfo_test.py +++ b/sources/pyside2/tests/QtCore/qfileinfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qfileread_test.py b/sources/pyside2/tests/QtCore/qfileread_test.py index 3912fe7e6..3df384f16 100644 --- a/sources/pyside2/tests/QtCore/qfileread_test.py +++ b/sources/pyside2/tests/QtCore/qfileread_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qflags_test.py b/sources/pyside2/tests/QtCore/qflags_test.py index 571e85a7f..04b5c2c24 100644 --- a/sources/pyside2/tests/QtCore/qflags_test.py +++ b/sources/pyside2/tests/QtCore/qflags_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qhandle_test.py b/sources/pyside2/tests/QtCore/qhandle_test.py index 8ceee3684..cdb901e12 100644 --- a/sources/pyside2/tests/QtCore/qhandle_test.py +++ b/sources/pyside2/tests/QtCore/qhandle_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py b/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py index 08580823e..ea75d3b15 100644 --- a/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py +++ b/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qlinef_test.py b/sources/pyside2/tests/QtCore/qlinef_test.py index 1388e5aac..5a6537c2d 100644 --- a/sources/pyside2/tests/QtCore/qlinef_test.py +++ b/sources/pyside2/tests/QtCore/qlinef_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qlocale_test.py b/sources/pyside2/tests/QtCore/qlocale_test.py index 63aa3293d..4b7579fbf 100644 --- a/sources/pyside2/tests/QtCore/qlocale_test.py +++ b/sources/pyside2/tests/QtCore/qlocale_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qmetaobject_test.py b/sources/pyside2/tests/QtCore/qmetaobject_test.py index 536fbe368..25ddc2ffa 100644 --- a/sources/pyside2/tests/QtCore/qmetaobject_test.py +++ b/sources/pyside2/tests/QtCore/qmetaobject_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qmimedatabase_test.py b/sources/pyside2/tests/QtCore/qmimedatabase_test.py index 4c3ae220d..f17af3630 100644 --- a/sources/pyside2/tests/QtCore/qmimedatabase_test.py +++ b/sources/pyside2/tests/QtCore/qmimedatabase_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py b/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py index e9732e3f7..28bd0d185 100644 --- a/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py +++ b/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py b/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py index 651233d86..d2d690953 100644 --- a/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py +++ b/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py b/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py index 50b748ca5..845ebd877 100644 --- a/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py +++ b/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_destructor.py b/sources/pyside2/tests/QtCore/qobject_destructor.py index f1ffcaea7..f8c725818 100644 --- a/sources/pyside2/tests/QtCore/qobject_destructor.py +++ b/sources/pyside2/tests/QtCore/qobject_destructor.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_event_filter_test.py b/sources/pyside2/tests/QtCore/qobject_event_filter_test.py index f90c377e4..ffbedb0d0 100644 --- a/sources/pyside2/tests/QtCore/qobject_event_filter_test.py +++ b/sources/pyside2/tests/QtCore/qobject_event_filter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_inherits_test.py b/sources/pyside2/tests/QtCore/qobject_inherits_test.py index 1d089776b..b94af0c11 100644 --- a/sources/pyside2/tests/QtCore/qobject_inherits_test.py +++ b/sources/pyside2/tests/QtCore/qobject_inherits_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py b/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py index e1782e18c..93ad915a6 100644 --- a/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py +++ b/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_parent_test.py b/sources/pyside2/tests/QtCore/qobject_parent_test.py index 5a8c438d2..043ab6cbf 100644 --- a/sources/pyside2/tests/QtCore/qobject_parent_test.py +++ b/sources/pyside2/tests/QtCore/qobject_parent_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_property_test.py b/sources/pyside2/tests/QtCore/qobject_property_test.py index 537a62471..477cf3f8d 100644 --- a/sources/pyside2/tests/QtCore/qobject_property_test.py +++ b/sources/pyside2/tests/QtCore/qobject_property_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py b/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py index 6aa68749b..c48b9fd7d 100644 --- a/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py +++ b/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_test.py b/sources/pyside2/tests/QtCore/qobject_test.py index bafa8a643..560777ecd 100644 --- a/sources/pyside2/tests/QtCore/qobject_test.py +++ b/sources/pyside2/tests/QtCore/qobject_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_timer_event_test.py b/sources/pyside2/tests/QtCore/qobject_timer_event_test.py index 75fb0902f..276917c2b 100644 --- a/sources/pyside2/tests/QtCore/qobject_timer_event_test.py +++ b/sources/pyside2/tests/QtCore/qobject_timer_event_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py b/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py index db52c1a49..e6fcbc9b0 100644 --- a/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py +++ b/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qpoint_test.py b/sources/pyside2/tests/QtCore/qpoint_test.py index 055a99659..05473aa76 100644 --- a/sources/pyside2/tests/QtCore/qpoint_test.py +++ b/sources/pyside2/tests/QtCore/qpoint_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qprocess_test.py b/sources/pyside2/tests/QtCore/qprocess_test.py index db006cae5..0d46320ec 100644 --- a/sources/pyside2/tests/QtCore/qprocess_test.py +++ b/sources/pyside2/tests/QtCore/qprocess_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qproperty_decorator.py b/sources/pyside2/tests/QtCore/qproperty_decorator.py index eacdecd37..9140781d5 100644 --- a/sources/pyside2/tests/QtCore/qproperty_decorator.py +++ b/sources/pyside2/tests/QtCore/qproperty_decorator.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qrect_test.py b/sources/pyside2/tests/QtCore/qrect_test.py index e9bc4d60d..e05495a00 100644 --- a/sources/pyside2/tests/QtCore/qrect_test.py +++ b/sources/pyside2/tests/QtCore/qrect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qregexp_test.py b/sources/pyside2/tests/QtCore/qregexp_test.py index 5a5db0c59..c0d04c006 100644 --- a/sources/pyside2/tests/QtCore/qregexp_test.py +++ b/sources/pyside2/tests/QtCore/qregexp_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qregularexpression_test.py b/sources/pyside2/tests/QtCore/qregularexpression_test.py index e11b9b61c..e00fb479d 100644 --- a/sources/pyside2/tests/QtCore/qregularexpression_test.py +++ b/sources/pyside2/tests/QtCore/qregularexpression_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qresource_test.py b/sources/pyside2/tests/QtCore/qresource_test.py index c7b28bfae..a3e9888cb 100644 --- a/sources/pyside2/tests/QtCore/qresource_test.py +++ b/sources/pyside2/tests/QtCore/qresource_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qsize_test.py b/sources/pyside2/tests/QtCore/qsize_test.py index 062232a54..4001135a8 100644 --- a/sources/pyside2/tests/QtCore/qsize_test.py +++ b/sources/pyside2/tests/QtCore/qsize_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qslot_object_test.py b/sources/pyside2/tests/QtCore/qslot_object_test.py index 3fc1d9013..0aa8af56c 100644 --- a/sources/pyside2/tests/QtCore/qslot_object_test.py +++ b/sources/pyside2/tests/QtCore/qslot_object_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qsrand_test.py b/sources/pyside2/tests/QtCore/qsrand_test.py index d7c6200bf..cc36c0e12 100644 --- a/sources/pyside2/tests/QtCore/qsrand_test.py +++ b/sources/pyside2/tests/QtCore/qsrand_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstandardpaths_test.py b/sources/pyside2/tests/QtCore/qstandardpaths_test.py index 35e25e1f6..4f15bdc20 100644 --- a/sources/pyside2/tests/QtCore/qstandardpaths_test.py +++ b/sources/pyside2/tests/QtCore/qstandardpaths_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstate_test.py b/sources/pyside2/tests/QtCore/qstate_test.py index f877d1ebb..20cc33650 100644 --- a/sources/pyside2/tests/QtCore/qstate_test.py +++ b/sources/pyside2/tests/QtCore/qstate_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstatemachine_test.py b/sources/pyside2/tests/QtCore/qstatemachine_test.py index 6cfa59e1d..21aeb09df 100644 --- a/sources/pyside2/tests/QtCore/qstatemachine_test.py +++ b/sources/pyside2/tests/QtCore/qstatemachine_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstorageinfo_test.py b/sources/pyside2/tests/QtCore/qstorageinfo_test.py index f1b90bb69..5252793e7 100644 --- a/sources/pyside2/tests/QtCore/qstorageinfo_test.py +++ b/sources/pyside2/tests/QtCore/qstorageinfo_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstring_test.py b/sources/pyside2/tests/QtCore/qstring_test.py index 7617d8bfc..3d848caa4 100644 --- a/sources/pyside2/tests/QtCore/qstring_test.py +++ b/sources/pyside2/tests/QtCore/qstring_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qsysinfo_test.py b/sources/pyside2/tests/QtCore/qsysinfo_test.py index 524728ef8..dda0f4be4 100644 --- a/sources/pyside2/tests/QtCore/qsysinfo_test.py +++ b/sources/pyside2/tests/QtCore/qsysinfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtext_codec_test.py b/sources/pyside2/tests/QtCore/qtext_codec_test.py index dbd812f91..8d3cbcdb9 100644 --- a/sources/pyside2/tests/QtCore/qtext_codec_test.py +++ b/sources/pyside2/tests/QtCore/qtext_codec_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtextstream_test.py b/sources/pyside2/tests/QtCore/qtextstream_test.py index b1c9a8f3e..7fa29dc5b 100644 --- a/sources/pyside2/tests/QtCore/qtextstream_test.py +++ b/sources/pyside2/tests/QtCore/qtextstream_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py b/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py index fc6f06416..1d928af0b 100644 --- a/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py +++ b/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qthread_signal_test.py b/sources/pyside2/tests/QtCore/qthread_signal_test.py index 744797de9..26685f9a6 100644 --- a/sources/pyside2/tests/QtCore/qthread_signal_test.py +++ b/sources/pyside2/tests/QtCore/qthread_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qthread_test.py b/sources/pyside2/tests/QtCore/qthread_test.py index cee32d65b..c42a472e7 100644 --- a/sources/pyside2/tests/QtCore/qthread_test.py +++ b/sources/pyside2/tests/QtCore/qthread_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py b/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py index d5e945385..e1a22c250 100644 --- a/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py +++ b/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtimer_timeout_test.py b/sources/pyside2/tests/QtCore/qtimer_timeout_test.py index a185a65f4..c3fd8e144 100644 --- a/sources/pyside2/tests/QtCore/qtimer_timeout_test.py +++ b/sources/pyside2/tests/QtCore/qtimer_timeout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtimezone_test.py b/sources/pyside2/tests/QtCore/qtimezone_test.py index e0bebdfbf..de4015917 100644 --- a/sources/pyside2/tests/QtCore/qtimezone_test.py +++ b/sources/pyside2/tests/QtCore/qtimezone_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtnamespace_test.py b/sources/pyside2/tests/QtCore/qtnamespace_test.py index f00e7bd91..732fe3841 100644 --- a/sources/pyside2/tests/QtCore/qtnamespace_test.py +++ b/sources/pyside2/tests/QtCore/qtnamespace_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qurl_test.py b/sources/pyside2/tests/QtCore/qurl_test.py index d5eb37d6e..92bf9a911 100644 --- a/sources/pyside2/tests/QtCore/qurl_test.py +++ b/sources/pyside2/tests/QtCore/qurl_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qurlquery_test.py b/sources/pyside2/tests/QtCore/qurlquery_test.py index e42856e6d..01abec4c1 100644 --- a/sources/pyside2/tests/QtCore/qurlquery_test.py +++ b/sources/pyside2/tests/QtCore/qurlquery_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/quuid_test.py b/sources/pyside2/tests/QtCore/quuid_test.py index 64183884a..f7a7dff99 100644 --- a/sources/pyside2/tests/QtCore/quuid_test.py +++ b/sources/pyside2/tests/QtCore/quuid_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qversionnumber_test.py b/sources/pyside2/tests/QtCore/qversionnumber_test.py index 929772fa6..f92e58625 100644 --- a/sources/pyside2/tests/QtCore/qversionnumber_test.py +++ b/sources/pyside2/tests/QtCore/qversionnumber_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/repr_test.py b/sources/pyside2/tests/QtCore/repr_test.py index 297960204..84750923a 100644 --- a/sources/pyside2/tests/QtCore/repr_test.py +++ b/sources/pyside2/tests/QtCore/repr_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/resources_mc.py b/sources/pyside2/tests/QtCore/resources_mc.py index 6c4bd7901..c35df5c41 100644 --- a/sources/pyside2/tests/QtCore/resources_mc.py +++ b/sources/pyside2/tests/QtCore/resources_mc.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py b/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py index b8b7e1cac..74ff82c10 100644 --- a/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py +++ b/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/staticMetaObject_test.py b/sources/pyside2/tests/QtCore/staticMetaObject_test.py index 88e87f1bb..cb3bfc42a 100644 --- a/sources/pyside2/tests/QtCore/staticMetaObject_test.py +++ b/sources/pyside2/tests/QtCore/staticMetaObject_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/static_method_test.py b/sources/pyside2/tests/QtCore/static_method_test.py index 736feaea4..c8a2ba208 100644 --- a/sources/pyside2/tests/QtCore/static_method_test.py +++ b/sources/pyside2/tests/QtCore/static_method_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/thread_signals_test.py b/sources/pyside2/tests/QtCore/thread_signals_test.py index 351c6f5d7..9ae1a26b9 100644 --- a/sources/pyside2/tests/QtCore/thread_signals_test.py +++ b/sources/pyside2/tests/QtCore/thread_signals_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/tr_noop_test.py b/sources/pyside2/tests/QtCore/tr_noop_test.py index 6c37cfe23..1b322c7ba 100644 --- a/sources/pyside2/tests/QtCore/tr_noop_test.py +++ b/sources/pyside2/tests/QtCore/tr_noop_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/translation_test.py b/sources/pyside2/tests/QtCore/translation_test.py index 338571271..991db3572 100644 --- a/sources/pyside2/tests/QtCore/translation_test.py +++ b/sources/pyside2/tests/QtCore/translation_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/unaryoperator_test.py b/sources/pyside2/tests/QtCore/unaryoperator_test.py index 7e9897b7f..0937d31a7 100644 --- a/sources/pyside2/tests/QtCore/unaryoperator_test.py +++ b/sources/pyside2/tests/QtCore/unaryoperator_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/unicode_test.py b/sources/pyside2/tests/QtCore/unicode_test.py index bf431c918..445dc0be2 100644 --- a/sources/pyside2/tests/QtCore/unicode_test.py +++ b/sources/pyside2/tests/QtCore/unicode_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/versioninfo_test.py b/sources/pyside2/tests/QtCore/versioninfo_test.py index 47e90bab1..091ebb70e 100644 --- a/sources/pyside2/tests/QtCore/versioninfo_test.py +++ b/sources/pyside2/tests/QtCore/versioninfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py b/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py index 7efd6122d..79dfca29d 100644 --- a/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py +++ b/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_1091.py b/sources/pyside2/tests/QtGui/bug_1091.py index 4fbdfe89f..ee988c562 100644 --- a/sources/pyside2/tests/QtGui/bug_1091.py +++ b/sources/pyside2/tests/QtGui/bug_1091.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_300_test.py b/sources/pyside2/tests/QtGui/bug_300_test.py index e8adca014..a8784c78f 100644 --- a/sources/pyside2/tests/QtGui/bug_300_test.py +++ b/sources/pyside2/tests/QtGui/bug_300_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_367.py b/sources/pyside2/tests/QtGui/bug_367.py index 375412b95..53d582ba9 100644 --- a/sources/pyside2/tests/QtGui/bug_367.py +++ b/sources/pyside2/tests/QtGui/bug_367.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_480.py b/sources/pyside2/tests/QtGui/bug_480.py index 75524841f..8a0fcf86b 100644 --- a/sources/pyside2/tests/QtGui/bug_480.py +++ b/sources/pyside2/tests/QtGui/bug_480.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_606.py b/sources/pyside2/tests/QtGui/bug_606.py index 99dc6e95d..e6b063e71 100644 --- a/sources/pyside2/tests/QtGui/bug_606.py +++ b/sources/pyside2/tests/QtGui/bug_606.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_617.py b/sources/pyside2/tests/QtGui/bug_617.py index 35239ef46..41fd911fb 100644 --- a/sources/pyside2/tests/QtGui/bug_617.py +++ b/sources/pyside2/tests/QtGui/bug_617.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_652.py b/sources/pyside2/tests/QtGui/bug_652.py index 4f7089659..996a04726 100644 --- a/sources/pyside2/tests/QtGui/bug_652.py +++ b/sources/pyside2/tests/QtGui/bug_652.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_660.py b/sources/pyside2/tests/QtGui/bug_660.py index 5dbb9e4e9..63afdc909 100644 --- a/sources/pyside2/tests/QtGui/bug_660.py +++ b/sources/pyside2/tests/QtGui/bug_660.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_716.py b/sources/pyside2/tests/QtGui/bug_716.py index 8bf07d6e2..9cc7984f3 100644 --- a/sources/pyside2/tests/QtGui/bug_716.py +++ b/sources/pyside2/tests/QtGui/bug_716.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_740.py b/sources/pyside2/tests/QtGui/bug_740.py index a77abc118..9dbd6fb25 100644 --- a/sources/pyside2/tests/QtGui/bug_740.py +++ b/sources/pyside2/tests/QtGui/bug_740.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_743.py b/sources/pyside2/tests/QtGui/bug_743.py index d2339921f..9e25af59a 100644 --- a/sources/pyside2/tests/QtGui/bug_743.py +++ b/sources/pyside2/tests/QtGui/bug_743.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_991.py b/sources/pyside2/tests/QtGui/bug_991.py index 034efb350..2169d65cf 100644 --- a/sources/pyside2/tests/QtGui/bug_991.py +++ b/sources/pyside2/tests/QtGui/bug_991.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py b/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py index b67cdf231..fed593a75 100644 --- a/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py +++ b/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py b/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py index b9007c8ca..a60e068b9 100644 --- a/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py +++ b/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/deepcopy_test.py b/sources/pyside2/tests/QtGui/deepcopy_test.py index 00df25cba..c14ebd9cb 100644 --- a/sources/pyside2/tests/QtGui/deepcopy_test.py +++ b/sources/pyside2/tests/QtGui/deepcopy_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py b/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py index a2a9e2e1a..2aba360be 100644 --- a/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py +++ b/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/pyside_reload_test.py b/sources/pyside2/tests/QtGui/pyside_reload_test.py index 587e4cebc..68d9b9428 100644 --- a/sources/pyside2/tests/QtGui/pyside_reload_test.py +++ b/sources/pyside2/tests/QtGui/pyside_reload_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qcolor_reduce_test.py b/sources/pyside2/tests/QtGui/qcolor_reduce_test.py index a5a91e099..e399385d7 100644 --- a/sources/pyside2/tests/QtGui/qcolor_reduce_test.py +++ b/sources/pyside2/tests/QtGui/qcolor_reduce_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qcolor_test.py b/sources/pyside2/tests/QtGui/qcolor_test.py index 10c4c9076..e99b187e2 100644 --- a/sources/pyside2/tests/QtGui/qcolor_test.py +++ b/sources/pyside2/tests/QtGui/qcolor_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qcursor_test.py b/sources/pyside2/tests/QtGui/qcursor_test.py index f19fbd028..afdf8f8d3 100644 --- a/sources/pyside2/tests/QtGui/qcursor_test.py +++ b/sources/pyside2/tests/QtGui/qcursor_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py b/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py index 932bb0cbf..9c5bb9087 100644 --- a/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py +++ b/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qdesktopservices_test.py b/sources/pyside2/tests/QtGui/qdesktopservices_test.py index edeb32a08..e85d94829 100644 --- a/sources/pyside2/tests/QtGui/qdesktopservices_test.py +++ b/sources/pyside2/tests/QtGui/qdesktopservices_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qfontmetrics_test.py b/sources/pyside2/tests/QtGui/qfontmetrics_test.py index 140fc1321..3658bb07e 100644 --- a/sources/pyside2/tests/QtGui/qfontmetrics_test.py +++ b/sources/pyside2/tests/QtGui/qfontmetrics_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qicon_test.py b/sources/pyside2/tests/QtGui/qicon_test.py index 2a56b455c..9b2717c71 100644 --- a/sources/pyside2/tests/QtGui/qicon_test.py +++ b/sources/pyside2/tests/QtGui/qicon_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qitemselection_test.py b/sources/pyside2/tests/QtGui/qitemselection_test.py index d8f2ab230..b21d287b3 100644 --- a/sources/pyside2/tests/QtGui/qitemselection_test.py +++ b/sources/pyside2/tests/QtGui/qitemselection_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qkeysequence_test.py b/sources/pyside2/tests/QtGui/qkeysequence_test.py index 3e62a4632..3c6707162 100644 --- a/sources/pyside2/tests/QtGui/qkeysequence_test.py +++ b/sources/pyside2/tests/QtGui/qkeysequence_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qmatrix_test.py b/sources/pyside2/tests/QtGui/qmatrix_test.py index 944b052cc..bbaea8ee0 100644 --- a/sources/pyside2/tests/QtGui/qmatrix_test.py +++ b/sources/pyside2/tests/QtGui/qmatrix_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qopenglbuffer_test.py b/sources/pyside2/tests/QtGui/qopenglbuffer_test.py index cae789ac4..2dc743df6 100644 --- a/sources/pyside2/tests/QtGui/qopenglbuffer_test.py +++ b/sources/pyside2/tests/QtGui/qopenglbuffer_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qopenglwindow_test.py b/sources/pyside2/tests/QtGui/qopenglwindow_test.py index 2d11a0238..2d1ef813c 100644 --- a/sources/pyside2/tests/QtGui/qopenglwindow_test.py +++ b/sources/pyside2/tests/QtGui/qopenglwindow_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpainter_test.py b/sources/pyside2/tests/QtGui/qpainter_test.py index 7cecede51..d381bd8cd 100644 --- a/sources/pyside2/tests/QtGui/qpainter_test.py +++ b/sources/pyside2/tests/QtGui/qpainter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpdfwriter_test.py b/sources/pyside2/tests/QtGui/qpdfwriter_test.py index f97c85b39..7ae2381f9 100644 --- a/sources/pyside2/tests/QtGui/qpdfwriter_test.py +++ b/sources/pyside2/tests/QtGui/qpdfwriter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpixelformat_test.py b/sources/pyside2/tests/QtGui/qpixelformat_test.py index c7f14ff24..5755eeecf 100644 --- a/sources/pyside2/tests/QtGui/qpixelformat_test.py +++ b/sources/pyside2/tests/QtGui/qpixelformat_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpixmap_test.py b/sources/pyside2/tests/QtGui/qpixmap_test.py index b637f4d13..8106faf24 100644 --- a/sources/pyside2/tests/QtGui/qpixmap_test.py +++ b/sources/pyside2/tests/QtGui/qpixmap_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpixmapcache_test.py b/sources/pyside2/tests/QtGui/qpixmapcache_test.py index 83e26411d..3e45dee59 100644 --- a/sources/pyside2/tests/QtGui/qpixmapcache_test.py +++ b/sources/pyside2/tests/QtGui/qpixmapcache_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpolygonf_test.py b/sources/pyside2/tests/QtGui/qpolygonf_test.py index 7c243b903..4768e3bc6 100644 --- a/sources/pyside2/tests/QtGui/qpolygonf_test.py +++ b/sources/pyside2/tests/QtGui/qpolygonf_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qradialgradient_test.py b/sources/pyside2/tests/QtGui/qradialgradient_test.py index 16dbf7ded..5a885977d 100644 --- a/sources/pyside2/tests/QtGui/qradialgradient_test.py +++ b/sources/pyside2/tests/QtGui/qradialgradient_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qrasterwindow_test.py b/sources/pyside2/tests/QtGui/qrasterwindow_test.py index db756ff85..202cca117 100644 --- a/sources/pyside2/tests/QtGui/qrasterwindow_test.py +++ b/sources/pyside2/tests/QtGui/qrasterwindow_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qregion_test.py b/sources/pyside2/tests/QtGui/qregion_test.py index e3af650e5..49780786d 100644 --- a/sources/pyside2/tests/QtGui/qregion_test.py +++ b/sources/pyside2/tests/QtGui/qregion_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qstylehints_test.py b/sources/pyside2/tests/QtGui/qstylehints_test.py index c3d99aa3f..462163077 100644 --- a/sources/pyside2/tests/QtGui/qstylehints_test.py +++ b/sources/pyside2/tests/QtGui/qstylehints_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py b/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py index 9d237f6d4..908480bff 100644 --- a/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py +++ b/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py b/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py index c65d09633..4706dccdf 100644 --- a/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py +++ b/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtextline_test.py b/sources/pyside2/tests/QtGui/qtextline_test.py index a541c6cf5..c9c17c09a 100644 --- a/sources/pyside2/tests/QtGui/qtextline_test.py +++ b/sources/pyside2/tests/QtGui/qtextline_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtransform_test.py b/sources/pyside2/tests/QtGui/qtransform_test.py index 654484f9d..b2d3a2394 100644 --- a/sources/pyside2/tests/QtGui/qtransform_test.py +++ b/sources/pyside2/tests/QtGui/qtransform_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/repr_test.py b/sources/pyside2/tests/QtGui/repr_test.py index 90307e64c..440f4d0d6 100644 --- a/sources/pyside2/tests/QtGui/repr_test.py +++ b/sources/pyside2/tests/QtGui/repr_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/timed_app_test.py b/sources/pyside2/tests/QtGui/timed_app_test.py index 487e4a925..0e958f1b1 100644 --- a/sources/pyside2/tests/QtGui/timed_app_test.py +++ b/sources/pyside2/tests/QtGui/timed_app_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtHelp/help_test.py b/sources/pyside2/tests/QtHelp/help_test.py index a99636508..825bfdc74 100644 --- a/sources/pyside2/tests/QtHelp/help_test.py +++ b/sources/pyside2/tests/QtHelp/help_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtHelp/helpsearchengine_test.py b/sources/pyside2/tests/QtHelp/helpsearchengine_test.py index 6bc4b684a..221830555 100644 --- a/sources/pyside2/tests/QtHelp/helpsearchengine_test.py +++ b/sources/pyside2/tests/QtHelp/helpsearchengine_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtLocation/location.py b/sources/pyside2/tests/QtLocation/location.py index ca964c46c..dc0fa8849 100644 --- a/sources/pyside2/tests/QtLocation/location.py +++ b/sources/pyside2/tests/QtLocation/location.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtMultimedia/audio_test.py b/sources/pyside2/tests/QtMultimedia/audio_test.py index dff65dc5e..bf4433fe7 100644 --- a/sources/pyside2/tests/QtMultimedia/audio_test.py +++ b/sources/pyside2/tests/QtMultimedia/audio_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py b/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py index 734dca9e5..eb1a359c7 100644 --- a/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py +++ b/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/accessManager_test.py b/sources/pyside2/tests/QtNetwork/accessManager_test.py index 11b21e841..8a101a839 100644 --- a/sources/pyside2/tests/QtNetwork/accessManager_test.py +++ b/sources/pyside2/tests/QtNetwork/accessManager_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/bug_1084.py b/sources/pyside2/tests/QtNetwork/bug_1084.py index b2d990196..4a8a9c14f 100644 --- a/sources/pyside2/tests/QtNetwork/bug_1084.py +++ b/sources/pyside2/tests/QtNetwork/bug_1084.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/bug_446.py b/sources/pyside2/tests/QtNetwork/bug_446.py index 4d3f3c0e9..3542ee02e 100644 --- a/sources/pyside2/tests/QtNetwork/bug_446.py +++ b/sources/pyside2/tests/QtNetwork/bug_446.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/qipv6address_test.py b/sources/pyside2/tests/QtNetwork/qipv6address_test.py index e51760504..fce6896f5 100644 --- a/sources/pyside2/tests/QtNetwork/qipv6address_test.py +++ b/sources/pyside2/tests/QtNetwork/qipv6address_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/tcpserver_test.py b/sources/pyside2/tests/QtNetwork/tcpserver_test.py index 3c13a1849..a97787706 100644 --- a/sources/pyside2/tests/QtNetwork/tcpserver_test.py +++ b/sources/pyside2/tests/QtNetwork/tcpserver_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/udpsocket_test.py b/sources/pyside2/tests/QtNetwork/udpsocket_test.py index 4e3d9ae62..7caaab155 100644 --- a/sources/pyside2/tests/QtNetwork/udpsocket_test.py +++ b/sources/pyside2/tests/QtNetwork/udpsocket_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py b/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py index fc65052ce..6109b5701 100644 --- a/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py +++ b/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtOpenGL/qglwidget_test.py b/sources/pyside2/tests/QtOpenGL/qglwidget_test.py index 48774f280..ae2d3259e 100644 --- a/sources/pyside2/tests/QtOpenGL/qglwidget_test.py +++ b/sources/pyside2/tests/QtOpenGL/qglwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtPositioning/positioning.py b/sources/pyside2/tests/QtPositioning/positioning.py index 9f61fe1ef..13560e7b6 100644 --- a/sources/pyside2/tests/QtPositioning/positioning.py +++ b/sources/pyside2/tests/QtPositioning/positioning.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtPrintSupport/bug_500.py b/sources/pyside2/tests/QtPrintSupport/bug_500.py index b6f941633..c5bd11486 100644 --- a/sources/pyside2/tests/QtPrintSupport/bug_500.py +++ b/sources/pyside2/tests/QtPrintSupport/bug_500.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py b/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py index f6f2490f0..0e142a1d8 100644 --- a/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py +++ b/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_1029.py b/sources/pyside2/tests/QtQml/bug_1029.py index c5555393b..f9727685a 100755 --- a/sources/pyside2/tests/QtQml/bug_1029.py +++ b/sources/pyside2/tests/QtQml/bug_1029.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_1029.qml b/sources/pyside2/tests/QtQml/bug_1029.qml index d47f31f44..2eb3e5651 100755 --- a/sources/pyside2/tests/QtQml/bug_1029.qml +++ b/sources/pyside2/tests/QtQml/bug_1029.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_451.py b/sources/pyside2/tests/QtQml/bug_451.py index 58ee64eb4..89dad1dd8 100755 --- a/sources/pyside2/tests/QtQml/bug_451.py +++ b/sources/pyside2/tests/QtQml/bug_451.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_451.qml b/sources/pyside2/tests/QtQml/bug_451.qml index 60219b68e..d5d2eaac5 100755 --- a/sources/pyside2/tests/QtQml/bug_451.qml +++ b/sources/pyside2/tests/QtQml/bug_451.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_456.py b/sources/pyside2/tests/QtQml/bug_456.py index d9a67fe19..2eb48133c 100755 --- a/sources/pyside2/tests/QtQml/bug_456.py +++ b/sources/pyside2/tests/QtQml/bug_456.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_456.qml b/sources/pyside2/tests/QtQml/bug_456.qml index ebbff02d5..83037e761 100755 --- a/sources/pyside2/tests/QtQml/bug_456.qml +++ b/sources/pyside2/tests/QtQml/bug_456.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_557.py b/sources/pyside2/tests/QtQml/bug_557.py index 96e89d6d6..090d3fbd6 100755 --- a/sources/pyside2/tests/QtQml/bug_557.py +++ b/sources/pyside2/tests/QtQml/bug_557.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_726.py b/sources/pyside2/tests/QtQml/bug_726.py index f440b64da..e9b50b470 100755 --- a/sources/pyside2/tests/QtQml/bug_726.py +++ b/sources/pyside2/tests/QtQml/bug_726.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_726.qml b/sources/pyside2/tests/QtQml/bug_726.qml index d03376409..e971866e1 100755 --- a/sources/pyside2/tests/QtQml/bug_726.qml +++ b/sources/pyside2/tests/QtQml/bug_726.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_814.py b/sources/pyside2/tests/QtQml/bug_814.py index be6eea964..141591e34 100755 --- a/sources/pyside2/tests/QtQml/bug_814.py +++ b/sources/pyside2/tests/QtQml/bug_814.py @@ -7,7 +7,7 @@ ## Copyright (C) 2011 Thomas Perl ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_814.qml b/sources/pyside2/tests/QtQml/bug_814.qml index bc5c23fa1..09ef9db70 100755 --- a/sources/pyside2/tests/QtQml/bug_814.qml +++ b/sources/pyside2/tests/QtQml/bug_814.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_825.py b/sources/pyside2/tests/QtQml/bug_825.py index 8e896f599..7f7cb74ea 100755 --- a/sources/pyside2/tests/QtQml/bug_825.py +++ b/sources/pyside2/tests/QtQml/bug_825.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_825.qml b/sources/pyside2/tests/QtQml/bug_825.qml index 04572dc97..2f1b905d9 100755 --- a/sources/pyside2/tests/QtQml/bug_825.qml +++ b/sources/pyside2/tests/QtQml/bug_825.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_847.py b/sources/pyside2/tests/QtQml/bug_847.py index e69bd201a..dc7e3866e 100755 --- a/sources/pyside2/tests/QtQml/bug_847.py +++ b/sources/pyside2/tests/QtQml/bug_847.py @@ -7,7 +7,7 @@ ## Copyright (C) 2011 Thomas Perl ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_847.qml b/sources/pyside2/tests/QtQml/bug_847.qml index ea764ede9..93d8ee19c 100755 --- a/sources/pyside2/tests/QtQml/bug_847.qml +++ b/sources/pyside2/tests/QtQml/bug_847.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_915.py b/sources/pyside2/tests/QtQml/bug_915.py index c94612334..c25ff9810 100755 --- a/sources/pyside2/tests/QtQml/bug_915.py +++ b/sources/pyside2/tests/QtQml/bug_915.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_926.py b/sources/pyside2/tests/QtQml/bug_926.py index 5f6251aa5..95dffe272 100755 --- a/sources/pyside2/tests/QtQml/bug_926.py +++ b/sources/pyside2/tests/QtQml/bug_926.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_926.qml b/sources/pyside2/tests/QtQml/bug_926.qml index 0133ebf52..04518d48c 100755 --- a/sources/pyside2/tests/QtQml/bug_926.qml +++ b/sources/pyside2/tests/QtQml/bug_926.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_951.py b/sources/pyside2/tests/QtQml/bug_951.py index 897412bd1..230849b20 100755 --- a/sources/pyside2/tests/QtQml/bug_951.py +++ b/sources/pyside2/tests/QtQml/bug_951.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_951.qml b/sources/pyside2/tests/QtQml/bug_951.qml index 8b93bfc6d..58b22c0e4 100755 --- a/sources/pyside2/tests/QtQml/bug_951.qml +++ b/sources/pyside2/tests/QtQml/bug_951.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_995.py b/sources/pyside2/tests/QtQml/bug_995.py index d891f3445..4fc27c80b 100755 --- a/sources/pyside2/tests/QtQml/bug_995.py +++ b/sources/pyside2/tests/QtQml/bug_995.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_995.qml b/sources/pyside2/tests/QtQml/bug_995.qml index fcc33975c..fcc17be28 100755 --- a/sources/pyside2/tests/QtQml/bug_995.qml +++ b/sources/pyside2/tests/QtQml/bug_995.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_997.py b/sources/pyside2/tests/QtQml/bug_997.py index fcb260cf3..84ee326ab 100755 --- a/sources/pyside2/tests/QtQml/bug_997.py +++ b/sources/pyside2/tests/QtQml/bug_997.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_997.qml b/sources/pyside2/tests/QtQml/bug_997.qml index 24f5ae51f..823c3a862 100755 --- a/sources/pyside2/tests/QtQml/bug_997.qml +++ b/sources/pyside2/tests/QtQml/bug_997.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/connect_python_qml.py b/sources/pyside2/tests/QtQml/connect_python_qml.py index 3eeffd0d3..fccaf8d85 100644 --- a/sources/pyside2/tests/QtQml/connect_python_qml.py +++ b/sources/pyside2/tests/QtQml/connect_python_qml.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/connect_python_qml.qml b/sources/pyside2/tests/QtQml/connect_python_qml.qml index 79a364159..a838c634e 100755 --- a/sources/pyside2/tests/QtQml/connect_python_qml.qml +++ b/sources/pyside2/tests/QtQml/connect_python_qml.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/hw.qml b/sources/pyside2/tests/QtQml/hw.qml index 0e682bf40..62d718698 100755 --- a/sources/pyside2/tests/QtQml/hw.qml +++ b/sources/pyside2/tests/QtQml/hw.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/javascript_exceptions.py b/sources/pyside2/tests/QtQml/javascript_exceptions.py index 513a22a3e..7a5331a15 100644 --- a/sources/pyside2/tests/QtQml/javascript_exceptions.py +++ b/sources/pyside2/tests/QtQml/javascript_exceptions.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/javascript_exceptions.qml b/sources/pyside2/tests/QtQml/javascript_exceptions.qml index 6d0e062cf..33c97f33a 100644 --- a/sources/pyside2/tests/QtQml/javascript_exceptions.qml +++ b/sources/pyside2/tests/QtQml/javascript_exceptions.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py index 26be20f15..e280d7d2b 100644 --- a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py +++ b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml index 3f4fe8214..13cd9de7d 100644 --- a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml +++ b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml index 654cf2281..667490bc9 100644 --- a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml +++ b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlnetwork_test.py b/sources/pyside2/tests/QtQml/qqmlnetwork_test.py index fab3af8c8..4551bbe01 100755 --- a/sources/pyside2/tests/QtQml/qqmlnetwork_test.py +++ b/sources/pyside2/tests/QtQml/qqmlnetwork_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py index 91835e689..23130b460 100644 --- a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py +++ b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml index d103cf076..a13c944a9 100644 --- a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml +++ b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qquickview_test.py b/sources/pyside2/tests/QtQml/qquickview_test.py index e65eb3afc..7eb9af1a6 100755 --- a/sources/pyside2/tests/QtQml/qquickview_test.py +++ b/sources/pyside2/tests/QtQml/qquickview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/registertype.py b/sources/pyside2/tests/QtQml/registertype.py index 82bac32b1..80fb48b60 100755 --- a/sources/pyside2/tests/QtQml/registertype.py +++ b/sources/pyside2/tests/QtQml/registertype.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/registertype.qml b/sources/pyside2/tests/QtQml/registertype.qml index cfa7fce8f..00b5fb774 100755 --- a/sources/pyside2/tests/QtQml/registertype.qml +++ b/sources/pyside2/tests/QtQml/registertype.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/view.qml b/sources/pyside2/tests/QtQml/view.qml index 8cc50e782..95cae6fca 100755 --- a/sources/pyside2/tests/QtQml/view.qml +++ b/sources/pyside2/tests/QtQml/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/viewmodel.qml b/sources/pyside2/tests/QtQml/viewmodel.qml index 18f799da8..f3c1f2f9c 100755 --- a/sources/pyside2/tests/QtQml/viewmodel.qml +++ b/sources/pyside2/tests/QtQml/viewmodel.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/base_test.py b/sources/pyside2/tests/QtScript/base_test.py index 623610ac0..86bcc0ac6 100644 --- a/sources/pyside2/tests/QtScript/base_test.py +++ b/sources/pyside2/tests/QtScript/base_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/bug_1022.py b/sources/pyside2/tests/QtScript/bug_1022.py index 740180709..7fcc6501b 100644 --- a/sources/pyside2/tests/QtScript/bug_1022.py +++ b/sources/pyside2/tests/QtScript/bug_1022.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/engine_test.py b/sources/pyside2/tests/QtScript/engine_test.py index 15f50fe29..3b13f12c0 100644 --- a/sources/pyside2/tests/QtScript/engine_test.py +++ b/sources/pyside2/tests/QtScript/engine_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/property_test.py b/sources/pyside2/tests/QtScript/property_test.py index b958d3106..ad6be1b89 100644 --- a/sources/pyside2/tests/QtScript/property_test.py +++ b/sources/pyside2/tests/QtScript/property_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/qscriptvalue_test.py b/sources/pyside2/tests/QtScript/qscriptvalue_test.py index 1e1a16677..fed013389 100644 --- a/sources/pyside2/tests/QtScript/qscriptvalue_test.py +++ b/sources/pyside2/tests/QtScript/qscriptvalue_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScriptTools/debugger_test.py b/sources/pyside2/tests/QtScriptTools/debugger_test.py index ea8e557a6..a987d88bf 100644 --- a/sources/pyside2/tests/QtScriptTools/debugger_test.py +++ b/sources/pyside2/tests/QtScriptTools/debugger_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSensors/sensors.py b/sources/pyside2/tests/QtSensors/sensors.py index 5b41ac63d..ef1dfc50d 100644 --- a/sources/pyside2/tests/QtSensors/sensors.py +++ b/sources/pyside2/tests/QtSensors/sensors.py @@ -5,7 +5,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSql/bug_1013.py b/sources/pyside2/tests/QtSql/bug_1013.py index 8657fb9d2..c0005cee0 100644 --- a/sources/pyside2/tests/QtSql/bug_1013.py +++ b/sources/pyside2/tests/QtSql/bug_1013.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py b/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py index b99946c44..1db367ca2 100644 --- a/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py +++ b/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSql/qvarianttype_test.py b/sources/pyside2/tests/QtSql/qvarianttype_test.py index 1eb532cea..d17180306 100644 --- a/sources/pyside2/tests/QtSql/qvarianttype_test.py +++ b/sources/pyside2/tests/QtSql/qvarianttype_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSvg/qsvggenerator_test.py b/sources/pyside2/tests/QtSvg/qsvggenerator_test.py index 4605eb455..8ebcee142 100644 --- a/sources/pyside2/tests/QtSvg/qsvggenerator_test.py +++ b/sources/pyside2/tests/QtSvg/qsvggenerator_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py b/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py index 976a2e5ac..c33e777f6 100644 --- a/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py +++ b/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSvg/qsvgwidget_test.py b/sources/pyside2/tests/QtSvg/qsvgwidget_test.py index 31152f9ab..1e0fd99c9 100644 --- a/sources/pyside2/tests/QtSvg/qsvgwidget_test.py +++ b/sources/pyside2/tests/QtSvg/qsvgwidget_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/click_test.py b/sources/pyside2/tests/QtTest/click_test.py index e655371ae..f2f372e84 100644 --- a/sources/pyside2/tests/QtTest/click_test.py +++ b/sources/pyside2/tests/QtTest/click_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/eventfilter_test.py b/sources/pyside2/tests/QtTest/eventfilter_test.py index e94b279b7..fb670608b 100644 --- a/sources/pyside2/tests/QtTest/eventfilter_test.py +++ b/sources/pyside2/tests/QtTest/eventfilter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/qvalidator_test.py b/sources/pyside2/tests/QtTest/qvalidator_test.py index dd5eaadb3..9bdd3e162 100644 --- a/sources/pyside2/tests/QtTest/qvalidator_test.py +++ b/sources/pyside2/tests/QtTest/qvalidator_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/touchevent_test.py b/sources/pyside2/tests/QtTest/touchevent_test.py index 1a4fb94ee..edeee8d3b 100644 --- a/sources/pyside2/tests/QtTest/touchevent_test.py +++ b/sources/pyside2/tests/QtTest/touchevent_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py b/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py index 6f26f3691..8cf263668 100644 --- a/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py +++ b/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_1060.py b/sources/pyside2/tests/QtUiTools/bug_1060.py index 21d79810a..aa8035bbe 100644 --- a/sources/pyside2/tests/QtUiTools/bug_1060.py +++ b/sources/pyside2/tests/QtUiTools/bug_1060.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_360.py b/sources/pyside2/tests/QtUiTools/bug_360.py index 6d2c2a4e3..102692f5f 100644 --- a/sources/pyside2/tests/QtUiTools/bug_360.py +++ b/sources/pyside2/tests/QtUiTools/bug_360.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_376.py b/sources/pyside2/tests/QtUiTools/bug_376.py index 64b5acbd1..2d8df9fc4 100644 --- a/sources/pyside2/tests/QtUiTools/bug_376.py +++ b/sources/pyside2/tests/QtUiTools/bug_376.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_392.py b/sources/pyside2/tests/QtUiTools/bug_392.py index d788b29d6..082fdf7b7 100644 --- a/sources/pyside2/tests/QtUiTools/bug_392.py +++ b/sources/pyside2/tests/QtUiTools/bug_392.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_426.py b/sources/pyside2/tests/QtUiTools/bug_426.py index eac350a42..272683121 100644 --- a/sources/pyside2/tests/QtUiTools/bug_426.py +++ b/sources/pyside2/tests/QtUiTools/bug_426.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_552.py b/sources/pyside2/tests/QtUiTools/bug_552.py index 34165aa00..077db7917 100644 --- a/sources/pyside2/tests/QtUiTools/bug_552.py +++ b/sources/pyside2/tests/QtUiTools/bug_552.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_797.py b/sources/pyside2/tests/QtUiTools/bug_797.py index 476368d2f..0ae63bc12 100644 --- a/sources/pyside2/tests/QtUiTools/bug_797.py +++ b/sources/pyside2/tests/QtUiTools/bug_797.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_909.py b/sources/pyside2/tests/QtUiTools/bug_909.py index 2b6bfbd4e..3af95121e 100644 --- a/sources/pyside2/tests/QtUiTools/bug_909.py +++ b/sources/pyside2/tests/QtUiTools/bug_909.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_913.py b/sources/pyside2/tests/QtUiTools/bug_913.py index d249ce958..b2fc1aea1 100644 --- a/sources/pyside2/tests/QtUiTools/bug_913.py +++ b/sources/pyside2/tests/QtUiTools/bug_913.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_958.py b/sources/pyside2/tests/QtUiTools/bug_958.py index 9cae430ea..954cc7aa5 100644 --- a/sources/pyside2/tests/QtUiTools/bug_958.py +++ b/sources/pyside2/tests/QtUiTools/bug_958.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_965.py b/sources/pyside2/tests/QtUiTools/bug_965.py index 96235cd4d..ed464c70b 100644 --- a/sources/pyside2/tests/QtUiTools/bug_965.py +++ b/sources/pyside2/tests/QtUiTools/bug_965.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/ui_test.py b/sources/pyside2/tests/QtUiTools/ui_test.py index e52d28278..3305fafdf 100644 --- a/sources/pyside2/tests/QtUiTools/ui_test.py +++ b/sources/pyside2/tests/QtUiTools/ui_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/uiloader_test.py b/sources/pyside2/tests/QtUiTools/uiloader_test.py index e429f5adc..f6d43ee2e 100644 --- a/sources/pyside2/tests/QtUiTools/uiloader_test.py +++ b/sources/pyside2/tests/QtUiTools/uiloader_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt b/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt index 2e361383c..e43fb5814 100644 --- a/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt +++ b/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py b/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py index b7c57d8e6..dbc4dfc52 100644 --- a/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py +++ b/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt b/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt index 2d2ef0458..84c7fec57 100644 --- a/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt +++ b/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py b/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py index b4aef26d1..bcbe72390 100644 --- a/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py +++ b/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_448.py b/sources/pyside2/tests/QtWebKit/bug_448.py index 2c50bd166..e3ae0078b 100644 --- a/sources/pyside2/tests/QtWebKit/bug_448.py +++ b/sources/pyside2/tests/QtWebKit/bug_448.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_694.py b/sources/pyside2/tests/QtWebKit/bug_694.py index f59c08b04..3028f0e77 100644 --- a/sources/pyside2/tests/QtWebKit/bug_694.py +++ b/sources/pyside2/tests/QtWebKit/bug_694.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_803.py b/sources/pyside2/tests/QtWebKit/bug_803.py index 23b670f9c..01efebe3c 100644 --- a/sources/pyside2/tests/QtWebKit/bug_803.py +++ b/sources/pyside2/tests/QtWebKit/bug_803.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_899.py b/sources/pyside2/tests/QtWebKit/bug_899.py index edd705c8e..9e017eb42 100644 --- a/sources/pyside2/tests/QtWebKit/bug_899.py +++ b/sources/pyside2/tests/QtWebKit/bug_899.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_959.py b/sources/pyside2/tests/QtWebKit/bug_959.py index 22f217bee..c4c61f416 100644 --- a/sources/pyside2/tests/QtWebKit/bug_959.py +++ b/sources/pyside2/tests/QtWebKit/bug_959.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/qml_plugin_test.py b/sources/pyside2/tests/QtWebKit/qml_plugin_test.py index d7e855ce8..b18a7b24e 100644 --- a/sources/pyside2/tests/QtWebKit/qml_plugin_test.py +++ b/sources/pyside2/tests/QtWebKit/qml_plugin_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py b/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py index c33b2d1fe..3a85663f9 100644 --- a/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py +++ b/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py b/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py index 7c9763f2e..86de0192b 100644 --- a/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py +++ b/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/webframe_test.py b/sources/pyside2/tests/QtWebKit/webframe_test.py index e82ae5279..723b0214a 100644 --- a/sources/pyside2/tests/QtWebKit/webframe_test.py +++ b/sources/pyside2/tests/QtWebKit/webframe_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/webpage_test.py b/sources/pyside2/tests/QtWebKit/webpage_test.py index 1abb6be49..bed7e642e 100644 --- a/sources/pyside2/tests/QtWebKit/webpage_test.py +++ b/sources/pyside2/tests/QtWebKit/webpage_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/webview_test.py b/sources/pyside2/tests/QtWebKit/webview_test.py index f6c82e045..f00a418ca 100644 --- a/sources/pyside2/tests/QtWebKit/webview_test.py +++ b/sources/pyside2/tests/QtWebKit/webview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/action_clear.py b/sources/pyside2/tests/QtWidgets/action_clear.py index 72ea41e08..eb51e42f2 100644 --- a/sources/pyside2/tests/QtWidgets/action_clear.py +++ b/sources/pyside2/tests/QtWidgets/action_clear.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/add_action_test.py b/sources/pyside2/tests/QtWidgets/add_action_test.py index c6bc7abb5..9210e736c 100644 --- a/sources/pyside2/tests/QtWidgets/add_action_test.py +++ b/sources/pyside2/tests/QtWidgets/add_action_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/api2_test.py b/sources/pyside2/tests/QtWidgets/api2_test.py index ad46567bc..fc5cd5bd8 100644 --- a/sources/pyside2/tests/QtWidgets/api2_test.py +++ b/sources/pyside2/tests/QtWidgets/api2_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/application_test.py b/sources/pyside2/tests/QtWidgets/application_test.py index 78628a556..8bd267ae7 100644 --- a/sources/pyside2/tests/QtWidgets/application_test.py +++ b/sources/pyside2/tests/QtWidgets/application_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1002.py b/sources/pyside2/tests/QtWidgets/bug_1002.py index 6deadb238..c36ad3eac 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1002.py +++ b/sources/pyside2/tests/QtWidgets/bug_1002.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1006.py b/sources/pyside2/tests/QtWidgets/bug_1006.py index 6a8ea03b4..20f646bd0 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1006.py +++ b/sources/pyside2/tests/QtWidgets/bug_1006.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1048.py b/sources/pyside2/tests/QtWidgets/bug_1048.py index 1e09fa66a..2af612fde 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1048.py +++ b/sources/pyside2/tests/QtWidgets/bug_1048.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1077.py b/sources/pyside2/tests/QtWidgets/bug_1077.py index 68380e42c..36b3f1c43 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1077.py +++ b/sources/pyside2/tests/QtWidgets/bug_1077.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_172.py b/sources/pyside2/tests/QtWidgets/bug_172.py index 993b634c3..3c408feb1 100644 --- a/sources/pyside2/tests/QtWidgets/bug_172.py +++ b/sources/pyside2/tests/QtWidgets/bug_172.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_243.py b/sources/pyside2/tests/QtWidgets/bug_243.py index 361f02f17..b802fbe4b 100644 --- a/sources/pyside2/tests/QtWidgets/bug_243.py +++ b/sources/pyside2/tests/QtWidgets/bug_243.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_307.py b/sources/pyside2/tests/QtWidgets/bug_307.py index 4937f9835..b2340d72e 100644 --- a/sources/pyside2/tests/QtWidgets/bug_307.py +++ b/sources/pyside2/tests/QtWidgets/bug_307.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_324.py b/sources/pyside2/tests/QtWidgets/bug_324.py index cc1871c7f..4c3351248 100644 --- a/sources/pyside2/tests/QtWidgets/bug_324.py +++ b/sources/pyside2/tests/QtWidgets/bug_324.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_338.py b/sources/pyside2/tests/QtWidgets/bug_338.py index 326c10a4d..0b1923a3f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_338.py +++ b/sources/pyside2/tests/QtWidgets/bug_338.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_363.py b/sources/pyside2/tests/QtWidgets/bug_363.py index 7587c45de..afb702ecf 100644 --- a/sources/pyside2/tests/QtWidgets/bug_363.py +++ b/sources/pyside2/tests/QtWidgets/bug_363.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_389.py b/sources/pyside2/tests/QtWidgets/bug_389.py index 1ea8183e3..b9309443a 100644 --- a/sources/pyside2/tests/QtWidgets/bug_389.py +++ b/sources/pyside2/tests/QtWidgets/bug_389.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_400.py b/sources/pyside2/tests/QtWidgets/bug_400.py index ad673704d..e552cb99a 100644 --- a/sources/pyside2/tests/QtWidgets/bug_400.py +++ b/sources/pyside2/tests/QtWidgets/bug_400.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_416.py b/sources/pyside2/tests/QtWidgets/bug_416.py index 988f3f83b..b3406c34f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_416.py +++ b/sources/pyside2/tests/QtWidgets/bug_416.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_429.py b/sources/pyside2/tests/QtWidgets/bug_429.py index 2d9a9fee6..8a7cde84a 100644 --- a/sources/pyside2/tests/QtWidgets/bug_429.py +++ b/sources/pyside2/tests/QtWidgets/bug_429.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_430.py b/sources/pyside2/tests/QtWidgets/bug_430.py index 7c7a5fa7a..57ade02a9 100644 --- a/sources/pyside2/tests/QtWidgets/bug_430.py +++ b/sources/pyside2/tests/QtWidgets/bug_430.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_433.py b/sources/pyside2/tests/QtWidgets/bug_433.py index 798bc28bd..7c06b5d63 100644 --- a/sources/pyside2/tests/QtWidgets/bug_433.py +++ b/sources/pyside2/tests/QtWidgets/bug_433.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_467.py b/sources/pyside2/tests/QtWidgets/bug_467.py index 0bc5ed80d..2bd1884f9 100644 --- a/sources/pyside2/tests/QtWidgets/bug_467.py +++ b/sources/pyside2/tests/QtWidgets/bug_467.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_493.py b/sources/pyside2/tests/QtWidgets/bug_493.py index 5372e28b7..d05bafcbf 100644 --- a/sources/pyside2/tests/QtWidgets/bug_493.py +++ b/sources/pyside2/tests/QtWidgets/bug_493.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_512.py b/sources/pyside2/tests/QtWidgets/bug_512.py index 37b68c551..85dfe8c0c 100644 --- a/sources/pyside2/tests/QtWidgets/bug_512.py +++ b/sources/pyside2/tests/QtWidgets/bug_512.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_525.py b/sources/pyside2/tests/QtWidgets/bug_525.py index 2a999a3fc..924a2d63c 100644 --- a/sources/pyside2/tests/QtWidgets/bug_525.py +++ b/sources/pyside2/tests/QtWidgets/bug_525.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_546.py b/sources/pyside2/tests/QtWidgets/bug_546.py index bfcf503e6..68a1f1381 100644 --- a/sources/pyside2/tests/QtWidgets/bug_546.py +++ b/sources/pyside2/tests/QtWidgets/bug_546.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_547.py b/sources/pyside2/tests/QtWidgets/bug_547.py index 9b348b61f..95d6f7325 100644 --- a/sources/pyside2/tests/QtWidgets/bug_547.py +++ b/sources/pyside2/tests/QtWidgets/bug_547.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_549.py b/sources/pyside2/tests/QtWidgets/bug_549.py index 24159dbc5..0c2c86d05 100644 --- a/sources/pyside2/tests/QtWidgets/bug_549.py +++ b/sources/pyside2/tests/QtWidgets/bug_549.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_569.py b/sources/pyside2/tests/QtWidgets/bug_569.py index 05a964c18..fb2c55338 100644 --- a/sources/pyside2/tests/QtWidgets/bug_569.py +++ b/sources/pyside2/tests/QtWidgets/bug_569.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_575.py b/sources/pyside2/tests/QtWidgets/bug_575.py index 9b0e00e1c..462bb054f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_575.py +++ b/sources/pyside2/tests/QtWidgets/bug_575.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_576.py b/sources/pyside2/tests/QtWidgets/bug_576.py index eefb2cb52..ee1961ca7 100644 --- a/sources/pyside2/tests/QtWidgets/bug_576.py +++ b/sources/pyside2/tests/QtWidgets/bug_576.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_585.py b/sources/pyside2/tests/QtWidgets/bug_585.py index 1232d6c0b..393223ffb 100644 --- a/sources/pyside2/tests/QtWidgets/bug_585.py +++ b/sources/pyside2/tests/QtWidgets/bug_585.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_589.py b/sources/pyside2/tests/QtWidgets/bug_589.py index 25ba10d71..2a2e6d508 100644 --- a/sources/pyside2/tests/QtWidgets/bug_589.py +++ b/sources/pyside2/tests/QtWidgets/bug_589.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_632.py b/sources/pyside2/tests/QtWidgets/bug_632.py index fa8063412..3b3d1d002 100644 --- a/sources/pyside2/tests/QtWidgets/bug_632.py +++ b/sources/pyside2/tests/QtWidgets/bug_632.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_635.py b/sources/pyside2/tests/QtWidgets/bug_635.py index f23241d30..6dca6fc7d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_635.py +++ b/sources/pyside2/tests/QtWidgets/bug_635.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_640.py b/sources/pyside2/tests/QtWidgets/bug_640.py index b9a9a0e8b..11df88286 100644 --- a/sources/pyside2/tests/QtWidgets/bug_640.py +++ b/sources/pyside2/tests/QtWidgets/bug_640.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_653.py b/sources/pyside2/tests/QtWidgets/bug_653.py index ba7178b98..9aafc62c7 100644 --- a/sources/pyside2/tests/QtWidgets/bug_653.py +++ b/sources/pyside2/tests/QtWidgets/bug_653.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_662.py b/sources/pyside2/tests/QtWidgets/bug_662.py index 369bccfeb..32e42fce3 100644 --- a/sources/pyside2/tests/QtWidgets/bug_662.py +++ b/sources/pyside2/tests/QtWidgets/bug_662.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_667.py b/sources/pyside2/tests/QtWidgets/bug_667.py index ad91b5a78..d15239e8d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_667.py +++ b/sources/pyside2/tests/QtWidgets/bug_667.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_668.py b/sources/pyside2/tests/QtWidgets/bug_668.py index 02036fae4..886205481 100644 --- a/sources/pyside2/tests/QtWidgets/bug_668.py +++ b/sources/pyside2/tests/QtWidgets/bug_668.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_674.py b/sources/pyside2/tests/QtWidgets/bug_674.py index c26bd7eee..a1320d01a 100644 --- a/sources/pyside2/tests/QtWidgets/bug_674.py +++ b/sources/pyside2/tests/QtWidgets/bug_674.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_675.py b/sources/pyside2/tests/QtWidgets/bug_675.py index 9e1358a8c..d0680974c 100644 --- a/sources/pyside2/tests/QtWidgets/bug_675.py +++ b/sources/pyside2/tests/QtWidgets/bug_675.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_688.py b/sources/pyside2/tests/QtWidgets/bug_688.py index d622b33be..a97e3c23c 100644 --- a/sources/pyside2/tests/QtWidgets/bug_688.py +++ b/sources/pyside2/tests/QtWidgets/bug_688.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_693.py b/sources/pyside2/tests/QtWidgets/bug_693.py index eecc6b62b..ecfbe5632 100644 --- a/sources/pyside2/tests/QtWidgets/bug_693.py +++ b/sources/pyside2/tests/QtWidgets/bug_693.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_696.py b/sources/pyside2/tests/QtWidgets/bug_696.py index 60f6f2166..aa5894e3d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_696.py +++ b/sources/pyside2/tests/QtWidgets/bug_696.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_711.py b/sources/pyside2/tests/QtWidgets/bug_711.py index c56081f9b..b2efad676 100644 --- a/sources/pyside2/tests/QtWidgets/bug_711.py +++ b/sources/pyside2/tests/QtWidgets/bug_711.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_714.py b/sources/pyside2/tests/QtWidgets/bug_714.py index 6fef26d33..93dee6630 100644 --- a/sources/pyside2/tests/QtWidgets/bug_714.py +++ b/sources/pyside2/tests/QtWidgets/bug_714.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_722.py b/sources/pyside2/tests/QtWidgets/bug_722.py index 20087a088..b2d58a742 100644 --- a/sources/pyside2/tests/QtWidgets/bug_722.py +++ b/sources/pyside2/tests/QtWidgets/bug_722.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_728.py b/sources/pyside2/tests/QtWidgets/bug_728.py index d2783b746..b051d11ee 100644 --- a/sources/pyside2/tests/QtWidgets/bug_728.py +++ b/sources/pyside2/tests/QtWidgets/bug_728.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_736.py b/sources/pyside2/tests/QtWidgets/bug_736.py index 2fe80f801..25f69dde4 100644 --- a/sources/pyside2/tests/QtWidgets/bug_736.py +++ b/sources/pyside2/tests/QtWidgets/bug_736.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_750.py b/sources/pyside2/tests/QtWidgets/bug_750.py index 055e982a8..7666e9c28 100644 --- a/sources/pyside2/tests/QtWidgets/bug_750.py +++ b/sources/pyside2/tests/QtWidgets/bug_750.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_778.py b/sources/pyside2/tests/QtWidgets/bug_778.py index 270b1a48a..fc6f13ad4 100644 --- a/sources/pyside2/tests/QtWidgets/bug_778.py +++ b/sources/pyside2/tests/QtWidgets/bug_778.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_785.py b/sources/pyside2/tests/QtWidgets/bug_785.py index ccd8dfddc..ae37f73ea 100644 --- a/sources/pyside2/tests/QtWidgets/bug_785.py +++ b/sources/pyside2/tests/QtWidgets/bug_785.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_793.py b/sources/pyside2/tests/QtWidgets/bug_793.py index 89dc4408c..90ddde90d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_793.py +++ b/sources/pyside2/tests/QtWidgets/bug_793.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_811.py b/sources/pyside2/tests/QtWidgets/bug_811.py index d219ec6c3..dff0518f4 100644 --- a/sources/pyside2/tests/QtWidgets/bug_811.py +++ b/sources/pyside2/tests/QtWidgets/bug_811.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_834.py b/sources/pyside2/tests/QtWidgets/bug_834.py index 00fe06510..d20e3557f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_834.py +++ b/sources/pyside2/tests/QtWidgets/bug_834.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_836.py b/sources/pyside2/tests/QtWidgets/bug_836.py index 5aeb94659..9ccfc7d9b 100644 --- a/sources/pyside2/tests/QtWidgets/bug_836.py +++ b/sources/pyside2/tests/QtWidgets/bug_836.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_844.py b/sources/pyside2/tests/QtWidgets/bug_844.py index 991abbd13..73b7f39ad 100644 --- a/sources/pyside2/tests/QtWidgets/bug_844.py +++ b/sources/pyside2/tests/QtWidgets/bug_844.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_854.py b/sources/pyside2/tests/QtWidgets/bug_854.py index 47c368259..a02537763 100644 --- a/sources/pyside2/tests/QtWidgets/bug_854.py +++ b/sources/pyside2/tests/QtWidgets/bug_854.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_860.py b/sources/pyside2/tests/QtWidgets/bug_860.py index f961a8ff2..3ee572d2d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_860.py +++ b/sources/pyside2/tests/QtWidgets/bug_860.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_862.py b/sources/pyside2/tests/QtWidgets/bug_862.py index fc164bcc4..11d0fddd8 100644 --- a/sources/pyside2/tests/QtWidgets/bug_862.py +++ b/sources/pyside2/tests/QtWidgets/bug_862.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_871.py b/sources/pyside2/tests/QtWidgets/bug_871.py index a3ea007a2..e7631d44b 100644 --- a/sources/pyside2/tests/QtWidgets/bug_871.py +++ b/sources/pyside2/tests/QtWidgets/bug_871.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_879.py b/sources/pyside2/tests/QtWidgets/bug_879.py index 2a4207aa8..0aaeb6b8c 100644 --- a/sources/pyside2/tests/QtWidgets/bug_879.py +++ b/sources/pyside2/tests/QtWidgets/bug_879.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_919.py b/sources/pyside2/tests/QtWidgets/bug_919.py index c71fd8005..4e9056900 100644 --- a/sources/pyside2/tests/QtWidgets/bug_919.py +++ b/sources/pyside2/tests/QtWidgets/bug_919.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_921.py b/sources/pyside2/tests/QtWidgets/bug_921.py index 1a60b123c..cd321a990 100644 --- a/sources/pyside2/tests/QtWidgets/bug_921.py +++ b/sources/pyside2/tests/QtWidgets/bug_921.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_941.py b/sources/pyside2/tests/QtWidgets/bug_941.py index adacd62ac..c26fc6f7d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_941.py +++ b/sources/pyside2/tests/QtWidgets/bug_941.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_964.py b/sources/pyside2/tests/QtWidgets/bug_964.py index c462d2591..e6dd21d1d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_964.py +++ b/sources/pyside2/tests/QtWidgets/bug_964.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_967.py b/sources/pyside2/tests/QtWidgets/bug_967.py index 7fa360317..d1ca281b3 100644 --- a/sources/pyside2/tests/QtWidgets/bug_967.py +++ b/sources/pyside2/tests/QtWidgets/bug_967.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_972.py b/sources/pyside2/tests/QtWidgets/bug_972.py index 09d0bee51..7276687e2 100644 --- a/sources/pyside2/tests/QtWidgets/bug_972.py +++ b/sources/pyside2/tests/QtWidgets/bug_972.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_979.py b/sources/pyside2/tests/QtWidgets/bug_979.py index 24372fea3..416f8bb1e 100644 --- a/sources/pyside2/tests/QtWidgets/bug_979.py +++ b/sources/pyside2/tests/QtWidgets/bug_979.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_988.py b/sources/pyside2/tests/QtWidgets/bug_988.py index 613c4df5e..0093ca454 100644 --- a/sources/pyside2/tests/QtWidgets/bug_988.py +++ b/sources/pyside2/tests/QtWidgets/bug_988.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_998.py b/sources/pyside2/tests/QtWidgets/bug_998.py index 104a726af..788941d81 100644 --- a/sources/pyside2/tests/QtWidgets/bug_998.py +++ b/sources/pyside2/tests/QtWidgets/bug_998.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/customproxywidget_test.py b/sources/pyside2/tests/QtWidgets/customproxywidget_test.py index 3f4811a21..e0009d6c0 100644 --- a/sources/pyside2/tests/QtWidgets/customproxywidget_test.py +++ b/sources/pyside2/tests/QtWidgets/customproxywidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/event_filter_test.py b/sources/pyside2/tests/QtWidgets/event_filter_test.py index e7e525640..e5e42c881 100644 --- a/sources/pyside2/tests/QtWidgets/event_filter_test.py +++ b/sources/pyside2/tests/QtWidgets/event_filter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/grandparent_method_test.py b/sources/pyside2/tests/QtWidgets/grandparent_method_test.py index cbd561f58..0d8ee5d15 100644 --- a/sources/pyside2/tests/QtWidgets/grandparent_method_test.py +++ b/sources/pyside2/tests/QtWidgets/grandparent_method_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/hashabletype_test.py b/sources/pyside2/tests/QtWidgets/hashabletype_test.py index 21486b28a..59d34342e 100644 --- a/sources/pyside2/tests/QtWidgets/hashabletype_test.py +++ b/sources/pyside2/tests/QtWidgets/hashabletype_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/keep_reference_test.py b/sources/pyside2/tests/QtWidgets/keep_reference_test.py index 17502c267..1180ecc19 100644 --- a/sources/pyside2/tests/QtWidgets/keep_reference_test.py +++ b/sources/pyside2/tests/QtWidgets/keep_reference_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/missing_symbols_test.py b/sources/pyside2/tests/QtWidgets/missing_symbols_test.py index fedc2859f..a93153d20 100644 --- a/sources/pyside2/tests/QtWidgets/missing_symbols_test.py +++ b/sources/pyside2/tests/QtWidgets/missing_symbols_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/paint_event_test.py b/sources/pyside2/tests/QtWidgets/paint_event_test.py index cbbe3acb3..859a2389c 100644 --- a/sources/pyside2/tests/QtWidgets/paint_event_test.py +++ b/sources/pyside2/tests/QtWidgets/paint_event_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/parent_method_test.py b/sources/pyside2/tests/QtWidgets/parent_method_test.py index b3d883362..bd17e2b0a 100644 --- a/sources/pyside2/tests/QtWidgets/parent_method_test.py +++ b/sources/pyside2/tests/QtWidgets/parent_method_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/python_properties_test.py b/sources/pyside2/tests/QtWidgets/python_properties_test.py index 077702964..be5ba6a33 100644 --- a/sources/pyside2/tests/QtWidgets/python_properties_test.py +++ b/sources/pyside2/tests/QtWidgets/python_properties_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py b/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py index 70d25295c..893bf4d47 100644 --- a/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qaction_test.py b/sources/pyside2/tests/QtWidgets/qaction_test.py index bbc8a5201..e5837b2e8 100644 --- a/sources/pyside2/tests/QtWidgets/qaction_test.py +++ b/sources/pyside2/tests/QtWidgets/qaction_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapp_issue_585.py b/sources/pyside2/tests/QtWidgets/qapp_issue_585.py index 9dd2014c0..fb50b4436 100644 --- a/sources/pyside2/tests/QtWidgets/qapp_issue_585.py +++ b/sources/pyside2/tests/QtWidgets/qapp_issue_585.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapp_test.py b/sources/pyside2/tests/QtWidgets/qapp_test.py index 63496f7dd..6cf2dcb3e 100644 --- a/sources/pyside2/tests/QtWidgets/qapp_test.py +++ b/sources/pyside2/tests/QtWidgets/qapp_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py b/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py index 21250c4cb..2c1d92a25 100644 --- a/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py +++ b/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py b/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py index 77dca33cf..9b2fc3a6c 100644 --- a/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py +++ b/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qbrush_test.py b/sources/pyside2/tests/QtWidgets/qbrush_test.py index 88e07f462..6b28a6a49 100644 --- a/sources/pyside2/tests/QtWidgets/qbrush_test.py +++ b/sources/pyside2/tests/QtWidgets/qbrush_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qcolormap_test.py b/sources/pyside2/tests/QtWidgets/qcolormap_test.py index c71216592..ed356a6f9 100644 --- a/sources/pyside2/tests/QtWidgets/qcolormap_test.py +++ b/sources/pyside2/tests/QtWidgets/qcolormap_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qdynamic_signal.py b/sources/pyside2/tests/QtWidgets/qdynamic_signal.py index cba2bc041..d566dc4ed 100644 --- a/sources/pyside2/tests/QtWidgets/qdynamic_signal.py +++ b/sources/pyside2/tests/QtWidgets/qdynamic_signal.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qfontdialog_test.py b/sources/pyside2/tests/QtWidgets/qfontdialog_test.py index 4475190a6..236d4151b 100644 --- a/sources/pyside2/tests/QtWidgets/qfontdialog_test.py +++ b/sources/pyside2/tests/QtWidgets/qfontdialog_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qformlayout_test.py b/sources/pyside2/tests/QtWidgets/qformlayout_test.py index feb4b4114..049d4f010 100644 --- a/sources/pyside2/tests/QtWidgets/qformlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qformlayout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py index ec8c046ed..21064f2c2 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py index 1a25fdf31..9e3774f2a 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py index fd79ce3aa..77a55549d 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py index 7fbdf5467..ce5718a16 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py index 8b883aa55..02b79e584 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qimage_test.py b/sources/pyside2/tests/QtWidgets/qimage_test.py index fab97ddf6..4beab84a0 100644 --- a/sources/pyside2/tests/QtWidgets/qimage_test.py +++ b/sources/pyside2/tests/QtWidgets/qimage_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py b/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py index 3f94dcd44..5088eff33 100644 --- a/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py +++ b/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py b/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py index 0591df1ba..6c76d7c42 100644 --- a/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py +++ b/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py b/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py index f1a9f363f..daf2caf2c 100644 --- a/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py +++ b/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlayout_test.py b/sources/pyside2/tests/QtWidgets/qlayout_test.py index 684a6c409..cb2f751d0 100644 --- a/sources/pyside2/tests/QtWidgets/qlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qlayout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py b/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py index 56a983d0d..b7f101a5a 100644 --- a/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py +++ b/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlistwidget_test.py b/sources/pyside2/tests/QtWidgets/qlistwidget_test.py index 063623b61..1c7430143 100644 --- a/sources/pyside2/tests/QtWidgets/qlistwidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qlistwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py b/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py index 284b5ef83..b3d03e841 100644 --- a/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py +++ b/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qmainwindow_test.py b/sources/pyside2/tests/QtWidgets/qmainwindow_test.py index ae1129494..0361ed082 100644 --- a/sources/pyside2/tests/QtWidgets/qmainwindow_test.py +++ b/sources/pyside2/tests/QtWidgets/qmainwindow_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qmenu_test.py b/sources/pyside2/tests/QtWidgets/qmenu_test.py index f5b9cbd02..bff041b27 100644 --- a/sources/pyside2/tests/QtWidgets/qmenu_test.py +++ b/sources/pyside2/tests/QtWidgets/qmenu_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qmenuadd_test.py b/sources/pyside2/tests/QtWidgets/qmenuadd_test.py index 39fa50a0d..7b97ed97e 100644 --- a/sources/pyside2/tests/QtWidgets/qmenuadd_test.py +++ b/sources/pyside2/tests/QtWidgets/qmenuadd_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qobject_mi_test.py b/sources/pyside2/tests/QtWidgets/qobject_mi_test.py index e0c98b2a7..868e54e0c 100644 --- a/sources/pyside2/tests/QtWidgets/qobject_mi_test.py +++ b/sources/pyside2/tests/QtWidgets/qobject_mi_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpen_test.py b/sources/pyside2/tests/QtWidgets/qpen_test.py index 75c728884..c0bb667b2 100644 --- a/sources/pyside2/tests/QtWidgets/qpen_test.py +++ b/sources/pyside2/tests/QtWidgets/qpen_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpicture_test.py b/sources/pyside2/tests/QtWidgets/qpicture_test.py index 15a527f6b..5809be26c 100644 --- a/sources/pyside2/tests/QtWidgets/qpicture_test.py +++ b/sources/pyside2/tests/QtWidgets/qpicture_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py b/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py index 9ae7d0fcf..ab26d25bc 100644 --- a/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py +++ b/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpushbutton_test.py b/sources/pyside2/tests/QtWidgets/qpushbutton_test.py index 7039a8e3f..bc32eb428 100644 --- a/sources/pyside2/tests/QtWidgets/qpushbutton_test.py +++ b/sources/pyside2/tests/QtWidgets/qpushbutton_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qshortcut_test.py b/sources/pyside2/tests/QtWidgets/qshortcut_test.py index 0cf749ebd..610c5fd2f 100644 --- a/sources/pyside2/tests/QtWidgets/qshortcut_test.py +++ b/sources/pyside2/tests/QtWidgets/qshortcut_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qsplitter_test.py b/sources/pyside2/tests/QtWidgets/qsplitter_test.py index f90663155..bf06305d6 100644 --- a/sources/pyside2/tests/QtWidgets/qsplitter_test.py +++ b/sources/pyside2/tests/QtWidgets/qsplitter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py b/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py index 6ab60e730..4c57227c1 100644 --- a/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py +++ b/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py b/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py index ed4c5ad00..80d7bd241 100644 --- a/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py +++ b/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qstyle_test.py b/sources/pyside2/tests/QtWidgets/qstyle_test.py index 0650c96e9..0aae41d51 100644 --- a/sources/pyside2/tests/QtWidgets/qstyle_test.py +++ b/sources/pyside2/tests/QtWidgets/qstyle_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtableview_test.py b/sources/pyside2/tests/QtWidgets/qtableview_test.py index f7d0f4c4e..fb1d913e2 100644 --- a/sources/pyside2/tests/QtWidgets/qtableview_test.py +++ b/sources/pyside2/tests/QtWidgets/qtableview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtabwidget_test.py b/sources/pyside2/tests/QtWidgets/qtabwidget_test.py index b36310ed0..40c3d059a 100644 --- a/sources/pyside2/tests/QtWidgets/qtabwidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qtabwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py b/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py index 8e9b36fab..5e3cd894d 100644 --- a/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py +++ b/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py b/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py index f60102806..6fe08ecf9 100644 --- a/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py +++ b/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtextedit_test.py b/sources/pyside2/tests/QtWidgets/qtextedit_test.py index f67f8fbe1..ee3016506 100644 --- a/sources/pyside2/tests/QtWidgets/qtextedit_test.py +++ b/sources/pyside2/tests/QtWidgets/qtextedit_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtoolbar_test.py b/sources/pyside2/tests/QtWidgets/qtoolbar_test.py index fc55d8bfe..f7c5cc052 100644 --- a/sources/pyside2/tests/QtWidgets/qtoolbar_test.py +++ b/sources/pyside2/tests/QtWidgets/qtoolbar_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtoolbox_test.py b/sources/pyside2/tests/QtWidgets/qtoolbox_test.py index ac6e590d1..13ed8ecdd 100644 --- a/sources/pyside2/tests/QtWidgets/qtoolbox_test.py +++ b/sources/pyside2/tests/QtWidgets/qtoolbox_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtreeview_test.py b/sources/pyside2/tests/QtWidgets/qtreeview_test.py index 703131ec3..6d89d1a49 100644 --- a/sources/pyside2/tests/QtWidgets/qtreeview_test.py +++ b/sources/pyside2/tests/QtWidgets/qtreeview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtreewidget_test.py b/sources/pyside2/tests/QtWidgets/qtreewidget_test.py index 11fa83c5a..84459b624 100644 --- a/sources/pyside2/tests/QtWidgets/qtreewidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qtreewidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qvariant_test.py b/sources/pyside2/tests/QtWidgets/qvariant_test.py index f80460697..ae6e7616c 100644 --- a/sources/pyside2/tests/QtWidgets/qvariant_test.py +++ b/sources/pyside2/tests/QtWidgets/qvariant_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py b/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py index fb5bebb53..d55dd80f3 100644 --- a/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qwidget_test.py b/sources/pyside2/tests/QtWidgets/qwidget_test.py index 22ea82cc6..6153864db 100644 --- a/sources/pyside2/tests/QtWidgets/qwidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/reference_count_test.py b/sources/pyside2/tests/QtWidgets/reference_count_test.py index 9fa51f161..91ab28579 100644 --- a/sources/pyside2/tests/QtWidgets/reference_count_test.py +++ b/sources/pyside2/tests/QtWidgets/reference_count_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/standardpixmap_test.py b/sources/pyside2/tests/QtWidgets/standardpixmap_test.py index dc93ba354..701745baf 100644 --- a/sources/pyside2/tests/QtWidgets/standardpixmap_test.py +++ b/sources/pyside2/tests/QtWidgets/standardpixmap_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/test_module_template.py b/sources/pyside2/tests/QtWidgets/test_module_template.py index d5e9db0f0..5656f4d64 100644 --- a/sources/pyside2/tests/QtWidgets/test_module_template.py +++ b/sources/pyside2/tests/QtWidgets/test_module_template.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py b/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py index b46ca8c88..749a8d3a5 100644 --- a/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py +++ b/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py b/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py index d7b82d786..83f1ab99d 100644 --- a/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py +++ b/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/wrong_return_test.py b/sources/pyside2/tests/QtWidgets/wrong_return_test.py index f50420a64..d6c9fa7b6 100644 --- a/sources/pyside2/tests/QtWidgets/wrong_return_test.py +++ b/sources/pyside2/tests/QtWidgets/wrong_return_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtXml/qdomdocument_test.py b/sources/pyside2/tests/QtXml/qdomdocument_test.py index ca797445f..bd9fb671e 100644 --- a/sources/pyside2/tests/QtXml/qdomdocument_test.py +++ b/sources/pyside2/tests/QtXml/qdomdocument_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py b/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py index 108fc9b86..168c9b3b6 100644 --- a/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py +++ b/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtXmlPatterns/import_test.py b/sources/pyside2/tests/QtXmlPatterns/import_test.py index 5c9c3fe5d..a2cee57be 100644 --- a/sources/pyside2/tests/QtXmlPatterns/import_test.py +++ b/sources/pyside2/tests/QtXmlPatterns/import_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/mac/qmacstyle_test.py b/sources/pyside2/tests/mac/qmacstyle_test.py index 47925a435..848582167 100644 --- a/sources/pyside2/tests/mac/qmacstyle_test.py +++ b/sources/pyside2/tests/mac/qmacstyle_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/manually/bug_841.py b/sources/pyside2/tests/manually/bug_841.py index dce0a3a75..f54a8c924 100644 --- a/sources/pyside2/tests/manually/bug_841.py +++ b/sources/pyside2/tests/manually/bug_841.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/all_modules_load_test.py b/sources/pyside2/tests/pysidetest/all_modules_load_test.py index 7618d0bc3..09c2f2407 100644 --- a/sources/pyside2/tests/pysidetest/all_modules_load_test.py +++ b/sources/pyside2/tests/pysidetest/all_modules_load_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/bug_1016.py b/sources/pyside2/tests/pysidetest/bug_1016.py index 745012248..6f976d2b9 100644 --- a/sources/pyside2/tests/pysidetest/bug_1016.py +++ b/sources/pyside2/tests/pysidetest/bug_1016.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/decoratedslot_test.py b/sources/pyside2/tests/pysidetest/decoratedslot_test.py index 6268f331c..a6ab77fea 100644 --- a/sources/pyside2/tests/pysidetest/decoratedslot_test.py +++ b/sources/pyside2/tests/pysidetest/decoratedslot_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py b/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py index ec557340a..4f5aa4196 100644 --- a/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py +++ b/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/enum_test.py b/sources/pyside2/tests/pysidetest/enum_test.py index b3cb4e4d7..6a44c94e9 100644 --- a/sources/pyside2/tests/pysidetest/enum_test.py +++ b/sources/pyside2/tests/pysidetest/enum_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/hiddenobject.cpp b/sources/pyside2/tests/pysidetest/hiddenobject.cpp index da6d0434b..7212dbb65 100644 --- a/sources/pyside2/tests/pysidetest/hiddenobject.cpp +++ b/sources/pyside2/tests/pysidetest/hiddenobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/hiddenobject.h b/sources/pyside2/tests/pysidetest/hiddenobject.h index b5e3c8e0b..0c7883818 100644 --- a/sources/pyside2/tests/pysidetest/hiddenobject.h +++ b/sources/pyside2/tests/pysidetest/hiddenobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py b/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py index 6be6245f9..8a8ac6906 100644 --- a/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py +++ b/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/list_signal_test.py b/sources/pyside2/tests/pysidetest/list_signal_test.py index 1a130070e..d3286a851 100644 --- a/sources/pyside2/tests/pysidetest/list_signal_test.py +++ b/sources/pyside2/tests/pysidetest/list_signal_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py b/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py index cdd9ea19a..113ac7b6d 100644 --- a/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py +++ b/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/modelview_test.py b/sources/pyside2/tests/pysidetest/modelview_test.py index 3a02946dc..d1b0b9182 100644 --- a/sources/pyside2/tests/pysidetest/modelview_test.py +++ b/sources/pyside2/tests/pysidetest/modelview_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py b/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py index b09a7fb42..b5d197197 100644 --- a/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py +++ b/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/notify_id.py b/sources/pyside2/tests/pysidetest/notify_id.py index 09226e6e2..167240fea 100644 --- a/sources/pyside2/tests/pysidetest/notify_id.py +++ b/sources/pyside2/tests/pysidetest/notify_id.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/pysidetest_global.h b/sources/pyside2/tests/pysidetest/pysidetest_global.h index 9fc1828e1..d41b3d68c 100644 --- a/sources/pyside2/tests/pysidetest/pysidetest_global.h +++ b/sources/pyside2/tests/pysidetest/pysidetest_global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py b/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py index 6205748ec..6295f4ff4 100644 --- a/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py +++ b/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/qvariant_test.py b/sources/pyside2/tests/pysidetest/qvariant_test.py index 46c9ddbda..2c341a53f 100644 --- a/sources/pyside2/tests/pysidetest/qvariant_test.py +++ b/sources/pyside2/tests/pysidetest/qvariant_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signal_slot_warning.py b/sources/pyside2/tests/pysidetest/signal_slot_warning.py index fd3d41b52..90a4813e0 100644 --- a/sources/pyside2/tests/pysidetest/signal_slot_warning.py +++ b/sources/pyside2/tests/pysidetest/signal_slot_warning.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signalandnamespace_test.py b/sources/pyside2/tests/pysidetest/signalandnamespace_test.py index 846e5b2b9..480910da0 100644 --- a/sources/pyside2/tests/pysidetest/signalandnamespace_test.py +++ b/sources/pyside2/tests/pysidetest/signalandnamespace_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py b/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py index 1bd08c071..176ec9523 100644 --- a/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py +++ b/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py b/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py index 8014d4879..260fefeaa 100644 --- a/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py +++ b/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testobject.cpp b/sources/pyside2/tests/pysidetest/testobject.cpp index 4fe98461c..a7e69b1b8 100644 --- a/sources/pyside2/tests/pysidetest/testobject.cpp +++ b/sources/pyside2/tests/pysidetest/testobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testobject.h b/sources/pyside2/tests/pysidetest/testobject.h index 7e1f46250..e9fa7d0d2 100644 --- a/sources/pyside2/tests/pysidetest/testobject.h +++ b/sources/pyside2/tests/pysidetest/testobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testview.cpp b/sources/pyside2/tests/pysidetest/testview.cpp index b974f1fc7..d0efc3ca6 100644 --- a/sources/pyside2/tests/pysidetest/testview.cpp +++ b/sources/pyside2/tests/pysidetest/testview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testview.h b/sources/pyside2/tests/pysidetest/testview.h index 22caab59f..94a3666f2 100644 --- a/sources/pyside2/tests/pysidetest/testview.h +++ b/sources/pyside2/tests/pysidetest/testview.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/typedef_signal_test.py b/sources/pyside2/tests/pysidetest/typedef_signal_test.py index 7f2f47344..dd09e43b0 100644 --- a/sources/pyside2/tests/pysidetest/typedef_signal_test.py +++ b/sources/pyside2/tests/pysidetest/typedef_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/version_test.py b/sources/pyside2/tests/pysidetest/version_test.py index 01e88dbc6..9500b48bc 100644 --- a/sources/pyside2/tests/pysidetest/version_test.py +++ b/sources/pyside2/tests/pysidetest/version_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/CMakeLists.txt b/sources/pyside2/tests/registry/CMakeLists.txt index 0d0e54623..70214699d 100644 --- a/sources/pyside2/tests/registry/CMakeLists.txt +++ b/sources/pyside2/tests/registry/CMakeLists.txt @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/existence_test.py b/sources/pyside2/tests/registry/existence_test.py index 3c5b7e545..2f7bac383 100644 --- a/sources/pyside2/tests/registry/existence_test.py +++ b/sources/pyside2/tests/registry/existence_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py index 3bdced8eb..5ee547806 100644 --- a/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py index 553e3e317..011b429a4 100644 --- a/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py index 65b07b569..5e9119171 100644 --- a/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py index 277277d75..ec9569fc6 100644 --- a/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py index 27dcd61a1..108a5019e 100644 --- a/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py index 9378fe433..85fdd3568 100644 --- a/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/init_platform.py b/sources/pyside2/tests/registry/init_platform.py index 1ff83f47e..f9549d1fd 100644 --- a/sources/pyside2/tests/registry/init_platform.py +++ b/sources/pyside2/tests/registry/init_platform.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/signature_test.py b/sources/pyside2/tests/registry/signature_test.py index 105f46e15..08c3d2bf1 100644 --- a/sources/pyside2/tests/registry/signature_test.py +++ b/sources/pyside2/tests/registry/signature_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/util.py b/sources/pyside2/tests/registry/util.py index 7e048cb24..fa4c56df5 100644 --- a/sources/pyside2/tests/registry/util.py +++ b/sources/pyside2/tests/registry/util.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/run_test.sh b/sources/pyside2/tests/run_test.sh index a961653a5..c714e307b 100755 --- a/sources/pyside2/tests/run_test.sh +++ b/sources/pyside2/tests/run_test.sh @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/args_dont_match_test.py b/sources/pyside2/tests/signals/args_dont_match_test.py index 03d2ec324..40a6e8811 100644 --- a/sources/pyside2/tests/signals/args_dont_match_test.py +++ b/sources/pyside2/tests/signals/args_dont_match_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_189.py b/sources/pyside2/tests/signals/bug_189.py index dc2c314aa..ae8aa6a44 100644 --- a/sources/pyside2/tests/signals/bug_189.py +++ b/sources/pyside2/tests/signals/bug_189.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_311.py b/sources/pyside2/tests/signals/bug_311.py index 0ea066b49..4d19d4dfd 100644 --- a/sources/pyside2/tests/signals/bug_311.py +++ b/sources/pyside2/tests/signals/bug_311.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_312.py b/sources/pyside2/tests/signals/bug_312.py index 631e224b3..ad9185903 100644 --- a/sources/pyside2/tests/signals/bug_312.py +++ b/sources/pyside2/tests/signals/bug_312.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_319.py b/sources/pyside2/tests/signals/bug_319.py index 637f36bb4..c3dd1184d 100644 --- a/sources/pyside2/tests/signals/bug_319.py +++ b/sources/pyside2/tests/signals/bug_319.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_79.py b/sources/pyside2/tests/signals/bug_79.py index d0a6515f3..f86a61d59 100644 --- a/sources/pyside2/tests/signals/bug_79.py +++ b/sources/pyside2/tests/signals/bug_79.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/decorators_test.py b/sources/pyside2/tests/signals/decorators_test.py index ec43ac825..7e398eb76 100644 --- a/sources/pyside2/tests/signals/decorators_test.py +++ b/sources/pyside2/tests/signals/decorators_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/disconnect_test.py b/sources/pyside2/tests/signals/disconnect_test.py index b17caa8e6..d72f3fcf0 100644 --- a/sources/pyside2/tests/signals/disconnect_test.py +++ b/sources/pyside2/tests/signals/disconnect_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/invalid_callback_test.py b/sources/pyside2/tests/signals/invalid_callback_test.py index a6ed2456f..2b6a9edec 100644 --- a/sources/pyside2/tests/signals/invalid_callback_test.py +++ b/sources/pyside2/tests/signals/invalid_callback_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/lambda_gui_test.py b/sources/pyside2/tests/signals/lambda_gui_test.py index dc6ef0296..4c2471442 100644 --- a/sources/pyside2/tests/signals/lambda_gui_test.py +++ b/sources/pyside2/tests/signals/lambda_gui_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/lambda_test.py b/sources/pyside2/tests/signals/lambda_test.py index 9e602e72f..031b3976d 100644 --- a/sources/pyside2/tests/signals/lambda_test.py +++ b/sources/pyside2/tests/signals/lambda_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/leaking_signal_test.py b/sources/pyside2/tests/signals/leaking_signal_test.py index 770e59556..0e1c8170f 100644 --- a/sources/pyside2/tests/signals/leaking_signal_test.py +++ b/sources/pyside2/tests/signals/leaking_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/multiple_connections_gui_test.py b/sources/pyside2/tests/signals/multiple_connections_gui_test.py index 28e7867cc..c175b257a 100644 --- a/sources/pyside2/tests/signals/multiple_connections_gui_test.py +++ b/sources/pyside2/tests/signals/multiple_connections_gui_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/multiple_connections_test.py b/sources/pyside2/tests/signals/multiple_connections_test.py index 39950da5d..9d7556151 100644 --- a/sources/pyside2/tests/signals/multiple_connections_test.py +++ b/sources/pyside2/tests/signals/multiple_connections_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/pysignal_test.py b/sources/pyside2/tests/signals/pysignal_test.py index a42793b02..897c8d064 100644 --- a/sources/pyside2/tests/signals/pysignal_test.py +++ b/sources/pyside2/tests/signals/pysignal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/qobject_destroyed_test.py b/sources/pyside2/tests/signals/qobject_destroyed_test.py index 776702ee1..e51681df2 100644 --- a/sources/pyside2/tests/signals/qobject_destroyed_test.py +++ b/sources/pyside2/tests/signals/qobject_destroyed_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/qobject_receivers_test.py b/sources/pyside2/tests/signals/qobject_receivers_test.py index 8caaa7edb..602b16488 100644 --- a/sources/pyside2/tests/signals/qobject_receivers_test.py +++ b/sources/pyside2/tests/signals/qobject_receivers_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/qobject_sender_test.py b/sources/pyside2/tests/signals/qobject_sender_test.py index dfc8fac83..a2e8ea743 100644 --- a/sources/pyside2/tests/signals/qobject_sender_test.py +++ b/sources/pyside2/tests/signals/qobject_sender_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref01_test.py b/sources/pyside2/tests/signals/ref01_test.py index ad56ca45f..7e4abe360 100644 --- a/sources/pyside2/tests/signals/ref01_test.py +++ b/sources/pyside2/tests/signals/ref01_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref02_test.py b/sources/pyside2/tests/signals/ref02_test.py index 7c16b2c64..1964888b8 100644 --- a/sources/pyside2/tests/signals/ref02_test.py +++ b/sources/pyside2/tests/signals/ref02_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref03_test.py b/sources/pyside2/tests/signals/ref03_test.py index 1f2d7a055..260587b5b 100644 --- a/sources/pyside2/tests/signals/ref03_test.py +++ b/sources/pyside2/tests/signals/ref03_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref04_test.py b/sources/pyside2/tests/signals/ref04_test.py index 73ae92124..9f3f283d2 100644 --- a/sources/pyside2/tests/signals/ref04_test.py +++ b/sources/pyside2/tests/signals/ref04_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref05_test.py b/sources/pyside2/tests/signals/ref05_test.py index 2bd7d79c6..1435f7ff9 100644 --- a/sources/pyside2/tests/signals/ref05_test.py +++ b/sources/pyside2/tests/signals/ref05_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref06_test.py b/sources/pyside2/tests/signals/ref06_test.py index ee2aa5700..645d507ec 100644 --- a/sources/pyside2/tests/signals/ref06_test.py +++ b/sources/pyside2/tests/signals/ref06_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/segfault_proxyparent_test.py b/sources/pyside2/tests/signals/segfault_proxyparent_test.py index b45e53579..27530aae7 100644 --- a/sources/pyside2/tests/signals/segfault_proxyparent_test.py +++ b/sources/pyside2/tests/signals/segfault_proxyparent_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/self_connect_test.py b/sources/pyside2/tests/signals/self_connect_test.py index fde5fa885..ef47f20d2 100644 --- a/sources/pyside2/tests/signals/self_connect_test.py +++ b/sources/pyside2/tests/signals/self_connect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/short_circuit_test.py b/sources/pyside2/tests/signals/short_circuit_test.py index a47385f5c..00f4947bf 100644 --- a/sources/pyside2/tests/signals/short_circuit_test.py +++ b/sources/pyside2/tests/signals/short_circuit_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal2signal_connect_test.py b/sources/pyside2/tests/signals/signal2signal_connect_test.py index f088212de..6d8836846 100644 --- a/sources/pyside2/tests/signals/signal2signal_connect_test.py +++ b/sources/pyside2/tests/signals/signal2signal_connect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_autoconnect_test.py b/sources/pyside2/tests/signals/signal_autoconnect_test.py index e8ff6200e..b938e3327 100644 --- a/sources/pyside2/tests/signals/signal_autoconnect_test.py +++ b/sources/pyside2/tests/signals/signal_autoconnect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_connectiontype_support_test.py b/sources/pyside2/tests/signals/signal_connectiontype_support_test.py index 50a24084e..e65beed2b 100644 --- a/sources/pyside2/tests/signals/signal_connectiontype_support_test.py +++ b/sources/pyside2/tests/signals/signal_connectiontype_support_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_emission_gui_test.py b/sources/pyside2/tests/signals/signal_emission_gui_test.py index b114351c2..adc390e97 100644 --- a/sources/pyside2/tests/signals/signal_emission_gui_test.py +++ b/sources/pyside2/tests/signals/signal_emission_gui_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_emission_test.py b/sources/pyside2/tests/signals/signal_emission_test.py index 8e36d9826..3e812a12f 100644 --- a/sources/pyside2/tests/signals/signal_emission_test.py +++ b/sources/pyside2/tests/signals/signal_emission_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_func_test.py b/sources/pyside2/tests/signals/signal_func_test.py index 80e05a76f..250c38600 100644 --- a/sources/pyside2/tests/signals/signal_func_test.py +++ b/sources/pyside2/tests/signals/signal_func_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_manager_refcount_test.py b/sources/pyside2/tests/signals/signal_manager_refcount_test.py index 3a1939cc6..891b00516 100644 --- a/sources/pyside2/tests/signals/signal_manager_refcount_test.py +++ b/sources/pyside2/tests/signals/signal_manager_refcount_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_number_limit_test.py b/sources/pyside2/tests/signals/signal_number_limit_test.py index 9850f17ba..bc9789276 100644 --- a/sources/pyside2/tests/signals/signal_number_limit_test.py +++ b/sources/pyside2/tests/signals/signal_number_limit_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_object_test.py b/sources/pyside2/tests/signals/signal_object_test.py index 3247f7c46..7b0e3d209 100644 --- a/sources/pyside2/tests/signals/signal_object_test.py +++ b/sources/pyside2/tests/signals/signal_object_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_signature_test.py b/sources/pyside2/tests/signals/signal_signature_test.py index e94c1722d..8bc645d55 100644 --- a/sources/pyside2/tests/signals/signal_signature_test.py +++ b/sources/pyside2/tests/signals/signal_signature_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_with_primitive_type_test.py b/sources/pyside2/tests/signals/signal_with_primitive_type_test.py index cf1075051..7802fdb83 100644 --- a/sources/pyside2/tests/signals/signal_with_primitive_type_test.py +++ b/sources/pyside2/tests/signals/signal_with_primitive_type_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/slot_reference_count_test.py b/sources/pyside2/tests/signals/slot_reference_count_test.py index 246c3a5b8..b03074645 100644 --- a/sources/pyside2/tests/signals/slot_reference_count_test.py +++ b/sources/pyside2/tests/signals/slot_reference_count_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/static_metaobject_test.py b/sources/pyside2/tests/signals/static_metaobject_test.py index e0575bc3e..2df066254 100644 --- a/sources/pyside2/tests/signals/static_metaobject_test.py +++ b/sources/pyside2/tests/signals/static_metaobject_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/tools/list-class-hierarchy.py b/sources/pyside2/tests/tools/list-class-hierarchy.py index 742cd4fa7..41f16bf6f 100755 --- a/sources/pyside2/tests/tools/list-class-hierarchy.py +++ b/sources/pyside2/tests/tools/list-class-hierarchy.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/color.py b/sources/pyside2/tests/util/color.py index e7ab84d0e..73c7827ca 100644 --- a/sources/pyside2/tests/util/color.py +++ b/sources/pyside2/tests/util/color.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/helper/__init__.py b/sources/pyside2/tests/util/helper/__init__.py index fa119c960..fa85d9ab4 100644 --- a/sources/pyside2/tests/util/helper/__init__.py +++ b/sources/pyside2/tests/util/helper/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/helper/docmodifier.py b/sources/pyside2/tests/util/helper/docmodifier.py index 16d3e28ad..b87894348 100644 --- a/sources/pyside2/tests/util/helper/docmodifier.py +++ b/sources/pyside2/tests/util/helper/docmodifier.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/httpd.py b/sources/pyside2/tests/util/httpd.py index 8214cf033..896bb4388 100644 --- a/sources/pyside2/tests/util/httpd.py +++ b/sources/pyside2/tests/util/httpd.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/processtimer.py b/sources/pyside2/tests/util/processtimer.py index 19206472e..dfe16fbea 100644 --- a/sources/pyside2/tests/util/processtimer.py +++ b/sources/pyside2/tests/util/processtimer.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/py2xfunctions.py b/sources/pyside2/tests/util/py2xfunctions.py index d848c2c61..d4693543e 100644 --- a/sources/pyside2/tests/util/py2xfunctions.py +++ b/sources/pyside2/tests/util/py2xfunctions.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/py3kcompat.py b/sources/pyside2/tests/util/py3kcompat.py index 19e50dc71..37df63092 100644 --- a/sources/pyside2/tests/util/py3kcompat.py +++ b/sources/pyside2/tests/util/py3kcompat.py @@ -4,7 +4,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/py3xfunctions.py b/sources/pyside2/tests/util/py3xfunctions.py index e7014e56a..7efbcffbe 100644 --- a/sources/pyside2/tests/util/py3xfunctions.py +++ b/sources/pyside2/tests/util/py3xfunctions.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/pyqt_diff.py b/sources/pyside2/tests/util/pyqt_diff.py index 04e873556..ff33a1f46 100644 --- a/sources/pyside2/tests/util/pyqt_diff.py +++ b/sources/pyside2/tests/util/pyqt_diff.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/pyqtcheck.py b/sources/pyside2/tests/util/pyqtcheck.py index 7734ea6a7..672b306c8 100644 --- a/sources/pyside2/tests/util/pyqtcheck.py +++ b/sources/pyside2/tests/util/pyqtcheck.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/rename_imports.sh b/sources/pyside2/tests/util/rename_imports.sh index e985a9100..fe204e3f7 100755 --- a/sources/pyside2/tests/util/rename_imports.sh +++ b/sources/pyside2/tests/util/rename_imports.sh @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/test_processtimer.py b/sources/pyside2/tests/util/test_processtimer.py index 66a2a57db..41f4712dc 100644 --- a/sources/pyside2/tests/util/test_processtimer.py +++ b/sources/pyside2/tests/util/test_processtimer.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp b/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp index b862ba548..dfea8c2c4 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp +++ b/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetabuilder.h b/sources/shiboken2/ApiExtractor/abstractmetabuilder.h index 33631d00f..696a94eda 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetabuilder.h +++ b/sources/shiboken2/ApiExtractor/abstractmetabuilder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h b/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h index 7f5e866ab..3c30571e2 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h +++ b/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetalang.cpp b/sources/shiboken2/ApiExtractor/abstractmetalang.cpp index 235413165..e5b7c3ffe 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetalang.cpp +++ b/sources/shiboken2/ApiExtractor/abstractmetalang.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetalang.h b/sources/shiboken2/ApiExtractor/abstractmetalang.h index 7e0bfa322..a85597d5e 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetalang.h +++ b/sources/shiboken2/ApiExtractor/abstractmetalang.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h b/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h index 6522ba2dd..534347503 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h +++ b/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/apiextractor.cpp b/sources/shiboken2/ApiExtractor/apiextractor.cpp index 6508d378a..258dcb4ba 100644 --- a/sources/shiboken2/ApiExtractor/apiextractor.cpp +++ b/sources/shiboken2/ApiExtractor/apiextractor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/apiextractor.h b/sources/shiboken2/ApiExtractor/apiextractor.h index ac90f5b2f..a4b6fddfc 100644 --- a/sources/shiboken2/ApiExtractor/apiextractor.h +++ b/sources/shiboken2/ApiExtractor/apiextractor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/apiextractormacros.h b/sources/shiboken2/ApiExtractor/apiextractormacros.h index 41a710773..5ed706d5b 100644 --- a/sources/shiboken2/ApiExtractor/apiextractormacros.h +++ b/sources/shiboken2/ApiExtractor/apiextractormacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp index b57ef2f43..7f309051c 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h index c97b7d2b7..e23f96740 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp index 8d0fd098a..aea1f4daa 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h index 323efdd2a..55d01b813 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp index 16a7a3147..144858684 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangparser.h b/sources/shiboken2/ApiExtractor/clangparser/clangparser.h index ef1424f17..13c30cb1a 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangparser.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp index f30a585bc..0e568b533 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangutils.h b/sources/shiboken2/ApiExtractor/clangparser/clangutils.h index 3437f51eb..7898a85f0 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangutils.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangutils.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp index e9af23bc5..2793d2829 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h index f556da551..88e473998 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h +++ b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/dependency.h b/sources/shiboken2/ApiExtractor/dependency.h index 17fbffcce..9ec941d92 100644 --- a/sources/shiboken2/ApiExtractor/dependency.h +++ b/sources/shiboken2/ApiExtractor/dependency.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/docparser.cpp b/sources/shiboken2/ApiExtractor/docparser.cpp index d24e09acd..cb2609db8 100644 --- a/sources/shiboken2/ApiExtractor/docparser.cpp +++ b/sources/shiboken2/ApiExtractor/docparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/docparser.h b/sources/shiboken2/ApiExtractor/docparser.h index 1da58fc11..943bfa23b 100644 --- a/sources/shiboken2/ApiExtractor/docparser.h +++ b/sources/shiboken2/ApiExtractor/docparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/doxygenparser.cpp b/sources/shiboken2/ApiExtractor/doxygenparser.cpp index 1cffa3b67..50a54e568 100644 --- a/sources/shiboken2/ApiExtractor/doxygenparser.cpp +++ b/sources/shiboken2/ApiExtractor/doxygenparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/doxygenparser.h b/sources/shiboken2/ApiExtractor/doxygenparser.h index 3f9ca5142..5e790d324 100644 --- a/sources/shiboken2/ApiExtractor/doxygenparser.h +++ b/sources/shiboken2/ApiExtractor/doxygenparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/fileout.cpp b/sources/shiboken2/ApiExtractor/fileout.cpp index 4ee5abd52..156fa0d40 100644 --- a/sources/shiboken2/ApiExtractor/fileout.cpp +++ b/sources/shiboken2/ApiExtractor/fileout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/fileout.h b/sources/shiboken2/ApiExtractor/fileout.h index de08a824c..a86a1fba9 100644 --- a/sources/shiboken2/ApiExtractor/fileout.h +++ b/sources/shiboken2/ApiExtractor/fileout.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/graph.cpp b/sources/shiboken2/ApiExtractor/graph.cpp index 6ba4d994a..1f898b1a0 100644 --- a/sources/shiboken2/ApiExtractor/graph.cpp +++ b/sources/shiboken2/ApiExtractor/graph.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/graph.h b/sources/shiboken2/ApiExtractor/graph.h index 78b931320..183625b16 100644 --- a/sources/shiboken2/ApiExtractor/graph.h +++ b/sources/shiboken2/ApiExtractor/graph.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/header_paths.h b/sources/shiboken2/ApiExtractor/header_paths.h index f70709b7c..702ede84f 100644 --- a/sources/shiboken2/ApiExtractor/header_paths.h +++ b/sources/shiboken2/ApiExtractor/header_paths.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/include.cpp b/sources/shiboken2/ApiExtractor/include.cpp index deae2d2ac..aa4f535f4 100644 --- a/sources/shiboken2/ApiExtractor/include.cpp +++ b/sources/shiboken2/ApiExtractor/include.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/include.h b/sources/shiboken2/ApiExtractor/include.h index dc4965e1a..c0fd0f872 100644 --- a/sources/shiboken2/ApiExtractor/include.h +++ b/sources/shiboken2/ApiExtractor/include.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel.cpp b/sources/shiboken2/ApiExtractor/parser/codemodel.cpp index 1262f5901..7e148c191 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel.cpp +++ b/sources/shiboken2/ApiExtractor/parser/codemodel.cpp @@ -4,7 +4,7 @@ ** Copyright (C) 2002-2005 Roberto Raggi ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel.h b/sources/shiboken2/ApiExtractor/parser/codemodel.h index ed0eedf7d..990b3c14b 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel.h +++ b/sources/shiboken2/ApiExtractor/parser/codemodel.h @@ -4,7 +4,7 @@ ** Copyright (C) 2002-2005 Roberto Raggi ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h b/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h index 3115a9a94..e35d2e9a4 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h +++ b/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h b/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h index d5a9f2850..2ec5f82ee 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h +++ b/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h @@ -4,7 +4,7 @@ ** Copyright (C) 2002-2005 Roberto Raggi ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp b/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp index 84723eb14..c0f8a1e4d 100644 --- a/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp +++ b/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/enumvalue.h b/sources/shiboken2/ApiExtractor/parser/enumvalue.h index 2e2070306..3fd80927c 100644 --- a/sources/shiboken2/ApiExtractor/parser/enumvalue.h +++ b/sources/shiboken2/ApiExtractor/parser/enumvalue.h @@ -3,7 +3,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/qtdocparser.cpp b/sources/shiboken2/ApiExtractor/qtdocparser.cpp index 85c3473cd..36985ba92 100644 --- a/sources/shiboken2/ApiExtractor/qtdocparser.cpp +++ b/sources/shiboken2/ApiExtractor/qtdocparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/qtdocparser.h b/sources/shiboken2/ApiExtractor/qtdocparser.h index f6bd479cd..8fe1d7beb 100644 --- a/sources/shiboken2/ApiExtractor/qtdocparser.h +++ b/sources/shiboken2/ApiExtractor/qtdocparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/reporthandler.cpp b/sources/shiboken2/ApiExtractor/reporthandler.cpp index bb3677772..320a98c60 100644 --- a/sources/shiboken2/ApiExtractor/reporthandler.cpp +++ b/sources/shiboken2/ApiExtractor/reporthandler.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/reporthandler.h b/sources/shiboken2/ApiExtractor/reporthandler.h index a22e58d46..c51530077 100644 --- a/sources/shiboken2/ApiExtractor/reporthandler.h +++ b/sources/shiboken2/ApiExtractor/reporthandler.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp index 9acbba675..5f4ce5c9d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h index 811bf5a10..be2b0aa4e 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp index 1d52c1e41..b1755820e 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h index a806d36e3..eeea22ace 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp b/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp index 9ad846a52..37532799d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testaddfunction.h b/sources/shiboken2/ApiExtractor/tests/testaddfunction.h index 16a4ede09..26df04c01 100644 --- a/sources/shiboken2/ApiExtractor/tests/testaddfunction.h +++ b/sources/shiboken2/ApiExtractor/tests/testaddfunction.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp b/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp index eb10fc8a0..8f391af44 100644 --- a/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testarrayargument.h b/sources/shiboken2/ApiExtractor/tests/testarrayargument.h index 45ca8e655..7dcbf374b 100644 --- a/sources/shiboken2/ApiExtractor/tests/testarrayargument.h +++ b/sources/shiboken2/ApiExtractor/tests/testarrayargument.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp index ad245633e..d36708ec0 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h index 56c1c7cba..ba899b7d8 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h +++ b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp b/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp index 1c79a5a7a..b7279d910 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcontainer.h b/sources/shiboken2/ApiExtractor/tests/testcontainer.h index f154ea212..b970aaf10 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcontainer.h +++ b/sources/shiboken2/ApiExtractor/tests/testcontainer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp index 86f571328..2584db577 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h index f28747ab5..138f884f2 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h +++ b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp index fb9290795..263ddc8d7 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h index c02a9708b..8c610f090 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h +++ b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp b/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp index a4b4c2388..7f803f69d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testctorinformation.h b/sources/shiboken2/ApiExtractor/tests/testctorinformation.h index f5ffe5501..a2a29e0ae 100644 --- a/sources/shiboken2/ApiExtractor/tests/testctorinformation.h +++ b/sources/shiboken2/ApiExtractor/tests/testctorinformation.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp index 6b6c5d011..b15bc5ac5 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h index d04c6dc92..afdc0d655 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h +++ b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp index 63b745c12..316c7e7c5 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h index 21a3b1822..82cfd1ee8 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h +++ b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testenum.cpp b/sources/shiboken2/ApiExtractor/tests/testenum.cpp index 970f6d00c..44148cd28 100644 --- a/sources/shiboken2/ApiExtractor/tests/testenum.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testenum.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testenum.h b/sources/shiboken2/ApiExtractor/tests/testenum.h index 8b46b1bd6..d59e5dff4 100644 --- a/sources/shiboken2/ApiExtractor/tests/testenum.h +++ b/sources/shiboken2/ApiExtractor/tests/testenum.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp b/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp index 97f0d568e..82aa96db6 100644 --- a/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testextrainclude.h b/sources/shiboken2/ApiExtractor/tests/testextrainclude.h index c569901e1..cb0dee506 100644 --- a/sources/shiboken2/ApiExtractor/tests/testextrainclude.h +++ b/sources/shiboken2/ApiExtractor/tests/testextrainclude.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp index a29d740bf..c291d8211 100644 --- a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h index d4b6c7d2c..c37871485 100644 --- a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h +++ b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp index 7e8db42f3..3aada8791 100644 --- a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h index 657c1a558..7ba7924b8 100644 --- a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h +++ b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp index ecadf311b..a16511032 100644 --- a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h index 0e2a882fe..941b00e4b 100644 --- a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h +++ b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp index cc95186ef..74427448f 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h index fb8f6fc01..f4b316ce1 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h +++ b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp index dd82a0f14..9eaefa6a5 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h index 6bb62daf4..b8af43b3a 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h +++ b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp index b78e6ec01..971143304 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h index 2313073bb..5fc83a597 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h +++ b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp b/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp index ca6ce0589..28de6607d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnamespace.h b/sources/shiboken2/ApiExtractor/tests/testnamespace.h index d4451a938..469308c58 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnamespace.h +++ b/sources/shiboken2/ApiExtractor/tests/testnamespace.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp index 296aa4385..2aa13c86f 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h index 737e81fab..9e512e7d7 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h +++ b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp index 3491d5cb4..509229a37 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h index e8af1fa8e..d563da9d9 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h +++ b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp index 7646dd23a..a5960a2d8 100644 --- a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h index ea9276de3..0b2ecb47a 100644 --- a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h +++ b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp index e9f9f0ab7..ca2013343 100644 --- a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h index a95661293..523d9d371 100644 --- a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h +++ b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp index f594cdd25..5b0d591de 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h index 83b0b6fad..edc47914e 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h +++ b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp b/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp index 7ebe49160..4185b25cb 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremovefield.h b/sources/shiboken2/ApiExtractor/tests/testremovefield.h index ea103e0cc..49015b568 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremovefield.h +++ b/sources/shiboken2/ApiExtractor/tests/testremovefield.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp index a81380873..98cb1cdb4 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h index 62d5f74e6..cf3bda8a6 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h +++ b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp index 508cff586..1dd1a552b 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h index 17ff75d74..bcf96d284 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h +++ b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp b/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp index 69691e860..8228c7c56 100644 --- a/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testresolvetype.h b/sources/shiboken2/ApiExtractor/tests/testresolvetype.h index 6164d0074..df8a1ffaf 100644 --- a/sources/shiboken2/ApiExtractor/tests/testresolvetype.h +++ b/sources/shiboken2/ApiExtractor/tests/testresolvetype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp index 18d6902c2..ae030a1e7 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h index 3bd65fb85..93b5c11f7 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h +++ b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp b/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp index 4a66264d8..f1419e43a 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtemplates.h b/sources/shiboken2/ApiExtractor/tests/testtemplates.h index 7b0d0f3b3..93f5cbf69 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtemplates.h +++ b/sources/shiboken2/ApiExtractor/tests/testtemplates.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp b/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp index 30d368a8a..17fdd0b22 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtoposort.h b/sources/shiboken2/ApiExtractor/tests/testtoposort.h index ae8a2bab8..2a662abaa 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtoposort.h +++ b/sources/shiboken2/ApiExtractor/tests/testtoposort.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp b/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp index 804683140..56c90e5c8 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtyperevision.h b/sources/shiboken2/ApiExtractor/tests/testtyperevision.h index dcb2d8794..17755e576 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtyperevision.h +++ b/sources/shiboken2/ApiExtractor/tests/testtyperevision.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testutil.h b/sources/shiboken2/ApiExtractor/tests/testutil.h index 200fdb104..dde92162d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testutil.h +++ b/sources/shiboken2/ApiExtractor/tests/testutil.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp index 627255d37..7da3a7c1d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h index 2d2efe79d..82c4a213d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h +++ b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp b/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp index 5f0b47389..69c05e8bb 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvoidarg.h b/sources/shiboken2/ApiExtractor/tests/testvoidarg.h index 40d96a4ff..86e3996cf 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvoidarg.h +++ b/sources/shiboken2/ApiExtractor/tests/testvoidarg.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typedatabase.cpp b/sources/shiboken2/ApiExtractor/typedatabase.cpp index e94d952a3..4f72624c0 100644 --- a/sources/shiboken2/ApiExtractor/typedatabase.cpp +++ b/sources/shiboken2/ApiExtractor/typedatabase.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typedatabase.h b/sources/shiboken2/ApiExtractor/typedatabase.h index 30d261d35..c642be018 100644 --- a/sources/shiboken2/ApiExtractor/typedatabase.h +++ b/sources/shiboken2/ApiExtractor/typedatabase.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h b/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h index 95859a399..dc4835bc9 100644 --- a/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h +++ b/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typeparser.cpp b/sources/shiboken2/ApiExtractor/typeparser.cpp index 09439a210..617bf2412 100644 --- a/sources/shiboken2/ApiExtractor/typeparser.cpp +++ b/sources/shiboken2/ApiExtractor/typeparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typeparser.h b/sources/shiboken2/ApiExtractor/typeparser.h index 568223656..c25e01600 100644 --- a/sources/shiboken2/ApiExtractor/typeparser.h +++ b/sources/shiboken2/ApiExtractor/typeparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem.cpp b/sources/shiboken2/ApiExtractor/typesystem.cpp index 0a47b9b17..349afffaf 100644 --- a/sources/shiboken2/ApiExtractor/typesystem.cpp +++ b/sources/shiboken2/ApiExtractor/typesystem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem.h b/sources/shiboken2/ApiExtractor/typesystem.h index eae064134..248c16d9f 100644 --- a/sources/shiboken2/ApiExtractor/typesystem.h +++ b/sources/shiboken2/ApiExtractor/typesystem.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem_enums.h b/sources/shiboken2/ApiExtractor/typesystem_enums.h index 2d67d7cc5..40ff46d88 100644 --- a/sources/shiboken2/ApiExtractor/typesystem_enums.h +++ b/sources/shiboken2/ApiExtractor/typesystem_enums.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem_p.h b/sources/shiboken2/ApiExtractor/typesystem_p.h index d4707acb7..f2896684a 100644 --- a/sources/shiboken2/ApiExtractor/typesystem_p.h +++ b/sources/shiboken2/ApiExtractor/typesystem_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem_typedefs.h b/sources/shiboken2/ApiExtractor/typesystem_typedefs.h index 4f29deced..16b448045 100644 --- a/sources/shiboken2/ApiExtractor/typesystem_typedefs.h +++ b/sources/shiboken2/ApiExtractor/typesystem_typedefs.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/generator.cpp b/sources/shiboken2/generator/generator.cpp index 71647a1c5..82c51c757 100644 --- a/sources/shiboken2/generator/generator.cpp +++ b/sources/shiboken2/generator/generator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/generator.h b/sources/shiboken2/generator/generator.h index 98f3ce4b8..c0dc92dea 100644 --- a/sources/shiboken2/generator/generator.h +++ b/sources/shiboken2/generator/generator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/main.cpp b/sources/shiboken2/generator/main.cpp index 1447baf2e..9d3168754 100644 --- a/sources/shiboken2/generator/main.cpp +++ b/sources/shiboken2/generator/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp index 114ba401d..cefce32fa 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h index c8318b862..f7a627127 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/cppgenerator.cpp b/sources/shiboken2/generator/shiboken2/cppgenerator.cpp index 8d4c146c1..5bb3323b4 100644 --- a/sources/shiboken2/generator/shiboken2/cppgenerator.cpp +++ b/sources/shiboken2/generator/shiboken2/cppgenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/cppgenerator.h b/sources/shiboken2/generator/shiboken2/cppgenerator.h index 52da437ee..be27a2a44 100644 --- a/sources/shiboken2/generator/shiboken2/cppgenerator.h +++ b/sources/shiboken2/generator/shiboken2/cppgenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/headergenerator.cpp b/sources/shiboken2/generator/shiboken2/headergenerator.cpp index 3b32825f3..38ceba0bd 100644 --- a/sources/shiboken2/generator/shiboken2/headergenerator.cpp +++ b/sources/shiboken2/generator/shiboken2/headergenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/headergenerator.h b/sources/shiboken2/generator/shiboken2/headergenerator.h index b6596967c..3abc9d423 100644 --- a/sources/shiboken2/generator/shiboken2/headergenerator.h +++ b/sources/shiboken2/generator/shiboken2/headergenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/overloaddata.cpp b/sources/shiboken2/generator/shiboken2/overloaddata.cpp index 3340ee957..eff9dfdfc 100644 --- a/sources/shiboken2/generator/shiboken2/overloaddata.cpp +++ b/sources/shiboken2/generator/shiboken2/overloaddata.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/overloaddata.h b/sources/shiboken2/generator/shiboken2/overloaddata.h index 2d815f6bb..a0246b9e6 100644 --- a/sources/shiboken2/generator/shiboken2/overloaddata.h +++ b/sources/shiboken2/generator/shiboken2/overloaddata.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp b/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp index c3bb4cbc8..e57ce7cfc 100644 --- a/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp +++ b/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/shibokengenerator.h b/sources/shiboken2/generator/shiboken2/shibokengenerator.h index 5ed7f79f6..fc0a77898 100644 --- a/sources/shiboken2/generator/shiboken2/shibokengenerator.h +++ b/sources/shiboken2/generator/shiboken2/shibokengenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generatorrunnermacros.h b/sources/shiboken2/generatorrunnermacros.h index d54ed3b9a..1c6c6c50f 100644 --- a/sources/shiboken2/generatorrunnermacros.h +++ b/sources/shiboken2/generatorrunnermacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generators/shiboken/shiboken.cpp b/sources/shiboken2/generators/shiboken/shiboken.cpp index 829862f19..1abe65ac8 100644 --- a/sources/shiboken2/generators/shiboken/shiboken.cpp +++ b/sources/shiboken2/generators/shiboken/shiboken.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/autodecref.h b/sources/shiboken2/libshiboken/autodecref.h index a82bbb35c..4810ebd55 100644 --- a/sources/shiboken2/libshiboken/autodecref.h +++ b/sources/shiboken2/libshiboken/autodecref.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/basewrapper.cpp b/sources/shiboken2/libshiboken/basewrapper.cpp index d7d37971c..00def8369 100644 --- a/sources/shiboken2/libshiboken/basewrapper.cpp +++ b/sources/shiboken2/libshiboken/basewrapper.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/basewrapper.h b/sources/shiboken2/libshiboken/basewrapper.h index f6a7352f7..1ec846144 100644 --- a/sources/shiboken2/libshiboken/basewrapper.h +++ b/sources/shiboken2/libshiboken/basewrapper.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/basewrapper_p.h b/sources/shiboken2/libshiboken/basewrapper_p.h index 129322246..93ae62da8 100644 --- a/sources/shiboken2/libshiboken/basewrapper_p.h +++ b/sources/shiboken2/libshiboken/basewrapper_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/bindingmanager.cpp b/sources/shiboken2/libshiboken/bindingmanager.cpp index 3308ef972..20830f75a 100644 --- a/sources/shiboken2/libshiboken/bindingmanager.cpp +++ b/sources/shiboken2/libshiboken/bindingmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/bindingmanager.h b/sources/shiboken2/libshiboken/bindingmanager.h index 80c5add2f..dbfa23225 100644 --- a/sources/shiboken2/libshiboken/bindingmanager.h +++ b/sources/shiboken2/libshiboken/bindingmanager.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/debugfreehook.cpp b/sources/shiboken2/libshiboken/debugfreehook.cpp index f5757a70f..57bc68b5f 100644 --- a/sources/shiboken2/libshiboken/debugfreehook.cpp +++ b/sources/shiboken2/libshiboken/debugfreehook.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/debugfreehook.h b/sources/shiboken2/libshiboken/debugfreehook.h index 743d56e4c..b07fb7604 100644 --- a/sources/shiboken2/libshiboken/debugfreehook.h +++ b/sources/shiboken2/libshiboken/debugfreehook.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/gilstate.cpp b/sources/shiboken2/libshiboken/gilstate.cpp index e7406fdd6..e2644520e 100644 --- a/sources/shiboken2/libshiboken/gilstate.cpp +++ b/sources/shiboken2/libshiboken/gilstate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/gilstate.h b/sources/shiboken2/libshiboken/gilstate.h index e0f18a814..394a67390 100644 --- a/sources/shiboken2/libshiboken/gilstate.h +++ b/sources/shiboken2/libshiboken/gilstate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/helper.cpp b/sources/shiboken2/libshiboken/helper.cpp index 3ef68502b..0a66e1ca9 100644 --- a/sources/shiboken2/libshiboken/helper.cpp +++ b/sources/shiboken2/libshiboken/helper.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/helper.h b/sources/shiboken2/libshiboken/helper.h index f3b50a7ea..19c07820a 100644 --- a/sources/shiboken2/libshiboken/helper.h +++ b/sources/shiboken2/libshiboken/helper.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/python25compat.h b/sources/shiboken2/libshiboken/python25compat.h index 71c88d86a..ca69c1c2f 100644 --- a/sources/shiboken2/libshiboken/python25compat.h +++ b/sources/shiboken2/libshiboken/python25compat.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/qapp_macro.cpp b/sources/shiboken2/libshiboken/qapp_macro.cpp index e3f23de4f..63ca40f5b 100644 --- a/sources/shiboken2/libshiboken/qapp_macro.cpp +++ b/sources/shiboken2/libshiboken/qapp_macro.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/qapp_macro.h b/sources/shiboken2/libshiboken/qapp_macro.h index 98f0ec629..ae92b87df 100644 --- a/sources/shiboken2/libshiboken/qapp_macro.h +++ b/sources/shiboken2/libshiboken/qapp_macro.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkarrayconverter.cpp b/sources/shiboken2/libshiboken/sbkarrayconverter.cpp index c22015709..bbd113b98 100644 --- a/sources/shiboken2/libshiboken/sbkarrayconverter.cpp +++ b/sources/shiboken2/libshiboken/sbkarrayconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkarrayconverter.h b/sources/shiboken2/libshiboken/sbkarrayconverter.h index f3d3e5f98..aa3efd2f1 100644 --- a/sources/shiboken2/libshiboken/sbkarrayconverter.h +++ b/sources/shiboken2/libshiboken/sbkarrayconverter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkarrayconverter_p.h b/sources/shiboken2/libshiboken/sbkarrayconverter_p.h index 9384fbcf5..a8c013915 100644 --- a/sources/shiboken2/libshiboken/sbkarrayconverter_p.h +++ b/sources/shiboken2/libshiboken/sbkarrayconverter_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkconverter.cpp b/sources/shiboken2/libshiboken/sbkconverter.cpp index c81a1612b..5b62a90f6 100644 --- a/sources/shiboken2/libshiboken/sbkconverter.cpp +++ b/sources/shiboken2/libshiboken/sbkconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkconverter.h b/sources/shiboken2/libshiboken/sbkconverter.h index 6d40f85cc..686e7ac30 100644 --- a/sources/shiboken2/libshiboken/sbkconverter.h +++ b/sources/shiboken2/libshiboken/sbkconverter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkconverter_p.h b/sources/shiboken2/libshiboken/sbkconverter_p.h index cfe3d7e98..ea00e1cd5 100644 --- a/sources/shiboken2/libshiboken/sbkconverter_p.h +++ b/sources/shiboken2/libshiboken/sbkconverter_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkdbg.h b/sources/shiboken2/libshiboken/sbkdbg.h index 937153adf..be95e0e2d 100644 --- a/sources/shiboken2/libshiboken/sbkdbg.h +++ b/sources/shiboken2/libshiboken/sbkdbg.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkenum.cpp b/sources/shiboken2/libshiboken/sbkenum.cpp index c817a21de..4aa69416c 100644 --- a/sources/shiboken2/libshiboken/sbkenum.cpp +++ b/sources/shiboken2/libshiboken/sbkenum.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkenum.h b/sources/shiboken2/libshiboken/sbkenum.h index b01114ba6..365e9e2ae 100644 --- a/sources/shiboken2/libshiboken/sbkenum.h +++ b/sources/shiboken2/libshiboken/sbkenum.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkmodule.cpp b/sources/shiboken2/libshiboken/sbkmodule.cpp index 2ea9d56ac..5a75477dd 100644 --- a/sources/shiboken2/libshiboken/sbkmodule.cpp +++ b/sources/shiboken2/libshiboken/sbkmodule.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkmodule.h b/sources/shiboken2/libshiboken/sbkmodule.h index e1ec7a860..20c4bb78a 100644 --- a/sources/shiboken2/libshiboken/sbkmodule.h +++ b/sources/shiboken2/libshiboken/sbkmodule.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp b/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp index 97eab2205..e285e3ede 100644 --- a/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp +++ b/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkpython.h b/sources/shiboken2/libshiboken/sbkpython.h index 208618d50..6fd01ad81 100644 --- a/sources/shiboken2/libshiboken/sbkpython.h +++ b/sources/shiboken2/libshiboken/sbkpython.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkstring.cpp b/sources/shiboken2/libshiboken/sbkstring.cpp index 598bccc46..ccc86d7b8 100644 --- a/sources/shiboken2/libshiboken/sbkstring.cpp +++ b/sources/shiboken2/libshiboken/sbkstring.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkstring.h b/sources/shiboken2/libshiboken/sbkstring.h index 0d498da6d..a28e3ab57 100644 --- a/sources/shiboken2/libshiboken/sbkstring.h +++ b/sources/shiboken2/libshiboken/sbkstring.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkversion.h.in b/sources/shiboken2/libshiboken/sbkversion.h.in index 589c5ac26..7327717a5 100644 --- a/sources/shiboken2/libshiboken/sbkversion.h.in +++ b/sources/shiboken2/libshiboken/sbkversion.h.in @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shiboken.h b/sources/shiboken2/libshiboken/shiboken.h index 6cdfe65bd..f6c65e8f4 100644 --- a/sources/shiboken2/libshiboken/shiboken.h +++ b/sources/shiboken2/libshiboken/shiboken.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shibokenbuffer.cpp b/sources/shiboken2/libshiboken/shibokenbuffer.cpp index 222deb3fa..9a76e7385 100644 --- a/sources/shiboken2/libshiboken/shibokenbuffer.cpp +++ b/sources/shiboken2/libshiboken/shibokenbuffer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shibokenbuffer.h b/sources/shiboken2/libshiboken/shibokenbuffer.h index 18d86c6e1..c26113ea8 100644 --- a/sources/shiboken2/libshiboken/shibokenbuffer.h +++ b/sources/shiboken2/libshiboken/shibokenbuffer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shibokenmacros.h b/sources/shiboken2/libshiboken/shibokenmacros.h index acd8f6ada..1d318d0cd 100644 --- a/sources/shiboken2/libshiboken/shibokenmacros.h +++ b/sources/shiboken2/libshiboken/shibokenmacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/signature.cpp b/sources/shiboken2/libshiboken/signature.cpp index 2b1447140..2bc137b50 100644 --- a/sources/shiboken2/libshiboken/signature.cpp +++ b/sources/shiboken2/libshiboken/signature.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/signature.h b/sources/shiboken2/libshiboken/signature.h index d134e4c82..dca84398b 100644 --- a/sources/shiboken2/libshiboken/signature.h +++ b/sources/shiboken2/libshiboken/signature.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/threadstatesaver.cpp b/sources/shiboken2/libshiboken/threadstatesaver.cpp index 3d3ba81ab..3dad0d3e1 100644 --- a/sources/shiboken2/libshiboken/threadstatesaver.cpp +++ b/sources/shiboken2/libshiboken/threadstatesaver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/threadstatesaver.h b/sources/shiboken2/libshiboken/threadstatesaver.h index 3fe595d95..ce1eaf67a 100644 --- a/sources/shiboken2/libshiboken/threadstatesaver.h +++ b/sources/shiboken2/libshiboken/threadstatesaver.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp index c3e25014e..2113cbc85 100644 --- a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp +++ b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h index d4bbbca1d..eb801c21c 100644 --- a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h +++ b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/voidptr.cpp b/sources/shiboken2/libshiboken/voidptr.cpp index 7997839e4..78a158227 100644 --- a/sources/shiboken2/libshiboken/voidptr.cpp +++ b/sources/shiboken2/libshiboken/voidptr.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/voidptr.h b/sources/shiboken2/libshiboken/voidptr.h index 17dd3a008..0095c72e5 100644 --- a/sources/shiboken2/libshiboken/voidptr.h +++ b/sources/shiboken2/libshiboken/voidptr.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of PySide2. +** This file is part of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/shiboken_version.py b/sources/shiboken2/shiboken_version.py index aacb7e0d9..24b06e0b3 100644 --- a/sources/shiboken2/shiboken_version.py +++ b/sources/shiboken2/shiboken_version.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/dumpcodemodel/main.cpp b/sources/shiboken2/tests/dumpcodemodel/main.cpp index 13dab6e8a..02ed09578 100644 --- a/sources/shiboken2/tests/dumpcodemodel/main.cpp +++ b/sources/shiboken2/tests/dumpcodemodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/libminimalmacros.h b/sources/shiboken2/tests/libminimal/libminimalmacros.h index 5c9e62e8a..8a00d665e 100644 --- a/sources/shiboken2/tests/libminimal/libminimalmacros.h +++ b/sources/shiboken2/tests/libminimal/libminimalmacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/listuser.cpp b/sources/shiboken2/tests/libminimal/listuser.cpp index ec2eb3923..0d2e8bcea 100644 --- a/sources/shiboken2/tests/libminimal/listuser.cpp +++ b/sources/shiboken2/tests/libminimal/listuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/listuser.h b/sources/shiboken2/tests/libminimal/listuser.h index 4138b9f3c..a1bf4388a 100644 --- a/sources/shiboken2/tests/libminimal/listuser.h +++ b/sources/shiboken2/tests/libminimal/listuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/minbool.h b/sources/shiboken2/tests/libminimal/minbool.h index ebd2f71e2..e0bc6c34a 100644 --- a/sources/shiboken2/tests/libminimal/minbool.h +++ b/sources/shiboken2/tests/libminimal/minbool.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/obj.cpp b/sources/shiboken2/tests/libminimal/obj.cpp index a1d18d0e3..98240496e 100644 --- a/sources/shiboken2/tests/libminimal/obj.cpp +++ b/sources/shiboken2/tests/libminimal/obj.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/obj.h b/sources/shiboken2/tests/libminimal/obj.h index 16f838e19..297d3792d 100644 --- a/sources/shiboken2/tests/libminimal/obj.h +++ b/sources/shiboken2/tests/libminimal/obj.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/typedef.cpp b/sources/shiboken2/tests/libminimal/typedef.cpp index 4948d9944..a9fe67cb3 100644 --- a/sources/shiboken2/tests/libminimal/typedef.cpp +++ b/sources/shiboken2/tests/libminimal/typedef.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/typedef.h b/sources/shiboken2/tests/libminimal/typedef.h index f54a6ed18..49e020b75 100644 --- a/sources/shiboken2/tests/libminimal/typedef.h +++ b/sources/shiboken2/tests/libminimal/typedef.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/val.h b/sources/shiboken2/tests/libminimal/val.h index 5ba4b3aff..4a6018f30 100644 --- a/sources/shiboken2/tests/libminimal/val.h +++ b/sources/shiboken2/tests/libminimal/val.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h b/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h index 744bfdc0d..02c184be7 100644 --- a/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h +++ b/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/libothermacros.h b/sources/shiboken2/tests/libother/libothermacros.h index 41a4fb13e..26f0c2ad0 100644 --- a/sources/shiboken2/tests/libother/libothermacros.h +++ b/sources/shiboken2/tests/libother/libothermacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/number.cpp b/sources/shiboken2/tests/libother/number.cpp index 4da254286..1f5a0d77c 100644 --- a/sources/shiboken2/tests/libother/number.cpp +++ b/sources/shiboken2/tests/libother/number.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/number.h b/sources/shiboken2/tests/libother/number.h index 4286068d5..5a77ae2b4 100644 --- a/sources/shiboken2/tests/libother/number.h +++ b/sources/shiboken2/tests/libother/number.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherderived.cpp b/sources/shiboken2/tests/libother/otherderived.cpp index de16b0ab4..5c3962107 100644 --- a/sources/shiboken2/tests/libother/otherderived.cpp +++ b/sources/shiboken2/tests/libother/otherderived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherderived.h b/sources/shiboken2/tests/libother/otherderived.h index 592e9e023..b466deb5f 100644 --- a/sources/shiboken2/tests/libother/otherderived.h +++ b/sources/shiboken2/tests/libother/otherderived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/othermultiplederived.cpp b/sources/shiboken2/tests/libother/othermultiplederived.cpp index 77fa44b83..2e4cafcd2 100644 --- a/sources/shiboken2/tests/libother/othermultiplederived.cpp +++ b/sources/shiboken2/tests/libother/othermultiplederived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/othermultiplederived.h b/sources/shiboken2/tests/libother/othermultiplederived.h index e75504320..411e8e1b2 100644 --- a/sources/shiboken2/tests/libother/othermultiplederived.h +++ b/sources/shiboken2/tests/libother/othermultiplederived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherobjecttype.cpp b/sources/shiboken2/tests/libother/otherobjecttype.cpp index 266b2583e..a15cf781c 100644 --- a/sources/shiboken2/tests/libother/otherobjecttype.cpp +++ b/sources/shiboken2/tests/libother/otherobjecttype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherobjecttype.h b/sources/shiboken2/tests/libother/otherobjecttype.h index 2bba912b6..ae28d2de2 100644 --- a/sources/shiboken2/tests/libother/otherobjecttype.h +++ b/sources/shiboken2/tests/libother/otherobjecttype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/abstract.cpp b/sources/shiboken2/tests/libsample/abstract.cpp index ab00a3bcc..839c9888c 100644 --- a/sources/shiboken2/tests/libsample/abstract.cpp +++ b/sources/shiboken2/tests/libsample/abstract.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/abstract.h b/sources/shiboken2/tests/libsample/abstract.h index f31870522..71ffc8c1c 100644 --- a/sources/shiboken2/tests/libsample/abstract.h +++ b/sources/shiboken2/tests/libsample/abstract.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/blackbox.cpp b/sources/shiboken2/tests/libsample/blackbox.cpp index 9a10850f3..b5fd2f6b9 100644 --- a/sources/shiboken2/tests/libsample/blackbox.cpp +++ b/sources/shiboken2/tests/libsample/blackbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/blackbox.h b/sources/shiboken2/tests/libsample/blackbox.h index de776668c..c4f2983b1 100644 --- a/sources/shiboken2/tests/libsample/blackbox.h +++ b/sources/shiboken2/tests/libsample/blackbox.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bucket.cpp b/sources/shiboken2/tests/libsample/bucket.cpp index 50a1310e7..a559aa7c6 100644 --- a/sources/shiboken2/tests/libsample/bucket.cpp +++ b/sources/shiboken2/tests/libsample/bucket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bucket.h b/sources/shiboken2/tests/libsample/bucket.h index bd8648b6b..8bbbb75db 100644 --- a/sources/shiboken2/tests/libsample/bucket.h +++ b/sources/shiboken2/tests/libsample/bucket.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bytearray.cpp b/sources/shiboken2/tests/libsample/bytearray.cpp index c86ada124..15370e2d1 100644 --- a/sources/shiboken2/tests/libsample/bytearray.cpp +++ b/sources/shiboken2/tests/libsample/bytearray.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bytearray.h b/sources/shiboken2/tests/libsample/bytearray.h index d2219ee5d..0d41f84b7 100644 --- a/sources/shiboken2/tests/libsample/bytearray.h +++ b/sources/shiboken2/tests/libsample/bytearray.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/collector.cpp b/sources/shiboken2/tests/libsample/collector.cpp index e60ed3af3..c81c6dbd3 100644 --- a/sources/shiboken2/tests/libsample/collector.cpp +++ b/sources/shiboken2/tests/libsample/collector.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/collector.h b/sources/shiboken2/tests/libsample/collector.h index fe82909cb..d46632c96 100644 --- a/sources/shiboken2/tests/libsample/collector.h +++ b/sources/shiboken2/tests/libsample/collector.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/complex.cpp b/sources/shiboken2/tests/libsample/complex.cpp index 10e4b3f58..a95262913 100644 --- a/sources/shiboken2/tests/libsample/complex.cpp +++ b/sources/shiboken2/tests/libsample/complex.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/complex.h b/sources/shiboken2/tests/libsample/complex.h index cb167bde9..23f99b005 100644 --- a/sources/shiboken2/tests/libsample/complex.h +++ b/sources/shiboken2/tests/libsample/complex.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/ctorconvrule.h b/sources/shiboken2/tests/libsample/ctorconvrule.h index 776f4744c..cf760622b 100644 --- a/sources/shiboken2/tests/libsample/ctorconvrule.h +++ b/sources/shiboken2/tests/libsample/ctorconvrule.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/cvlist.h b/sources/shiboken2/tests/libsample/cvlist.h index c74007945..744933abe 100644 --- a/sources/shiboken2/tests/libsample/cvlist.h +++ b/sources/shiboken2/tests/libsample/cvlist.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/derived.cpp b/sources/shiboken2/tests/libsample/derived.cpp index 9552a2a8c..2e33b734e 100644 --- a/sources/shiboken2/tests/libsample/derived.cpp +++ b/sources/shiboken2/tests/libsample/derived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/derived.h b/sources/shiboken2/tests/libsample/derived.h index 84c502566..f3d845419 100644 --- a/sources/shiboken2/tests/libsample/derived.h +++ b/sources/shiboken2/tests/libsample/derived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/echo.cpp b/sources/shiboken2/tests/libsample/echo.cpp index 00fec78b0..f2ed06756 100644 --- a/sources/shiboken2/tests/libsample/echo.cpp +++ b/sources/shiboken2/tests/libsample/echo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/echo.h b/sources/shiboken2/tests/libsample/echo.h index a976c9cbc..3af5b14ca 100644 --- a/sources/shiboken2/tests/libsample/echo.h +++ b/sources/shiboken2/tests/libsample/echo.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/expression.cpp b/sources/shiboken2/tests/libsample/expression.cpp index ff87e2ed2..ca678031b 100644 --- a/sources/shiboken2/tests/libsample/expression.cpp +++ b/sources/shiboken2/tests/libsample/expression.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/expression.h b/sources/shiboken2/tests/libsample/expression.h index c4bb1a1f5..4ddfac22c 100644 --- a/sources/shiboken2/tests/libsample/expression.h +++ b/sources/shiboken2/tests/libsample/expression.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/filter.cpp b/sources/shiboken2/tests/libsample/filter.cpp index dac5d5e96..589c6c49a 100644 --- a/sources/shiboken2/tests/libsample/filter.cpp +++ b/sources/shiboken2/tests/libsample/filter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/filter.h b/sources/shiboken2/tests/libsample/filter.h index 6ee2e6123..bc8b7fbeb 100644 --- a/sources/shiboken2/tests/libsample/filter.h +++ b/sources/shiboken2/tests/libsample/filter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/functions.cpp b/sources/shiboken2/tests/libsample/functions.cpp index bf73d5ed7..e2ea45dbc 100644 --- a/sources/shiboken2/tests/libsample/functions.cpp +++ b/sources/shiboken2/tests/libsample/functions.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/functions.h b/sources/shiboken2/tests/libsample/functions.h index a53f97c6e..1e1f41040 100644 --- a/sources/shiboken2/tests/libsample/functions.h +++ b/sources/shiboken2/tests/libsample/functions.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/handle.cpp b/sources/shiboken2/tests/libsample/handle.cpp index e0b1d8d18..3a3e1a980 100644 --- a/sources/shiboken2/tests/libsample/handle.cpp +++ b/sources/shiboken2/tests/libsample/handle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/handle.h b/sources/shiboken2/tests/libsample/handle.h index d656f946b..c171cc93e 100644 --- a/sources/shiboken2/tests/libsample/handle.h +++ b/sources/shiboken2/tests/libsample/handle.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/implicitconv.cpp b/sources/shiboken2/tests/libsample/implicitconv.cpp index df4af2537..c74120025 100644 --- a/sources/shiboken2/tests/libsample/implicitconv.cpp +++ b/sources/shiboken2/tests/libsample/implicitconv.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/implicitconv.h b/sources/shiboken2/tests/libsample/implicitconv.h index 2a8ac66c2..36eb232ea 100644 --- a/sources/shiboken2/tests/libsample/implicitconv.h +++ b/sources/shiboken2/tests/libsample/implicitconv.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/injectcode.cpp b/sources/shiboken2/tests/libsample/injectcode.cpp index 4406cdc5c..52f210032 100644 --- a/sources/shiboken2/tests/libsample/injectcode.cpp +++ b/sources/shiboken2/tests/libsample/injectcode.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/injectcode.h b/sources/shiboken2/tests/libsample/injectcode.h index ba1bedb17..ed99b8a09 100644 --- a/sources/shiboken2/tests/libsample/injectcode.h +++ b/sources/shiboken2/tests/libsample/injectcode.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/libsamplemacros.h b/sources/shiboken2/tests/libsample/libsamplemacros.h index 6a1bba88d..91b79f0ad 100644 --- a/sources/shiboken2/tests/libsample/libsamplemacros.h +++ b/sources/shiboken2/tests/libsample/libsamplemacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/list.h b/sources/shiboken2/tests/libsample/list.h index f1183440c..63241f851 100644 --- a/sources/shiboken2/tests/libsample/list.h +++ b/sources/shiboken2/tests/libsample/list.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/listuser.cpp b/sources/shiboken2/tests/libsample/listuser.cpp index 24389766e..9e8a1c852 100644 --- a/sources/shiboken2/tests/libsample/listuser.cpp +++ b/sources/shiboken2/tests/libsample/listuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/listuser.h b/sources/shiboken2/tests/libsample/listuser.h index 8f49c80d3..d80b6e190 100644 --- a/sources/shiboken2/tests/libsample/listuser.h +++ b/sources/shiboken2/tests/libsample/listuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/main.cpp b/sources/shiboken2/tests/libsample/main.cpp index b22d05a36..c8b9615b1 100644 --- a/sources/shiboken2/tests/libsample/main.cpp +++ b/sources/shiboken2/tests/libsample/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/mapuser.cpp b/sources/shiboken2/tests/libsample/mapuser.cpp index 666188512..e1527afe2 100644 --- a/sources/shiboken2/tests/libsample/mapuser.cpp +++ b/sources/shiboken2/tests/libsample/mapuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/mapuser.h b/sources/shiboken2/tests/libsample/mapuser.h index 90d036945..680ef9f49 100644 --- a/sources/shiboken2/tests/libsample/mapuser.h +++ b/sources/shiboken2/tests/libsample/mapuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modelindex.h b/sources/shiboken2/tests/libsample/modelindex.h index 12cc97ce4..11dec1605 100644 --- a/sources/shiboken2/tests/libsample/modelindex.h +++ b/sources/shiboken2/tests/libsample/modelindex.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modifications.cpp b/sources/shiboken2/tests/libsample/modifications.cpp index 4a60a8071..0d3934bd5 100644 --- a/sources/shiboken2/tests/libsample/modifications.cpp +++ b/sources/shiboken2/tests/libsample/modifications.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modifications.h b/sources/shiboken2/tests/libsample/modifications.h index 2978270b0..7baa48938 100644 --- a/sources/shiboken2/tests/libsample/modifications.h +++ b/sources/shiboken2/tests/libsample/modifications.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modified_constructor.cpp b/sources/shiboken2/tests/libsample/modified_constructor.cpp index 48224358f..cc07ae358 100644 --- a/sources/shiboken2/tests/libsample/modified_constructor.cpp +++ b/sources/shiboken2/tests/libsample/modified_constructor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modified_constructor.h b/sources/shiboken2/tests/libsample/modified_constructor.h index 9ac5497d7..313d5b698 100644 --- a/sources/shiboken2/tests/libsample/modified_constructor.h +++ b/sources/shiboken2/tests/libsample/modified_constructor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/multiple_derived.cpp b/sources/shiboken2/tests/libsample/multiple_derived.cpp index 1d7a33cbe..335ae23f0 100644 --- a/sources/shiboken2/tests/libsample/multiple_derived.cpp +++ b/sources/shiboken2/tests/libsample/multiple_derived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/multiple_derived.h b/sources/shiboken2/tests/libsample/multiple_derived.h index 7a130c6b5..37a5ec67e 100644 --- a/sources/shiboken2/tests/libsample/multiple_derived.h +++ b/sources/shiboken2/tests/libsample/multiple_derived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/noimplicitconversion.h b/sources/shiboken2/tests/libsample/noimplicitconversion.h index 0a8882d3a..9df59f988 100644 --- a/sources/shiboken2/tests/libsample/noimplicitconversion.h +++ b/sources/shiboken2/tests/libsample/noimplicitconversion.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/nondefaultctor.h b/sources/shiboken2/tests/libsample/nondefaultctor.h index d2b186bd8..2113d863c 100644 --- a/sources/shiboken2/tests/libsample/nondefaultctor.h +++ b/sources/shiboken2/tests/libsample/nondefaultctor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/null.h b/sources/shiboken2/tests/libsample/null.h index 634262a99..08b95f0f0 100644 --- a/sources/shiboken2/tests/libsample/null.h +++ b/sources/shiboken2/tests/libsample/null.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectmodel.cpp b/sources/shiboken2/tests/libsample/objectmodel.cpp index 370b58aa1..fd9f63589 100644 --- a/sources/shiboken2/tests/libsample/objectmodel.cpp +++ b/sources/shiboken2/tests/libsample/objectmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectmodel.h b/sources/shiboken2/tests/libsample/objectmodel.h index aa4a64433..77d5b57cd 100644 --- a/sources/shiboken2/tests/libsample/objectmodel.h +++ b/sources/shiboken2/tests/libsample/objectmodel.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttype.cpp b/sources/shiboken2/tests/libsample/objecttype.cpp index 4f10b01df..19c5cab5b 100644 --- a/sources/shiboken2/tests/libsample/objecttype.cpp +++ b/sources/shiboken2/tests/libsample/objecttype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttype.h b/sources/shiboken2/tests/libsample/objecttype.h index 91fb45515..b89e4a48c 100644 --- a/sources/shiboken2/tests/libsample/objecttype.h +++ b/sources/shiboken2/tests/libsample/objecttype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypebyvalue.h b/sources/shiboken2/tests/libsample/objecttypebyvalue.h index 1b61ec4dc..f19bc661d 100644 --- a/sources/shiboken2/tests/libsample/objecttypebyvalue.h +++ b/sources/shiboken2/tests/libsample/objecttypebyvalue.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeholder.cpp b/sources/shiboken2/tests/libsample/objecttypeholder.cpp index dabeb2f86..cc4dd028a 100644 --- a/sources/shiboken2/tests/libsample/objecttypeholder.cpp +++ b/sources/shiboken2/tests/libsample/objecttypeholder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeholder.h b/sources/shiboken2/tests/libsample/objecttypeholder.h index c2e7275d4..715148d9d 100644 --- a/sources/shiboken2/tests/libsample/objecttypeholder.h +++ b/sources/shiboken2/tests/libsample/objecttypeholder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypelayout.cpp b/sources/shiboken2/tests/libsample/objecttypelayout.cpp index d2a7d1bba..4593928ec 100644 --- a/sources/shiboken2/tests/libsample/objecttypelayout.cpp +++ b/sources/shiboken2/tests/libsample/objecttypelayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypelayout.h b/sources/shiboken2/tests/libsample/objecttypelayout.h index 8524c1989..c1bb9de04 100644 --- a/sources/shiboken2/tests/libsample/objecttypelayout.h +++ b/sources/shiboken2/tests/libsample/objecttypelayout.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeoperators.cpp b/sources/shiboken2/tests/libsample/objecttypeoperators.cpp index 1bdaded30..d89b6107d 100644 --- a/sources/shiboken2/tests/libsample/objecttypeoperators.cpp +++ b/sources/shiboken2/tests/libsample/objecttypeoperators.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeoperators.h b/sources/shiboken2/tests/libsample/objecttypeoperators.h index 5795ac456..285aeb7e7 100644 --- a/sources/shiboken2/tests/libsample/objecttypeoperators.h +++ b/sources/shiboken2/tests/libsample/objecttypeoperators.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectview.cpp b/sources/shiboken2/tests/libsample/objectview.cpp index 08c5f45f6..8c617d431 100644 --- a/sources/shiboken2/tests/libsample/objectview.cpp +++ b/sources/shiboken2/tests/libsample/objectview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectview.h b/sources/shiboken2/tests/libsample/objectview.h index 0bcc09a30..2ff7a56cc 100644 --- a/sources/shiboken2/tests/libsample/objectview.h +++ b/sources/shiboken2/tests/libsample/objectview.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/oddbool.h b/sources/shiboken2/tests/libsample/oddbool.h index ee0f4fa03..b52080f85 100644 --- a/sources/shiboken2/tests/libsample/oddbool.h +++ b/sources/shiboken2/tests/libsample/oddbool.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/onlycopy.cpp b/sources/shiboken2/tests/libsample/onlycopy.cpp index 5407f9d33..b1717db6d 100644 --- a/sources/shiboken2/tests/libsample/onlycopy.cpp +++ b/sources/shiboken2/tests/libsample/onlycopy.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/onlycopy.h b/sources/shiboken2/tests/libsample/onlycopy.h index 6abad7382..0f61d8334 100644 --- a/sources/shiboken2/tests/libsample/onlycopy.h +++ b/sources/shiboken2/tests/libsample/onlycopy.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overload.cpp b/sources/shiboken2/tests/libsample/overload.cpp index 753407e35..7b3d53db4 100644 --- a/sources/shiboken2/tests/libsample/overload.cpp +++ b/sources/shiboken2/tests/libsample/overload.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overload.h b/sources/shiboken2/tests/libsample/overload.h index 5005b4f8c..d546162b1 100644 --- a/sources/shiboken2/tests/libsample/overload.h +++ b/sources/shiboken2/tests/libsample/overload.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overloadsort.cpp b/sources/shiboken2/tests/libsample/overloadsort.cpp index f1bc9665b..3c9cb5e42 100644 --- a/sources/shiboken2/tests/libsample/overloadsort.cpp +++ b/sources/shiboken2/tests/libsample/overloadsort.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overloadsort.h b/sources/shiboken2/tests/libsample/overloadsort.h index 9145504ae..65eb8744d 100644 --- a/sources/shiboken2/tests/libsample/overloadsort.h +++ b/sources/shiboken2/tests/libsample/overloadsort.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pairuser.cpp b/sources/shiboken2/tests/libsample/pairuser.cpp index b4b51b8cf..5fafd733e 100644 --- a/sources/shiboken2/tests/libsample/pairuser.cpp +++ b/sources/shiboken2/tests/libsample/pairuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pairuser.h b/sources/shiboken2/tests/libsample/pairuser.h index 7b87ba65b..429661f14 100644 --- a/sources/shiboken2/tests/libsample/pairuser.h +++ b/sources/shiboken2/tests/libsample/pairuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pen.cpp b/sources/shiboken2/tests/libsample/pen.cpp index 509b47c76..31734134f 100644 --- a/sources/shiboken2/tests/libsample/pen.cpp +++ b/sources/shiboken2/tests/libsample/pen.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pen.h b/sources/shiboken2/tests/libsample/pen.h index e1fb641d3..ca31cc973 100644 --- a/sources/shiboken2/tests/libsample/pen.h +++ b/sources/shiboken2/tests/libsample/pen.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/photon.cpp b/sources/shiboken2/tests/libsample/photon.cpp index debc9f116..7c44cbe41 100644 --- a/sources/shiboken2/tests/libsample/photon.cpp +++ b/sources/shiboken2/tests/libsample/photon.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/photon.h b/sources/shiboken2/tests/libsample/photon.h index 437ec1d9b..db05d5ce0 100644 --- a/sources/shiboken2/tests/libsample/photon.h +++ b/sources/shiboken2/tests/libsample/photon.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/point.cpp b/sources/shiboken2/tests/libsample/point.cpp index 30275393b..6142c19c9 100644 --- a/sources/shiboken2/tests/libsample/point.cpp +++ b/sources/shiboken2/tests/libsample/point.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/point.h b/sources/shiboken2/tests/libsample/point.h index 9416d6ddf..4371cf9fd 100644 --- a/sources/shiboken2/tests/libsample/point.h +++ b/sources/shiboken2/tests/libsample/point.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pointerholder.h b/sources/shiboken2/tests/libsample/pointerholder.h index 84e709d38..9ad21a01f 100644 --- a/sources/shiboken2/tests/libsample/pointerholder.h +++ b/sources/shiboken2/tests/libsample/pointerholder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pointf.cpp b/sources/shiboken2/tests/libsample/pointf.cpp index 0719bdb87..e897da0d1 100644 --- a/sources/shiboken2/tests/libsample/pointf.cpp +++ b/sources/shiboken2/tests/libsample/pointf.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pointf.h b/sources/shiboken2/tests/libsample/pointf.h index c80739fea..c7e6a1535 100644 --- a/sources/shiboken2/tests/libsample/pointf.h +++ b/sources/shiboken2/tests/libsample/pointf.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/polygon.cpp b/sources/shiboken2/tests/libsample/polygon.cpp index cb553a75c..6a8638f7f 100644 --- a/sources/shiboken2/tests/libsample/polygon.cpp +++ b/sources/shiboken2/tests/libsample/polygon.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/polygon.h b/sources/shiboken2/tests/libsample/polygon.h index 5e0769e0f..17d559bbb 100644 --- a/sources/shiboken2/tests/libsample/polygon.h +++ b/sources/shiboken2/tests/libsample/polygon.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/privatector.h b/sources/shiboken2/tests/libsample/privatector.h index 4f4699761..5476f49a2 100644 --- a/sources/shiboken2/tests/libsample/privatector.h +++ b/sources/shiboken2/tests/libsample/privatector.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/privatedtor.h b/sources/shiboken2/tests/libsample/privatedtor.h index a0c4d4769..3906fba81 100644 --- a/sources/shiboken2/tests/libsample/privatedtor.h +++ b/sources/shiboken2/tests/libsample/privatedtor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/protected.cpp b/sources/shiboken2/tests/libsample/protected.cpp index 08c9fd065..91eeb9ab8 100644 --- a/sources/shiboken2/tests/libsample/protected.cpp +++ b/sources/shiboken2/tests/libsample/protected.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/protected.h b/sources/shiboken2/tests/libsample/protected.h index c33bdf4b2..4b12974f5 100644 --- a/sources/shiboken2/tests/libsample/protected.h +++ b/sources/shiboken2/tests/libsample/protected.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/rect.h b/sources/shiboken2/tests/libsample/rect.h index b7ce6e890..5e05d3cf2 100644 --- a/sources/shiboken2/tests/libsample/rect.h +++ b/sources/shiboken2/tests/libsample/rect.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/reference.cpp b/sources/shiboken2/tests/libsample/reference.cpp index 31a11a8ae..5644cb5bd 100644 --- a/sources/shiboken2/tests/libsample/reference.cpp +++ b/sources/shiboken2/tests/libsample/reference.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/reference.h b/sources/shiboken2/tests/libsample/reference.h index 4ec8ee7fd..943803688 100644 --- a/sources/shiboken2/tests/libsample/reference.h +++ b/sources/shiboken2/tests/libsample/reference.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/removednamespaces.h b/sources/shiboken2/tests/libsample/removednamespaces.h index 4520b6a27..2d5470ac1 100644 --- a/sources/shiboken2/tests/libsample/removednamespaces.h +++ b/sources/shiboken2/tests/libsample/removednamespaces.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sample.cpp b/sources/shiboken2/tests/libsample/sample.cpp index 850674bd9..b6911fd45 100644 --- a/sources/shiboken2/tests/libsample/sample.cpp +++ b/sources/shiboken2/tests/libsample/sample.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sample.h b/sources/shiboken2/tests/libsample/sample.h index 68b54e067..90040683a 100644 --- a/sources/shiboken2/tests/libsample/sample.h +++ b/sources/shiboken2/tests/libsample/sample.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/samplenamespace.cpp b/sources/shiboken2/tests/libsample/samplenamespace.cpp index 1fc6dff40..b38f6520b 100644 --- a/sources/shiboken2/tests/libsample/samplenamespace.cpp +++ b/sources/shiboken2/tests/libsample/samplenamespace.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/samplenamespace.h b/sources/shiboken2/tests/libsample/samplenamespace.h index 93cafa29c..b1da05311 100644 --- a/sources/shiboken2/tests/libsample/samplenamespace.h +++ b/sources/shiboken2/tests/libsample/samplenamespace.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sbkdate.cpp b/sources/shiboken2/tests/libsample/sbkdate.cpp index e823521ec..dc7a10e66 100644 --- a/sources/shiboken2/tests/libsample/sbkdate.cpp +++ b/sources/shiboken2/tests/libsample/sbkdate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sbkdate.h b/sources/shiboken2/tests/libsample/sbkdate.h index 7d0893cbb..b2aea0e92 100644 --- a/sources/shiboken2/tests/libsample/sbkdate.h +++ b/sources/shiboken2/tests/libsample/sbkdate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/simplefile.cpp b/sources/shiboken2/tests/libsample/simplefile.cpp index bdbd3d1f5..40c8b401d 100644 --- a/sources/shiboken2/tests/libsample/simplefile.cpp +++ b/sources/shiboken2/tests/libsample/simplefile.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/simplefile.h b/sources/shiboken2/tests/libsample/simplefile.h index bae3b9998..89727961f 100644 --- a/sources/shiboken2/tests/libsample/simplefile.h +++ b/sources/shiboken2/tests/libsample/simplefile.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/size.cpp b/sources/shiboken2/tests/libsample/size.cpp index 1faf5dfb2..46b2eda09 100644 --- a/sources/shiboken2/tests/libsample/size.cpp +++ b/sources/shiboken2/tests/libsample/size.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/size.h b/sources/shiboken2/tests/libsample/size.h index 433aba770..915252841 100644 --- a/sources/shiboken2/tests/libsample/size.h +++ b/sources/shiboken2/tests/libsample/size.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sometime.cpp b/sources/shiboken2/tests/libsample/sometime.cpp index 3038e26ca..c4aa8604c 100644 --- a/sources/shiboken2/tests/libsample/sometime.cpp +++ b/sources/shiboken2/tests/libsample/sometime.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sometime.h b/sources/shiboken2/tests/libsample/sometime.h index 5f2ccf88a..0f0a0d5d3 100644 --- a/sources/shiboken2/tests/libsample/sometime.h +++ b/sources/shiboken2/tests/libsample/sometime.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/str.cpp b/sources/shiboken2/tests/libsample/str.cpp index f3be2591e..84725b863 100644 --- a/sources/shiboken2/tests/libsample/str.cpp +++ b/sources/shiboken2/tests/libsample/str.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/str.h b/sources/shiboken2/tests/libsample/str.h index 9c1e8c0a8..5da035796 100644 --- a/sources/shiboken2/tests/libsample/str.h +++ b/sources/shiboken2/tests/libsample/str.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/strlist.cpp b/sources/shiboken2/tests/libsample/strlist.cpp index 8956110d8..975b0d6b4 100644 --- a/sources/shiboken2/tests/libsample/strlist.cpp +++ b/sources/shiboken2/tests/libsample/strlist.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/strlist.h b/sources/shiboken2/tests/libsample/strlist.h index be908d5d5..10306fe58 100644 --- a/sources/shiboken2/tests/libsample/strlist.h +++ b/sources/shiboken2/tests/libsample/strlist.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/templateptr.cpp b/sources/shiboken2/tests/libsample/templateptr.cpp index 571184776..05eef1daa 100644 --- a/sources/shiboken2/tests/libsample/templateptr.cpp +++ b/sources/shiboken2/tests/libsample/templateptr.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/templateptr.h b/sources/shiboken2/tests/libsample/templateptr.h index 67e154b1c..f3efcbc78 100644 --- a/sources/shiboken2/tests/libsample/templateptr.h +++ b/sources/shiboken2/tests/libsample/templateptr.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/transform.cpp b/sources/shiboken2/tests/libsample/transform.cpp index 951e2ca5b..d39b03307 100644 --- a/sources/shiboken2/tests/libsample/transform.cpp +++ b/sources/shiboken2/tests/libsample/transform.cpp @@ -4,7 +4,7 @@ ** Copyright (C) 2013 Kitware, Inc. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/transform.h b/sources/shiboken2/tests/libsample/transform.h index fda5b33c5..29fb7ef72 100644 --- a/sources/shiboken2/tests/libsample/transform.h +++ b/sources/shiboken2/tests/libsample/transform.h @@ -4,7 +4,7 @@ ** Copyright (C) 2013 Kitware, Inc. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/valueandvirtual.h b/sources/shiboken2/tests/libsample/valueandvirtual.h index 54e8114b5..b3310b6f5 100644 --- a/sources/shiboken2/tests/libsample/valueandvirtual.h +++ b/sources/shiboken2/tests/libsample/valueandvirtual.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/virtualmethods.cpp b/sources/shiboken2/tests/libsample/virtualmethods.cpp index e0cba3a47..f20fdb6cc 100644 --- a/sources/shiboken2/tests/libsample/virtualmethods.cpp +++ b/sources/shiboken2/tests/libsample/virtualmethods.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/virtualmethods.h b/sources/shiboken2/tests/libsample/virtualmethods.h index 4ba3ad338..897ecbffb 100644 --- a/sources/shiboken2/tests/libsample/virtualmethods.h +++ b/sources/shiboken2/tests/libsample/virtualmethods.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/voidholder.h b/sources/shiboken2/tests/libsample/voidholder.h index 6453ce2e7..444c214c1 100644 --- a/sources/shiboken2/tests/libsample/voidholder.h +++ b/sources/shiboken2/tests/libsample/voidholder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsmart/libsmartmacros.h b/sources/shiboken2/tests/libsmart/libsmartmacros.h index e4166caff..0312f41f9 100644 --- a/sources/shiboken2/tests/libsmart/libsmartmacros.h +++ b/sources/shiboken2/tests/libsmart/libsmartmacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsmart/smart.cpp b/sources/shiboken2/tests/libsmart/smart.cpp index 28c9cf055..44376b207 100644 --- a/sources/shiboken2/tests/libsmart/smart.cpp +++ b/sources/shiboken2/tests/libsmart/smart.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsmart/smart.h b/sources/shiboken2/tests/libsmart/smart.h index c6b0dbbca..98af01dbe 100644 --- a/sources/shiboken2/tests/libsmart/smart.h +++ b/sources/shiboken2/tests/libsmart/smart.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/global.h b/sources/shiboken2/tests/minimalbinding/global.h index 93eb38ed5..ebffa096f 100644 --- a/sources/shiboken2/tests/minimalbinding/global.h +++ b/sources/shiboken2/tests/minimalbinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/listuser_test.py b/sources/shiboken2/tests/minimalbinding/listuser_test.py index d3b7f01e7..cf666086b 100644 --- a/sources/shiboken2/tests/minimalbinding/listuser_test.py +++ b/sources/shiboken2/tests/minimalbinding/listuser_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/minbool_test.py b/sources/shiboken2/tests/minimalbinding/minbool_test.py index b7830a79b..900a5ee8a 100644 --- a/sources/shiboken2/tests/minimalbinding/minbool_test.py +++ b/sources/shiboken2/tests/minimalbinding/minbool_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/obj_test.py b/sources/shiboken2/tests/minimalbinding/obj_test.py index bf00f1c92..c120908fb 100644 --- a/sources/shiboken2/tests/minimalbinding/obj_test.py +++ b/sources/shiboken2/tests/minimalbinding/obj_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/typedef_test.py b/sources/shiboken2/tests/minimalbinding/typedef_test.py index 62df9cbea..8a503da23 100644 --- a/sources/shiboken2/tests/minimalbinding/typedef_test.py +++ b/sources/shiboken2/tests/minimalbinding/typedef_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/val_test.py b/sources/shiboken2/tests/minimalbinding/val_test.py index 97e4e4778..7ef55ba81 100644 --- a/sources/shiboken2/tests/minimalbinding/val_test.py +++ b/sources/shiboken2/tests/minimalbinding/val_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py b/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py index 328aec837..dca6f95e4 100644 --- a/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py +++ b/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py b/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py index 5c3733dc2..d5925ef7c 100755 --- a/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py +++ b/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py b/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py index 4acc53024..d9ba6d21c 100755 --- a/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py +++ b/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/global.h b/sources/shiboken2/tests/otherbinding/global.h index cc6634ab4..be3cc5004 100644 --- a/sources/shiboken2/tests/otherbinding/global.h +++ b/sources/shiboken2/tests/otherbinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/module_reload_test.py b/sources/shiboken2/tests/otherbinding/module_reload_test.py index 0f601d1a3..4db800bf9 100644 --- a/sources/shiboken2/tests/otherbinding/module_reload_test.py +++ b/sources/shiboken2/tests/otherbinding/module_reload_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py b/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py index 634106cea..8dd7a8f61 100755 --- a/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py +++ b/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/objtypehashes_test.py b/sources/shiboken2/tests/otherbinding/objtypehashes_test.py index 753aec1a1..28dce63fd 100644 --- a/sources/shiboken2/tests/otherbinding/objtypehashes_test.py +++ b/sources/shiboken2/tests/otherbinding/objtypehashes_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/otherderived_test.py b/sources/shiboken2/tests/otherbinding/otherderived_test.py index f6906c88a..1937380ed 100644 --- a/sources/shiboken2/tests/otherbinding/otherderived_test.py +++ b/sources/shiboken2/tests/otherbinding/otherderived_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/test_module_template.py b/sources/shiboken2/tests/otherbinding/test_module_template.py index ddde85c2e..457709a2f 100644 --- a/sources/shiboken2/tests/otherbinding/test_module_template.py +++ b/sources/shiboken2/tests/otherbinding/test_module_template.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/typediscovery_test.py b/sources/shiboken2/tests/otherbinding/typediscovery_test.py index 507c5be94..a5b0d641c 100644 --- a/sources/shiboken2/tests/otherbinding/typediscovery_test.py +++ b/sources/shiboken2/tests/otherbinding/typediscovery_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py b/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py index 06cfce371..f8b764f5b 100755 --- a/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py +++ b/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/wrongctor_test.py b/sources/shiboken2/tests/otherbinding/wrongctor_test.py index 61317fe66..72a82c0bf 100644 --- a/sources/shiboken2/tests/otherbinding/wrongctor_test.py +++ b/sources/shiboken2/tests/otherbinding/wrongctor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/py3kcompat.py b/sources/shiboken2/tests/py3kcompat.py index 45550efb3..f94717310 100644 --- a/sources/shiboken2/tests/py3kcompat.py +++ b/sources/shiboken2/tests/py3kcompat.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/__del___test.py b/sources/shiboken2/tests/samplebinding/__del___test.py index fd787b5f0..69b96f13d 100644 --- a/sources/shiboken2/tests/samplebinding/__del___test.py +++ b/sources/shiboken2/tests/samplebinding/__del___test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/abstract_test.py b/sources/shiboken2/tests/samplebinding/abstract_test.py index 46aad3260..748a8830b 100644 --- a/sources/shiboken2/tests/samplebinding/abstract_test.py +++ b/sources/shiboken2/tests/samplebinding/abstract_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/addedfunction_test.py b/sources/shiboken2/tests/samplebinding/addedfunction_test.py index 1620a5114..d606994a6 100644 --- a/sources/shiboken2/tests/samplebinding/addedfunction_test.py +++ b/sources/shiboken2/tests/samplebinding/addedfunction_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py b/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py index da2406698..db483cc58 100644 --- a/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py +++ b/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py b/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py index 90db99f91..836eda102 100644 --- a/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py +++ b/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/array_numpy_test.py b/sources/shiboken2/tests/samplebinding/array_numpy_test.py index bde46f2e3..749426ffb 100644 --- a/sources/shiboken2/tests/samplebinding/array_numpy_test.py +++ b/sources/shiboken2/tests/samplebinding/array_numpy_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/array_sequence_test.py b/sources/shiboken2/tests/samplebinding/array_sequence_test.py index 0fd2ec636..a2b3b436b 100644 --- a/sources/shiboken2/tests/samplebinding/array_sequence_test.py +++ b/sources/shiboken2/tests/samplebinding/array_sequence_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bug_554_test.py b/sources/shiboken2/tests/samplebinding/bug_554_test.py index 0bcce92cf..16fdcabca 100644 --- a/sources/shiboken2/tests/samplebinding/bug_554_test.py +++ b/sources/shiboken2/tests/samplebinding/bug_554_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bug_704_test.py b/sources/shiboken2/tests/samplebinding/bug_704_test.py index 6b393f3b1..4e3311e55 100644 --- a/sources/shiboken2/tests/samplebinding/bug_704_test.py +++ b/sources/shiboken2/tests/samplebinding/bug_704_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp b/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp index 39fb8d353..13b0ab124 100644 --- a/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp +++ b/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bytearray_test.py b/sources/shiboken2/tests/samplebinding/bytearray_test.py index 0e8039469..4f7ecbc58 100644 --- a/sources/shiboken2/tests/samplebinding/bytearray_test.py +++ b/sources/shiboken2/tests/samplebinding/bytearray_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/child_return_test.py b/sources/shiboken2/tests/samplebinding/child_return_test.py index 30859dc5a..dde87e24a 100644 --- a/sources/shiboken2/tests/samplebinding/child_return_test.py +++ b/sources/shiboken2/tests/samplebinding/child_return_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/class_fields_test.py b/sources/shiboken2/tests/samplebinding/class_fields_test.py index 0a2491cf2..3d104c60d 100644 --- a/sources/shiboken2/tests/samplebinding/class_fields_test.py +++ b/sources/shiboken2/tests/samplebinding/class_fields_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/collector_test.py b/sources/shiboken2/tests/samplebinding/collector_test.py index cbd6326e6..d16bc9b1a 100644 --- a/sources/shiboken2/tests/samplebinding/collector_test.py +++ b/sources/shiboken2/tests/samplebinding/collector_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/complex_test.py b/sources/shiboken2/tests/samplebinding/complex_test.py index 3a14f4d15..012603741 100644 --- a/sources/shiboken2/tests/samplebinding/complex_test.py +++ b/sources/shiboken2/tests/samplebinding/complex_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/conversion_operator_test.py b/sources/shiboken2/tests/samplebinding/conversion_operator_test.py index 01ac102e8..01eb0a946 100644 --- a/sources/shiboken2/tests/samplebinding/conversion_operator_test.py +++ b/sources/shiboken2/tests/samplebinding/conversion_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/copy_test.py b/sources/shiboken2/tests/samplebinding/copy_test.py index 09c8e4cbc..d7c95ac15 100644 --- a/sources/shiboken2/tests/samplebinding/copy_test.py +++ b/sources/shiboken2/tests/samplebinding/copy_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py b/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py index d1ebdc9d3..2b618adaf 100644 --- a/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py +++ b/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/cyclic_test.py b/sources/shiboken2/tests/samplebinding/cyclic_test.py index e92b3605f..0e67216b5 100644 --- a/sources/shiboken2/tests/samplebinding/cyclic_test.py +++ b/sources/shiboken2/tests/samplebinding/cyclic_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/date_test.py b/sources/shiboken2/tests/samplebinding/date_test.py index 800774a57..be288fc5b 100644 --- a/sources/shiboken2/tests/samplebinding/date_test.py +++ b/sources/shiboken2/tests/samplebinding/date_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/decisor_test.py b/sources/shiboken2/tests/samplebinding/decisor_test.py index 33f41b9ff..ab13f3dc5 100644 --- a/sources/shiboken2/tests/samplebinding/decisor_test.py +++ b/sources/shiboken2/tests/samplebinding/decisor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/delete_test.py b/sources/shiboken2/tests/samplebinding/delete_test.py index bc20ea234..2be8bb3b5 100644 --- a/sources/shiboken2/tests/samplebinding/delete_test.py +++ b/sources/shiboken2/tests/samplebinding/delete_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/deprecated_test.py b/sources/shiboken2/tests/samplebinding/deprecated_test.py index 6c850cd10..9332a1ac2 100644 --- a/sources/shiboken2/tests/samplebinding/deprecated_test.py +++ b/sources/shiboken2/tests/samplebinding/deprecated_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/derived_test.py b/sources/shiboken2/tests/samplebinding/derived_test.py index b19835fef..b646089e4 100644 --- a/sources/shiboken2/tests/samplebinding/derived_test.py +++ b/sources/shiboken2/tests/samplebinding/derived_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/duck_punching_test.py b/sources/shiboken2/tests/samplebinding/duck_punching_test.py index fd60a96af..346521b33 100644 --- a/sources/shiboken2/tests/samplebinding/duck_punching_test.py +++ b/sources/shiboken2/tests/samplebinding/duck_punching_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/echo_test.py b/sources/shiboken2/tests/samplebinding/echo_test.py index 1b0b6a2cc..085745f38 100644 --- a/sources/shiboken2/tests/samplebinding/echo_test.py +++ b/sources/shiboken2/tests/samplebinding/echo_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/enum_test.py b/sources/shiboken2/tests/samplebinding/enum_test.py index 711215c35..5c8496635 100644 --- a/sources/shiboken2/tests/samplebinding/enum_test.py +++ b/sources/shiboken2/tests/samplebinding/enum_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py b/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py index 820e21f7c..93caa63af 100644 --- a/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py +++ b/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py b/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py index d8ed028c4..b08affe84 100644 --- a/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py +++ b/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py b/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py index 8211ecd15..0a5c0b32d 100644 --- a/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py +++ b/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/filter_test.py b/sources/shiboken2/tests/samplebinding/filter_test.py index eb84a932c..c2884bec7 100644 --- a/sources/shiboken2/tests/samplebinding/filter_test.py +++ b/sources/shiboken2/tests/samplebinding/filter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/global.h b/sources/shiboken2/tests/samplebinding/global.h index d273de961..e64b74942 100644 --- a/sources/shiboken2/tests/samplebinding/global.h +++ b/sources/shiboken2/tests/samplebinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/handleholder_test.py b/sources/shiboken2/tests/samplebinding/handleholder_test.py index 6d945e499..6550f4990 100644 --- a/sources/shiboken2/tests/samplebinding/handleholder_test.py +++ b/sources/shiboken2/tests/samplebinding/handleholder_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/hashabletype_test.py b/sources/shiboken2/tests/samplebinding/hashabletype_test.py index 069824ca7..a54bb14ca 100644 --- a/sources/shiboken2/tests/samplebinding/hashabletype_test.py +++ b/sources/shiboken2/tests/samplebinding/hashabletype_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ignorederefop_test.py b/sources/shiboken2/tests/samplebinding/ignorederefop_test.py index dc3fe8b13..a6dce01b0 100644 --- a/sources/shiboken2/tests/samplebinding/ignorederefop_test.py +++ b/sources/shiboken2/tests/samplebinding/ignorederefop_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py b/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py index 3fe66e30c..7359670a1 100644 --- a/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py +++ b/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/implicitconv_test.py b/sources/shiboken2/tests/samplebinding/implicitconv_test.py index a94151d80..eb6388157 100644 --- a/sources/shiboken2/tests/samplebinding/implicitconv_test.py +++ b/sources/shiboken2/tests/samplebinding/implicitconv_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py b/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py index a8ede0548..964a4d014 100755 --- a/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py +++ b/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/injectcode_test.py b/sources/shiboken2/tests/samplebinding/injectcode_test.py index 99847f891..ce2d5f6ab 100644 --- a/sources/shiboken2/tests/samplebinding/injectcode_test.py +++ b/sources/shiboken2/tests/samplebinding/injectcode_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/innerclass_test.py b/sources/shiboken2/tests/samplebinding/innerclass_test.py index 0df636857..3c6fdf8f4 100644 --- a/sources/shiboken2/tests/samplebinding/innerclass_test.py +++ b/sources/shiboken2/tests/samplebinding/innerclass_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/intlist_test.py b/sources/shiboken2/tests/samplebinding/intlist_test.py index 6d21ef053..d7ede92c8 100644 --- a/sources/shiboken2/tests/samplebinding/intlist_test.py +++ b/sources/shiboken2/tests/samplebinding/intlist_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py b/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py index f160f1e07..dc61f0f02 100644 --- a/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py +++ b/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/keep_reference_test.py b/sources/shiboken2/tests/samplebinding/keep_reference_test.py index a8f63f6df..024e56133 100644 --- a/sources/shiboken2/tests/samplebinding/keep_reference_test.py +++ b/sources/shiboken2/tests/samplebinding/keep_reference_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/list_test.py b/sources/shiboken2/tests/samplebinding/list_test.py index 22cb4c04b..bcf61abf3 100644 --- a/sources/shiboken2/tests/samplebinding/list_test.py +++ b/sources/shiboken2/tests/samplebinding/list_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/lock_test.py b/sources/shiboken2/tests/samplebinding/lock_test.py index 35bf5149d..8e9b5d5f4 100644 --- a/sources/shiboken2/tests/samplebinding/lock_test.py +++ b/sources/shiboken2/tests/samplebinding/lock_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/map_test.py b/sources/shiboken2/tests/samplebinding/map_test.py index 18cefd857..52db00989 100644 --- a/sources/shiboken2/tests/samplebinding/map_test.py +++ b/sources/shiboken2/tests/samplebinding/map_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/metaclass_test.py b/sources/shiboken2/tests/samplebinding/metaclass_test.py index 972a2f17d..d1e193555 100644 --- a/sources/shiboken2/tests/samplebinding/metaclass_test.py +++ b/sources/shiboken2/tests/samplebinding/metaclass_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py b/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py index 0905dead9..0fff89701 100644 --- a/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py +++ b/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/mixed_mi_test.py b/sources/shiboken2/tests/samplebinding/mixed_mi_test.py index b6268cf2c..96181ab6c 100644 --- a/sources/shiboken2/tests/samplebinding/mixed_mi_test.py +++ b/sources/shiboken2/tests/samplebinding/mixed_mi_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modelindex_test.py b/sources/shiboken2/tests/samplebinding/modelindex_test.py index 5dd7d3bc7..4cc3c5d9b 100644 --- a/sources/shiboken2/tests/samplebinding/modelindex_test.py +++ b/sources/shiboken2/tests/samplebinding/modelindex_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modelview_test.py b/sources/shiboken2/tests/samplebinding/modelview_test.py index 081de303d..45e802dfe 100644 --- a/sources/shiboken2/tests/samplebinding/modelview_test.py +++ b/sources/shiboken2/tests/samplebinding/modelview_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modifications_test.py b/sources/shiboken2/tests/samplebinding/modifications_test.py index 44748dc8c..90ac22c81 100644 --- a/sources/shiboken2/tests/samplebinding/modifications_test.py +++ b/sources/shiboken2/tests/samplebinding/modifications_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modified_constructor_test.py b/sources/shiboken2/tests/samplebinding/modified_constructor_test.py index 859f89452..46b469fce 100644 --- a/sources/shiboken2/tests/samplebinding/modified_constructor_test.py +++ b/sources/shiboken2/tests/samplebinding/modified_constructor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py b/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py index 3121a9cc2..9e34f6acb 100644 --- a/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py +++ b/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py b/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py index 6546c3ac6..8f58a5d12 100644 --- a/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py +++ b/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/multiple_derived_test.py b/sources/shiboken2/tests/samplebinding/multiple_derived_test.py index e84cc76fd..ea98c7b97 100644 --- a/sources/shiboken2/tests/samplebinding/multiple_derived_test.py +++ b/sources/shiboken2/tests/samplebinding/multiple_derived_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/namespace_test.py b/sources/shiboken2/tests/samplebinding/namespace_test.py index 653b9081b..db8d9dcd2 100644 --- a/sources/shiboken2/tests/samplebinding/namespace_test.py +++ b/sources/shiboken2/tests/samplebinding/namespace_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/newdivision_test.py b/sources/shiboken2/tests/samplebinding/newdivision_test.py index d1a2eda75..d6278f38b 100644 --- a/sources/shiboken2/tests/samplebinding/newdivision_test.py +++ b/sources/shiboken2/tests/samplebinding/newdivision_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py b/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py index e38dc9455..f2f41af6a 100644 --- a/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py +++ b/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/nonzero_test.py b/sources/shiboken2/tests/samplebinding/nonzero_test.py index 7020d30a8..ae12433b6 100644 --- a/sources/shiboken2/tests/samplebinding/nonzero_test.py +++ b/sources/shiboken2/tests/samplebinding/nonzero_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py b/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py index 774b7f1d1..ebf64baeb 100644 --- a/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py +++ b/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/numpy_test.py b/sources/shiboken2/tests/samplebinding/numpy_test.py index 65861e864..79f3955bd 100644 --- a/sources/shiboken2/tests/samplebinding/numpy_test.py +++ b/sources/shiboken2/tests/samplebinding/numpy_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttype_test.py b/sources/shiboken2/tests/samplebinding/objecttype_test.py index 1a06e7e08..27ab67227 100644 --- a/sources/shiboken2/tests/samplebinding/objecttype_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttype_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py b/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py index 533b5a5d1..c9ad53f20 100755 --- a/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py b/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py index a9938b8af..abde1db71 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py b/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py index 4d0e8cab7..7a14d1667 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py b/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py index a8bcf1aa0..78337035c 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py b/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py index 3f09df200..f111cd109 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/oddbool_test.py b/sources/shiboken2/tests/samplebinding/oddbool_test.py index 3424d9dc0..69211dcf7 100644 --- a/sources/shiboken2/tests/samplebinding/oddbool_test.py +++ b/sources/shiboken2/tests/samplebinding/oddbool_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py b/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py index a4f52e1fe..a2adc9420 100644 --- a/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py +++ b/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py b/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py index 647d2cdd7..97101cd27 100644 --- a/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py +++ b/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overflow_test.py b/sources/shiboken2/tests/samplebinding/overflow_test.py index 8a0fff45d..e5be7b854 100644 --- a/sources/shiboken2/tests/samplebinding/overflow_test.py +++ b/sources/shiboken2/tests/samplebinding/overflow_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overload_sorting_test.py b/sources/shiboken2/tests/samplebinding/overload_sorting_test.py index 30e1ad955..bdc5b91f1 100644 --- a/sources/shiboken2/tests/samplebinding/overload_sorting_test.py +++ b/sources/shiboken2/tests/samplebinding/overload_sorting_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overload_test.py b/sources/shiboken2/tests/samplebinding/overload_test.py index efcd3bed8..85453e5c7 100644 --- a/sources/shiboken2/tests/samplebinding/overload_test.py +++ b/sources/shiboken2/tests/samplebinding/overload_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py b/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py index 9f243a573..66a5f8040 100644 --- a/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py +++ b/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py b/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py index 5c6f31395..57432d1ee 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py index 829cabd81..06aeba53c 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py index 32312af7f..782a971a6 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py b/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py index 1c135a4aa..21a5a36be 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py index 8b3e84738..485f44185 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py index e92fa39f5..93fefabfa 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py index 69527974c..c9642fe35 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py index 848c982ce..9711e6f34 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py b/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py index 20e6aca03..acabc5007 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_transference_test.py b/sources/shiboken2/tests/samplebinding/ownership_transference_test.py index 0df2a09ba..055cb8211 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_transference_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_transference_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pair_test.py b/sources/shiboken2/tests/samplebinding/pair_test.py index 4786213c5..85885019f 100644 --- a/sources/shiboken2/tests/samplebinding/pair_test.py +++ b/sources/shiboken2/tests/samplebinding/pair_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pen_test.py b/sources/shiboken2/tests/samplebinding/pen_test.py index 54c96b9c8..18a4bb523 100644 --- a/sources/shiboken2/tests/samplebinding/pen_test.py +++ b/sources/shiboken2/tests/samplebinding/pen_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/point_test.py b/sources/shiboken2/tests/samplebinding/point_test.py index 6f84ac999..e6601e86b 100644 --- a/sources/shiboken2/tests/samplebinding/point_test.py +++ b/sources/shiboken2/tests/samplebinding/point_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pointerholder_test.py b/sources/shiboken2/tests/samplebinding/pointerholder_test.py index 32ef99d5c..e7bc3f503 100644 --- a/sources/shiboken2/tests/samplebinding/pointerholder_test.py +++ b/sources/shiboken2/tests/samplebinding/pointerholder_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pointf_test.py b/sources/shiboken2/tests/samplebinding/pointf_test.py index 9318dca24..f8a75b028 100644 --- a/sources/shiboken2/tests/samplebinding/pointf_test.py +++ b/sources/shiboken2/tests/samplebinding/pointf_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py b/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py index e973c0d78..68f8cde89 100644 --- a/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py +++ b/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/privatector_test.py b/sources/shiboken2/tests/samplebinding/privatector_test.py index 471f735cb..891222081 100644 --- a/sources/shiboken2/tests/samplebinding/privatector_test.py +++ b/sources/shiboken2/tests/samplebinding/privatector_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/privatedtor_test.py b/sources/shiboken2/tests/samplebinding/privatedtor_test.py index 3048a9848..8d4a2997a 100644 --- a/sources/shiboken2/tests/samplebinding/privatedtor_test.py +++ b/sources/shiboken2/tests/samplebinding/privatedtor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/protected_test.py b/sources/shiboken2/tests/samplebinding/protected_test.py index 9201a63cf..7dd3fd606 100644 --- a/sources/shiboken2/tests/samplebinding/protected_test.py +++ b/sources/shiboken2/tests/samplebinding/protected_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pstrlist_test.py b/sources/shiboken2/tests/samplebinding/pstrlist_test.py index 47e89bacb..96d997760 100644 --- a/sources/shiboken2/tests/samplebinding/pstrlist_test.py +++ b/sources/shiboken2/tests/samplebinding/pstrlist_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pystr_test.py b/sources/shiboken2/tests/samplebinding/pystr_test.py index 9056e96b7..f046704ba 100644 --- a/sources/shiboken2/tests/samplebinding/pystr_test.py +++ b/sources/shiboken2/tests/samplebinding/pystr_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/python_thread_test.py b/sources/shiboken2/tests/samplebinding/python_thread_test.py index dcd59ee1f..b16c969e0 100644 --- a/sources/shiboken2/tests/samplebinding/python_thread_test.py +++ b/sources/shiboken2/tests/samplebinding/python_thread_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py b/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py index 12cc67142..4fb665f69 100644 --- a/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py +++ b/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/reference_test.py b/sources/shiboken2/tests/samplebinding/reference_test.py index aaf809451..4733aa983 100644 --- a/sources/shiboken2/tests/samplebinding/reference_test.py +++ b/sources/shiboken2/tests/samplebinding/reference_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/referencetopointer_test.py b/sources/shiboken2/tests/samplebinding/referencetopointer_test.py index 8d85032a0..d5fb679f9 100644 --- a/sources/shiboken2/tests/samplebinding/referencetopointer_test.py +++ b/sources/shiboken2/tests/samplebinding/referencetopointer_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/return_null_test.py b/sources/shiboken2/tests/samplebinding/return_null_test.py index 377624482..ddf65bd5c 100644 --- a/sources/shiboken2/tests/samplebinding/return_null_test.py +++ b/sources/shiboken2/tests/samplebinding/return_null_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/richcompare_test.py b/sources/shiboken2/tests/samplebinding/richcompare_test.py index 8c5eea694..d452fd8ea 100644 --- a/sources/shiboken2/tests/samplebinding/richcompare_test.py +++ b/sources/shiboken2/tests/samplebinding/richcompare_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/sample_test.py b/sources/shiboken2/tests/samplebinding/sample_test.py index 65d1d2871..1e6006da7 100644 --- a/sources/shiboken2/tests/samplebinding/sample_test.py +++ b/sources/shiboken2/tests/samplebinding/sample_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp b/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp index a7f05eb99..6a3168927 100644 --- a/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp +++ b/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/simplefile_test.py b/sources/shiboken2/tests/samplebinding/simplefile_test.py index c2a1afe59..e769af638 100644 --- a/sources/shiboken2/tests/samplebinding/simplefile_test.py +++ b/sources/shiboken2/tests/samplebinding/simplefile_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/size_test.py b/sources/shiboken2/tests/samplebinding/size_test.py index 502539689..e0ab8a6d4 100644 --- a/sources/shiboken2/tests/samplebinding/size_test.py +++ b/sources/shiboken2/tests/samplebinding/size_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py b/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py index 6451c4440..d0fe10721 100644 --- a/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py +++ b/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/str_test.py b/sources/shiboken2/tests/samplebinding/str_test.py index dca7e1f44..1c2d88343 100644 --- a/sources/shiboken2/tests/samplebinding/str_test.py +++ b/sources/shiboken2/tests/samplebinding/str_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/strlist_test.py b/sources/shiboken2/tests/samplebinding/strlist_test.py index 341fcfa32..864d47b02 100644 --- a/sources/shiboken2/tests/samplebinding/strlist_test.py +++ b/sources/shiboken2/tests/samplebinding/strlist_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py b/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py index 7acb6a597..9507eb99e 100644 --- a/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py +++ b/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/time_test.py b/sources/shiboken2/tests/samplebinding/time_test.py index db8818fd3..16015c75a 100644 --- a/sources/shiboken2/tests/samplebinding/time_test.py +++ b/sources/shiboken2/tests/samplebinding/time_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/transform_test.py b/sources/shiboken2/tests/samplebinding/transform_test.py index f490945b8..fd74f3836 100644 --- a/sources/shiboken2/tests/samplebinding/transform_test.py +++ b/sources/shiboken2/tests/samplebinding/transform_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/typeconverters_test.py b/sources/shiboken2/tests/samplebinding/typeconverters_test.py index b3b469c56..50906d1ec 100644 --- a/sources/shiboken2/tests/samplebinding/typeconverters_test.py +++ b/sources/shiboken2/tests/samplebinding/typeconverters_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/typedealloc_test.py b/sources/shiboken2/tests/samplebinding/typedealloc_test.py index b0fe763e0..89eca07f3 100644 --- a/sources/shiboken2/tests/samplebinding/typedealloc_test.py +++ b/sources/shiboken2/tests/samplebinding/typedealloc_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py b/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py index 1106c8761..e154c562b 100644 --- a/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py +++ b/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py b/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py index 18da16458..08202602a 100644 --- a/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py +++ b/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/useraddedctor_test.py b/sources/shiboken2/tests/samplebinding/useraddedctor_test.py index ea9d1f878..a60bff722 100644 --- a/sources/shiboken2/tests/samplebinding/useraddedctor_test.py +++ b/sources/shiboken2/tests/samplebinding/useraddedctor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/virtualdtor_test.py b/sources/shiboken2/tests/samplebinding/virtualdtor_test.py index 46f29179c..d6678697f 100644 --- a/sources/shiboken2/tests/samplebinding/virtualdtor_test.py +++ b/sources/shiboken2/tests/samplebinding/virtualdtor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/virtualmethods_test.py b/sources/shiboken2/tests/samplebinding/virtualmethods_test.py index 8a361c9f9..4d1df42cb 100644 --- a/sources/shiboken2/tests/samplebinding/virtualmethods_test.py +++ b/sources/shiboken2/tests/samplebinding/virtualmethods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/visibilitychange_test.py b/sources/shiboken2/tests/samplebinding/visibilitychange_test.py index b89036a94..9682fedcf 100644 --- a/sources/shiboken2/tests/samplebinding/visibilitychange_test.py +++ b/sources/shiboken2/tests/samplebinding/visibilitychange_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/voidholder_test.py b/sources/shiboken2/tests/samplebinding/voidholder_test.py index 6e841684b..b0a42b31b 100644 --- a/sources/shiboken2/tests/samplebinding/voidholder_test.py +++ b/sources/shiboken2/tests/samplebinding/voidholder_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/weakref_test.py b/sources/shiboken2/tests/samplebinding/weakref_test.py index 77be7ec9f..f244c2d57 100644 --- a/sources/shiboken2/tests/samplebinding/weakref_test.py +++ b/sources/shiboken2/tests/samplebinding/weakref_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/writableclassdict_test.py b/sources/shiboken2/tests/samplebinding/writableclassdict_test.py index 828ac686a..73f5fafb2 100644 --- a/sources/shiboken2/tests/samplebinding/writableclassdict_test.py +++ b/sources/shiboken2/tests/samplebinding/writableclassdict_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/shibokenmodule/module_test.py b/sources/shiboken2/tests/shibokenmodule/module_test.py index bc2931251..e7c1d72d9 100644 --- a/sources/shiboken2/tests/shibokenmodule/module_test.py +++ b/sources/shiboken2/tests/shibokenmodule/module_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/smartbinding/global.h b/sources/shiboken2/tests/smartbinding/global.h index a72cd21a5..b17ec397b 100644 --- a/sources/shiboken2/tests/smartbinding/global.h +++ b/sources/shiboken2/tests/smartbinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/smartbinding/smart_pointer_test.py b/sources/shiboken2/tests/smartbinding/smart_pointer_test.py index c8eb1b2c5..b073aa998 100644 --- a/sources/shiboken2/tests/smartbinding/smart_pointer_test.py +++ b/sources/shiboken2/tests/smartbinding/smart_pointer_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/sphinxtabletest.cpp b/sources/shiboken2/tests/sphinxtabletest.cpp index 6a8ac7703..1b8a10028 100644 --- a/sources/shiboken2/tests/sphinxtabletest.cpp +++ b/sources/shiboken2/tests/sphinxtabletest.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/sphinxtabletest.h b/sources/shiboken2/tests/sphinxtabletest.h index 4779b75cd..2ec87e5ff 100644 --- a/sources/shiboken2/tests/sphinxtabletest.h +++ b/sources/shiboken2/tests/sphinxtabletest.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygenerator.cpp b/sources/shiboken2/tests/test_generator/dummygenerator.cpp index 40d9fb771..4f9f4b16c 100644 --- a/sources/shiboken2/tests/test_generator/dummygenerator.cpp +++ b/sources/shiboken2/tests/test_generator/dummygenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygenerator.h b/sources/shiboken2/tests/test_generator/dummygenerator.h index 5ab95a925..cacffc8a3 100644 --- a/sources/shiboken2/tests/test_generator/dummygenerator.h +++ b/sources/shiboken2/tests/test_generator/dummygenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygentest.cpp b/sources/shiboken2/tests/test_generator/dummygentest.cpp index ae028e2c8..d48aae352 100644 --- a/sources/shiboken2/tests/test_generator/dummygentest.cpp +++ b/sources/shiboken2/tests/test_generator/dummygentest.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygentest.h b/sources/shiboken2/tests/test_generator/dummygentest.h index be8ca42af..d19119cf3 100644 --- a/sources/shiboken2/tests/test_generator/dummygentest.h +++ b/sources/shiboken2/tests/test_generator/dummygentest.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/main.cpp b/sources/shiboken2/tests/test_generator/main.cpp index 5c46ea006..5783de5c1 100644 --- a/sources/shiboken2/tests/test_generator/main.cpp +++ b/sources/shiboken2/tests/test_generator/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of PySide2. +** This file is part of the test suite of the Qt for Python project. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage -- cgit v1.2.3 From 1d6bad63bcb6720078de1e78c1b495bf08d1c65b Mon Sep 17 00:00:00 2001 From: Venugopal Shivashankar Date: Wed, 25 Apr 2018 11:42:28 +0200 Subject: Doc: Use product name and python module names appropriately Configured replaceable text entities so that updating instances of product and module names in the doc is less cumbersome. Change-Id: I6ef8adcc4324775eeb8a48bf81294effb0ea12d5 Reviewed-by: Paul Wicking Reviewed-by: Friedemann Kleint --- sources/pyside2/doc/conf.py.in | 3 ++- sources/pyside2/doc/contents.rst | 2 +- sources/pyside2/doc/gettingstarted.rst | 3 ++- sources/pyside2/doc/index.rst | 6 ++++-- sources/pyside2/doc/pyside-config.qdocconf.in | 2 +- sources/pyside2/doc/pysideapi2.rst | 17 ++++------------- 6 files changed, 14 insertions(+), 19 deletions(-) diff --git a/sources/pyside2/doc/conf.py.in b/sources/pyside2/doc/conf.py.in index 21ce43ad2..10c0af5f3 100644 --- a/sources/pyside2/doc/conf.py.in +++ b/sources/pyside2/doc/conf.py.in @@ -26,7 +26,8 @@ sys.path.append('@pyside_BINARY_DIR@') extensions = ['sphinx.ext.todo', 'sphinx.ext.graphviz', 'inheritance_diagram', 'pysideinclude'] rst_epilog = """ -.. |project| replace:: PySide +.. |project| replace:: Qt for Python +.. |pymodname| replace:: PySide2 """ # Add any paths that contain templates here, relative to this directory. diff --git a/sources/pyside2/doc/contents.rst b/sources/pyside2/doc/contents.rst index 9ba3663f8..4a9c04e6c 100644 --- a/sources/pyside2/doc/contents.rst +++ b/sources/pyside2/doc/contents.rst @@ -1,4 +1,4 @@ -Qt for Python Documentation +|project| Documentation *************************** .. toctree:: diff --git a/sources/pyside2/doc/gettingstarted.rst b/sources/pyside2/doc/gettingstarted.rst index bb58c1734..55212b1ba 100644 --- a/sources/pyside2/doc/gettingstarted.rst +++ b/sources/pyside2/doc/gettingstarted.rst @@ -33,7 +33,8 @@ guide you through the development process: import random from PySide2 import QtCore, QtWidgets, QtGui - These imports should provide access to the APIs specific to those Qt modules. + The |pymodname| Python module provides access to the Qt APIs as its submodule. + In this case, you are importing the :code:`QtCore`, :code:`QtWidgets`, and :code:`QtGui` submodules. * Define a class named :code:`MyWidget`, which extends QWidget and includes a QPushButton and QLabel. diff --git a/sources/pyside2/doc/index.rst b/sources/pyside2/doc/index.rst index 47437d986..c8345597f 100644 --- a/sources/pyside2/doc/index.rst +++ b/sources/pyside2/doc/index.rst @@ -1,8 +1,10 @@ |project| ************* -|project| enables the use of Qt 5 APIs in Python applications. It lets Python -developers utilize the full power of Qt. The following Qt5 modules are supported: +The |project| product enables the use of Qt5 APIs in Python applications. It +lets Python developers utilize the full potential of Qt, using the |pymodname| module. +The |pymodname| module provides access to the individual Qt modules such as QtCore, +QtGui, and so on. The following is the list of supported Qt5 modules: Qt Modules =========== diff --git a/sources/pyside2/doc/pyside-config.qdocconf.in b/sources/pyside2/doc/pyside-config.qdocconf.in index 4a9af5994..2083913e3 100644 --- a/sources/pyside2/doc/pyside-config.qdocconf.in +++ b/sources/pyside2/doc/pyside-config.qdocconf.in @@ -1,5 +1,5 @@ buildversion = @PYSIDE_QT_VERSION@ -navigation.homepage = PySide +navigation.homepage = Qt for Python outputdir = @DOC_DATA_DIR@ outputformats = WebXML diff --git a/sources/pyside2/doc/pysideapi2.rst b/sources/pyside2/doc/pysideapi2.rst index 5769ca83b..f1cc13391 100644 --- a/sources/pyside2/doc/pysideapi2.rst +++ b/sources/pyside2/doc/pysideapi2.rst @@ -1,20 +1,11 @@ .. _pysideapi2: -|project| API +|pymodname| API *************** -Since the beginning one of the PySide goals was to be API compatible with PyQt4, -but with some (documented) exceptions. For example, PySide will not export to -Python components marked as deprecated on C++ Qt. All the modifications follow -the `PSEP101 `_ as its guideline. - -The release 4.7 of PyQt4 came with improvements on the pythonic front, being -the extinction of QString a good example. PySide followed this change, except in -one point: while PyQt4 has conserved the old behavior as optional, PySide -bindings fully adopted the new API - completely removing QString. No turning -back. Thus remember to update your source code to the new API, this will ensure -your code will run on both bindings. - +One of the goals of |pymodname| is to be API compatible with PyQt5, +with certain exceptions. For example, |pymodname| will not export C++ components +that are marked as deprecated by Qt. __hash__() function return value ================================ -- cgit v1.2.3 From 6fe563b2aa15c2c23369acce353be69f6ea84c77 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Mon, 23 Apr 2018 14:38:39 +0200 Subject: Split and move various setup.py parts into different files This is an initial effort to clean up setup.py. A new directory called build_scripts contains most of the logic for building, leaving setup.py as an entry point. The build_scripts directory contains the usual qtinfo, utils, and the setup.py content has been split into main.py and platform specific files under platforms subfolder. The testrunner script has been modified to find the new location of the utils module. Task-number: PYSIDE-558 Change-Id: I3e041d5116ca5c3f96c789317303b65a7b1bbd70 Reviewed-by: Friedemann Kleint --- build_scripts/__init__.py | 38 + build_scripts/main.py | 1300 +++++++++++++++++++ build_scripts/options.py | 80 ++ build_scripts/platforms/__init__.py | 38 + build_scripts/platforms/linux.py | 111 ++ build_scripts/platforms/macos.py | 156 +++ build_scripts/platforms/unix.py | 167 +++ build_scripts/platforms/windows_desktop.py | 326 +++++ build_scripts/qtinfo.py | 237 ++++ build_scripts/utils.py | 1075 ++++++++++++++++ qtinfo.py | 237 ---- setup.py | 1901 +--------------------------- testing/runner.py | 15 +- utils.py | 1075 ---------------- 14 files changed, 3549 insertions(+), 3207 deletions(-) create mode 100644 build_scripts/__init__.py create mode 100644 build_scripts/main.py create mode 100644 build_scripts/options.py create mode 100644 build_scripts/platforms/__init__.py create mode 100644 build_scripts/platforms/linux.py create mode 100644 build_scripts/platforms/macos.py create mode 100644 build_scripts/platforms/unix.py create mode 100644 build_scripts/platforms/windows_desktop.py create mode 100644 build_scripts/qtinfo.py create mode 100644 build_scripts/utils.py delete mode 100644 qtinfo.py delete mode 100644 utils.py diff --git a/build_scripts/__init__.py b/build_scripts/__init__.py new file mode 100644 index 000000000..f1ebb00d9 --- /dev/null +++ b/build_scripts/__init__.py @@ -0,0 +1,38 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# diff --git a/build_scripts/main.py b/build_scripts/main.py new file mode 100644 index 000000000..446a7efd0 --- /dev/null +++ b/build_scripts/main.py @@ -0,0 +1,1300 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +from __future__ import print_function +from distutils.version import LooseVersion + +import os +import time +from .utils import memoize, get_python_dict +from .options import * + +setup_script_dir = os.getcwd() +build_scripts_dir = os.path.join(setup_script_dir, 'build_scripts') +setup_py_path = os.path.join(setup_script_dir, "setup.py") + +@memoize +def get_package_timestamp(): + return int(time.time()) + +@memoize +def get_package_version(): + """ Returns the version string for the PySide2 package. """ + pyside_version_py = os.path.join( + setup_script_dir, "sources", "pyside2", "pyside_version.py") + d = get_python_dict(pyside_version_py) + + final_version = "{}.{}.{}".format( + d['major_version'], d['minor_version'], d['patch_version']) + pre_release_version_type = d['pre_release_version_type'] + pre_release_version = d['pre_release_version'] + if pre_release_version and pre_release_version: + final_version += pre_release_version_type + pre_release_version + + # Add the current timestamp to the version number, to suggest it + # is a development snapshot build. + if OPTION_SNAPSHOT_BUILD: + final_version += ".dev{}".format(get_package_timestamp()) + return final_version + +# Buildable extensions. +containedModules = ['shiboken2', 'pyside2', 'pyside2-tools'] + +# Git submodules: ["submodule_name", +# "location_relative_to_sources_folder"] +submodules = [["pyside2-tools"]] + +pyside_package_dir_name = "pyside_package" + +try: + import setuptools +except ImportError: + from ez_setup import use_setuptools + use_setuptools() + +import sys +import platform +import re +import fnmatch + +import difflib # for a close match of dirname and module +import functools + +from distutils import log +from distutils.errors import DistutilsOptionError +from distutils.errors import DistutilsSetupError +from distutils.sysconfig import get_config_var +from distutils.sysconfig import get_python_lib +from distutils.spawn import find_executable +from distutils.command.build import build as _build +from distutils.command.build_ext import build_ext as _build_ext +from distutils.util import get_platform + +from setuptools import setup, Extension +from setuptools.command.install import install as _install +from setuptools.command.install_lib import install_lib as _install_lib +from setuptools.command.bdist_egg import bdist_egg as _bdist_egg +from setuptools.command.develop import develop as _develop +from setuptools.command.build_py import build_py as _build_py + +wheel_module_exists = False +try: + from wheel.bdist_wheel import bdist_wheel as _bdist_wheel + from wheel.bdist_wheel import safer_name as _safer_name + wheel_module_exists = True +except ImportError: + pass + +from .qtinfo import QtInfo +from .utils import rmtree, detectClang, copyfile, copydir, run_process_output, run_process +from .utils import update_env_path, init_msvc_env, filter_match, macos_fix_rpaths_for_library +from .platforms.unix import prepare_packages_posix +from .platforms.windows_desktop import prepare_packages_win32 + +from textwrap import dedent + +# make sure that setup.py is run with an allowed python version +def check_allowed_python_version(): + import re + pattern = "'Programming Language :: Python :: (\d+)\.(\d+)'" + supported = [] + with open(setup_py_path) as setup: + for line in setup.readlines(): + found = re.search(pattern, line) + if found: + major = int(found.group(1)) + minor = int(found.group(2)) + supported.append( (major, minor) ) + this_py = sys.version_info[:2] + if this_py not in supported: + print("only these python versions are supported:", supported) + sys.exit(1) + +check_allowed_python_version() + +qtSrcDir = '' + +# This is used automatically by distutils.command.install object, to +# specify final installation location. +OPTION_FINAL_INSTALL_PREFIX = option_value("prefix") + + +if OPTION_QT_VERSION is None: + OPTION_QT_VERSION = "5" +if OPTION_QMAKE is None: + OPTION_QMAKE = find_executable("qmake-qt5") +if OPTION_QMAKE is None: + OPTION_QMAKE = find_executable("qmake") + +# make qtinfo.py independent of relative paths. +if OPTION_QMAKE is not None and os.path.exists(OPTION_QMAKE): + OPTION_QMAKE = os.path.abspath(OPTION_QMAKE) +if OPTION_CMAKE is not None and os.path.exists(OPTION_CMAKE): + OPTION_CMAKE = os.path.abspath(OPTION_CMAKE) + +QMAKE_COMMAND = None +# Checking whether qmake executable exists +if OPTION_QMAKE is not None and os.path.exists(OPTION_QMAKE): + # Looking whether qmake path is a link and whether the link exists + if os.path.islink(OPTION_QMAKE) and os.path.lexists(OPTION_QMAKE): + # Set -qt=X here. + if "qtchooser" in os.readlink(OPTION_QMAKE): + QMAKE_COMMAND = [OPTION_QMAKE, "-qt={}".format(OPTION_QT_VERSION)] +if not QMAKE_COMMAND: + QMAKE_COMMAND = [OPTION_QMAKE] + +if len(QMAKE_COMMAND) == 0 or QMAKE_COMMAND[0] is None: + print("qmake could not be found.") + sys.exit(1) +if not os.path.exists(QMAKE_COMMAND[0]): + print("'{}' does not exist.".format(QMAKE_COMMAND[0])) + sys.exit(1) +if OPTION_CMAKE is None: + OPTION_CMAKE = find_executable("cmake") + +if OPTION_CMAKE is None: + print("cmake could not be found.") + sys.exit(1) +if not os.path.exists(OPTION_CMAKE): + print("'{}' does not exist.".format(OPTION_CMAKE)) + sys.exit(1) + +if sys.platform == "win32": + if OPTION_MAKESPEC is None: + OPTION_MAKESPEC = "msvc" + if not OPTION_MAKESPEC in ["msvc", "mingw"]: + print("Invalid option --make-spec. Available values are {}".format( + ["msvc", "mingw"])) + sys.exit(1) +else: + if OPTION_MAKESPEC is None: + OPTION_MAKESPEC = "make" + if not OPTION_MAKESPEC in ["make"]: + print("Invalid option --make-spec. Available values are {}".format( + ["make"])) + sys.exit(1) + +if OPTION_JOBS: + if sys.platform == 'win32' and OPTION_NO_JOM: + print("Option --jobs can only be used with jom on Windows.") + sys.exit(1) + else: + if not OPTION_JOBS.startswith('-j'): + OPTION_JOBS = '-j' + OPTION_JOBS +else: + OPTION_JOBS = '' + +def is_debug_python(): + return getattr(sys, "gettotalrefcount", None) is not None + +# Return a prefix suitable for the _install/_build directory +def prefix(): + virtualEnvName = os.environ.get('VIRTUAL_ENV', None) + if virtualEnvName is not None: + name = os.path.basename(virtualEnvName) + else: + name = "pyside" + name += str(sys.version_info[0]) + if OPTION_DEBUG: + name += 'd' + if is_debug_python(): + name += 'p' + return name + +# Initialize, pull and checkout submodules +def prepareSubModules(): + print("Initializing submodules for PySide2 version: {}".format( + get_package_version())) + submodules_dir = os.path.join(setup_script_dir, "sources") + + # Create list of [name, desired branch, absolute path, desired + # branch] and determine whether all submodules are present + needInitSubModules = False + + for m in submodules: + module_name = m[0] + module_dir = m[1] if len(m) > 1 else '' + module_dir = os.path.join(submodules_dir, module_dir, module_name) + # Check for non-empty directory (repository checked out) + if not os.listdir(module_dir): + needInitSubModules = True + break + + if needInitSubModules: + git_update_cmd = ["git", "submodule", "update", "--init"] + if run_process(git_update_cmd) != 0: + m = ("Failed to initialize the git submodules: " + "update --init failed") + raise DistutilsSetupError(m) + git_pull_cmd = ["git", "submodule", "foreach", "git", "fetch", "--all"] + if run_process(git_pull_cmd) != 0: + m = ("Failed to initialize the git submodules: " + "git fetch --all failed") + raise DistutilsSetupError(m) + else: + print("All submodules present.") + + git_update_cmd = ["git", "submodule", "update"] + if run_process(git_update_cmd) != 0: + m = "Failed to checkout the correct git submodules SHA1s." + raise DistutilsSetupError(m) + +# Single global instance of QtInfo to be used later in multiple code +# paths. +qtinfo = QtInfo(QMAKE_COMMAND) + +def get_qt_version(): + qt_version = qtinfo.version + + if not qt_version: + log.error("Failed to query the Qt version with qmake {0}".format( + self.qtinfo.qmake_command)) + sys.exit(1) + + if LooseVersion(qtinfo.version) < LooseVersion("5.7"): + log.error("Incompatible Qt version detected: {}. " + "A Qt version >= 5.7 is required.".format(qt_version)) + sys.exit(1) + + return qt_version + +def prepareBuild(): + if (os.path.isdir(".git") and not OPTION_IGNOREGIT and + not OPTION_ONLYPACKAGE and not OPTION_REUSE_BUILD): + prepareSubModules() + # Clean up temp and package folders + for n in [pyside_package_dir_name, "build"]: + d = os.path.join(setup_script_dir, n) + if os.path.isdir(d): + print("Removing {}".format(d)) + try: + rmtree(d) + except Exception as e: + print('***** problem removing "{}"'.format(d)) + print('ignored error: {}'.format(e)) + # Prepare package folders + ppdn = pyside_package_dir_name + absolute_paths = [os.path.join(ppdn, "PySide2"), + os.path.join(ppdn, "pyside2uic")] + for pkg in absolute_paths: + pkg_dir = os.path.join(setup_script_dir, pkg) + os.makedirs(pkg_dir) + # locate Qt sources for the documentation + if OPTION_QT_SRC is None: + installPrefix = qtinfo.prefix_dir + if installPrefix: + global qtSrcDir + # In-source, developer build + if installPrefix.endswith("qtbase"): + qtSrcDir = installPrefix + else: # SDK: Use 'Src' directory + qtSrcDir = os.path.join(os.path.dirname(installPrefix), + 'Src', 'qtbase') + +class pyside_install(_install): + def __init__(self, *args, **kwargs): + _install.__init__(self, *args, **kwargs) + + def initialize_options (self): + _install.initialize_options(self) + + if sys.platform == 'darwin': + # Because we change the plat_name to include a correct + # deployment target on macOS distutils thinks we are + # cross-compiling, and throws an exception when trying to + # execute setup.py install. The check looks like this + # if self.warn_dir and build_plat != get_platform(): + # raise DistutilsPlatformError("Can't install when " + # "cross-compiling") + # Obviously get_platform will return the old deployment + # target. The fix is to disable the warn_dir flag, which + # was created for bdist_* derived classes to override, for + # similar cases. + self.warn_dir = False + + def run(self): + _install.run(self) + log.info('*** Install completed') + +class pyside_develop(_develop): + + def __init__(self, *args, **kwargs): + _develop.__init__(self, *args, **kwargs) + + def run(self): + self.run_command("build") + _develop.run(self) + +class pyside_bdist_egg(_bdist_egg): + + def __init__(self, *args, **kwargs): + _bdist_egg.__init__(self, *args, **kwargs) + + def run(self): + self.run_command("build") + _bdist_egg.run(self) + +class pyside_build_ext(_build_ext): + + def __init__(self, *args, **kwargs): + _build_ext.__init__(self, *args, **kwargs) + + def run(self): + pass + +if wheel_module_exists: + class pyside_build_wheel(_bdist_wheel): + def __init__(self, *args, **kwargs): + _bdist_wheel.__init__(self, *args, **kwargs) + + @property + def wheel_dist_name(self): + # Slightly modified version of wheel's wheel_dist_name + # method, to add the Qt version as well. + # Example: + # PySide2-5.6-5.6.4-cp27-cp27m-macosx_10_10_intel.whl + # The PySide2 version is "5.6". + # The Qt version built against is "5.6.4". + qt_version = get_qt_version() + package_version = get_package_version() + wheel_version = "{}-{}".format(package_version, qt_version) + components = (_safer_name(self.distribution.get_name()), + wheel_version) + if self.build_number: + components += (self.build_number,) + return '-'.join(components) + + def finalize_options(self): + if sys.platform == 'darwin': + # Override the platform name to contain the correct + # minimum deployment target. + # This is used in the final wheel name. + self.plat_name = pyside_build.macos_plat_name() + _bdist_wheel.finalize_options(self) + +# pyside_build_py and pyside_install_lib are reimplemented to preserve +# symlinks when distutils / setuptools copy files to various +# directories through the different build stages. +class pyside_build_py(_build_py): + + def __init__(self, *args, **kwargs): + _build_py.__init__(self, *args, **kwargs) + + def build_package_data(self): + """Copies files from pyside_package into build/xxx directory""" + + for package, src_dir, build_dir, filenames in self.data_files: + for filename in filenames: + target = os.path.join(build_dir, filename) + self.mkpath(os.path.dirname(target)) + srcfile = os.path.abspath(os.path.join(src_dir, filename)) + # Using our own copyfile makes sure to preserve symlinks. + copyfile(srcfile, target) + +class pyside_install_lib(_install_lib): + + def __init__(self, *args, **kwargs): + _install_lib.__init__(self, *args, **kwargs) + + def install(self): + """ + Installs files from build/xxx directory into final + site-packages/PySide2 directory. + """ + + if os.path.isdir(self.build_dir): + # Using our own copydir makes sure to preserve symlinks. + outfiles = copydir(os.path.abspath(self.build_dir), + os.path.abspath(self.install_dir)) + else: + self.warn("'{}' does not exist -- " + "no Python modules to install".format(self.build_dir)) + return + return outfiles + +class pyside_build(_build): + + def __init__(self, *args, **kwargs): + _build.__init__(self, *args, **kwargs) + + def finalize_options(self): + os_name_backup = os.name + if sys.platform == 'darwin': + self.plat_name = pyside_build.macos_plat_name() + # This is a hack to circumvent the dubious check in + # distutils.commands.build -> finalize_options, which only + # allows setting the plat_name for windows NT. + # That is not the case for the wheel module though (which + # does allow setting plat_name), so we circumvent by faking + # the os name when finalizing the options, and then + # restoring the original os name. + os.name = "nt" + + _build.finalize_options(self) + + if sys.platform == 'darwin': + os.name = os_name_backup + + def initialize_options(self): + _build.initialize_options(self) + self.make_path = None + self.make_generator = None + self.debug = False + self.script_dir = None + self.sources_dir = None + self.build_dir = None + self.install_dir = None + self.py_executable = None + self.py_include_dir = None + self.py_library = None + self.py_version = None + self.build_type = "Release" + self.qtinfo = None + self.build_tests = False + + def run(self): + prepareBuild() + platform_arch = platform.architecture()[0] + log.info("Python architecture is {}".format(platform_arch)) + + build_type = "Debug" if OPTION_DEBUG else "Release" + if OPTION_RELWITHDEBINFO: + build_type = 'RelWithDebInfo' + + # Check env + make_path = None + make_generator = None + if not OPTION_ONLYPACKAGE: + if OPTION_MAKESPEC == "make": + make_name = "make" + make_generator = "Unix Makefiles" + elif OPTION_MAKESPEC == "msvc": + nmake_path = find_executable("nmake") + if nmake_path is None or not os.path.exists(nmake_path): + log.info("nmake not found. " + "Trying to initialize the MSVC env...") + init_msvc_env(platform_arch, build_type) + nmake_path = find_executable("nmake") + assert(nmake_path is not None and + os.path.exists(nmake_path)) + jom_path = None if OPTION_NO_JOM else find_executable("jom") + if jom_path is not None and os.path.exists(jom_path): + log.info("jom was found in {}".format(jom_path)) + make_name = "jom" + make_generator = "NMake Makefiles JOM" + else: + log.info("nmake was found in {}".format(nmake_path)) + make_name = "nmake" + make_generator = "NMake Makefiles" + elif OPTION_MAKESPEC == "mingw": + make_name = "mingw32-make" + make_generator = "MinGW Makefiles" + else: + raise DistutilsSetupError( + "Invalid option --make-spec.") + make_path = find_executable(make_name) + if make_path is None or not os.path.exists(make_path): + raise DistutilsSetupError("You need the program '{}' on your " + "system path to compile PySide2.".format(make_name)) + + if OPTION_CMAKE is None or not os.path.exists(OPTION_CMAKE): + raise DistutilsSetupError( + "Failed to find cmake." + " Please specify the path to cmake with " + "--cmake parameter.") + + if OPTION_QMAKE is None or not os.path.exists(OPTION_QMAKE): + raise DistutilsSetupError( + "Failed to find qmake." + " Please specify the path to qmake with --qmake parameter.") + + # Prepare parameters + py_executable = sys.executable + py_version = "{}.{}".format(sys.version_info[0], sys.version_info[1]) + py_include_dir = get_config_var("INCLUDEPY") + py_libdir = get_config_var("LIBDIR") + py_prefix = get_config_var("prefix") + if not py_prefix or not os.path.exists(py_prefix): + py_prefix = sys.prefix + if sys.platform == "win32": + py_scripts_dir = os.path.join(py_prefix, "Scripts") + else: + py_scripts_dir = os.path.join(py_prefix, "bin") + if py_libdir is None or not os.path.exists(py_libdir): + if sys.platform == "win32": + py_libdir = os.path.join(py_prefix, "libs") + else: + py_libdir = os.path.join(py_prefix, "lib") + if py_include_dir is None or not os.path.exists(py_include_dir): + if sys.platform == "win32": + py_include_dir = os.path.join(py_prefix, "include") + else: + py_include_dir = os.path.join(py_prefix, + "include/python{}".format(py_version)) + dbgPostfix = "" + if build_type == "Debug": + dbgPostfix = "_d" + if sys.platform == "win32": + if OPTION_MAKESPEC == "mingw": + static_lib_name = "libpython{}{}.a".format( + py_version.replace(".", ""), dbgPostfix) + py_library = os.path.join(py_libdir, static_lib_name) + else: + python_lib_name = "python{}{}.lib".format( + py_version.replace(".", ""), dbgPostfix) + py_library = os.path.join(py_libdir, python_lib_name) + else: + lib_exts = ['.so'] + if sys.platform == 'darwin': + lib_exts.append('.dylib') + if sys.version_info[0] > 2: + lib_suff = getattr(sys, 'abiflags', None) + else: # Python 2 + lib_suff = '' + lib_exts.append('.so.1') + # Suffix for OpenSuSE 13.01 + lib_exts.append('.so.1.0') + # static library as last gasp + lib_exts.append('.a') + + if sys.version_info[0] == 2 and dbgPostfix: + # For Python2 add a duplicate set of extensions + # combined with the dbgPostfix, so we test for both the + # debug version of the lib and the normal one. + # This allows a debug PySide2 to be built with a + # non-debug Python. + lib_exts = [dbgPostfix + e for e in lib_exts] + lib_exts + + python_library_found = False + libs_tried = [] + for lib_ext in lib_exts: + lib_name = "libpython{}{}{}".format(py_version, lib_suff, + lib_ext) + py_library = os.path.join(py_libdir, lib_name) + if os.path.exists(py_library): + python_library_found = True + break + libs_tried.append(py_library) + else: + # At least on macOS 10.11, the system Python 2.6 does + # not include a symlink to the framework file disguised + # as a .dylib file, thus finding the library would + # fail. + # Manually check if a framework file "Python" exists in + # the Python framework bundle. + if sys.platform == 'darwin' and sys.version_info[:2] == (2, 6): + # These manipulations essentially transform + # /System/Library/Frameworks/Python.framework/Versions/2.6/lib + # to + # /System/Library/Frameworks/Python.framework/Versions/2.6/Python + possible_framework_path = os.path.realpath( + os.path.join(py_libdir, '..')) + possible_framework_version = os.path.basename( + possible_framework_path) + possible_framework_library = os.path.join( + possible_framework_path, 'Python') + + if (possible_framework_version == '2.6' and + os.path.exists(possible_framework_library)): + py_library = possible_framework_library + python_library_found = True + else: + libs_tried.append(possible_framework_library) + + # Try to find shared libraries which have a multi arch + # suffix. + if not python_library_found: + py_multiarch = get_config_var("MULTIARCH") + if py_multiarch and not python_library_found: + try_py_libdir = os.path.join(py_libdir, py_multiarch) + libs_tried = [] + for lib_ext in lib_exts: + lib_name = "libpython{}{}{}".format( + py_version, lib_suff, lib_ext) + py_library = os.path.join(try_py_libdir, lib_name) + if os.path.exists(py_library): + py_libdir = try_py_libdir + python_library_found = True + break + libs_tried.append(py_library) + + if not python_library_found: + raise DistutilsSetupError( + "Failed to locate the Python library with {}".format( + ", ".join(libs_tried))) + + if py_library.endswith('.a'): + # Python was compiled as a static library + log.error("Failed to locate a dynamic Python library, " + "using {}".format(py_library)) + + self.qtinfo = qtinfo + qt_dir = os.path.dirname(OPTION_QMAKE) + qt_version = get_qt_version() + + # Update the PATH environment variable + additionalPaths = [py_scripts_dir, qt_dir] + + # Add Clang to path for Windows. + # Revisit once Clang is bundled with Qt. + if (sys.platform == "win32" and + LooseVersion(self.qtinfo.version) >= LooseVersion("5.7.0")): + clangDir = detectClang() + if clangDir[0]: + clangBinDir = os.path.join(clangDir[0], 'bin') + if not clangBinDir in os.environ.get('PATH'): + log.info("Adding {} as detected by {} to PATH".format( + clangBinDir, clangDir[1])) + additionalPaths.append(clangBinDir) + else: + raise DistutilsSetupError("Failed to detect Clang when checking " + "LLVM_INSTALL_DIR, CLANG_INSTALL_DIR, llvm-config") + + update_env_path(additionalPaths) + + build_name = "py{}-qt{}-{}-{}".format(py_version, qt_version, + platform.architecture()[0], build_type.lower()) + + script_dir = setup_script_dir + sources_dir = os.path.join(script_dir, "sources") + build_dir = os.path.join(script_dir, prefix() + "_build", + "{}".format(build_name)) + install_dir = os.path.join(script_dir, prefix() + "_install", + "{}".format(build_name)) + + # Try to ensure that tools built by this script (such as shiboken2) + # are found before any that may already be installed on the system. + update_env_path([os.path.join(install_dir, 'bin')]) + + # Tell cmake to look here for *.cmake files + os.environ['CMAKE_PREFIX_PATH'] = install_dir + + self.make_path = make_path + self.make_generator = make_generator + self.debug = OPTION_DEBUG + self.script_dir = script_dir + self.pyside_package_dir = os.path.join(self.script_dir, + pyside_package_dir_name) + self.sources_dir = sources_dir + self.build_dir = build_dir + self.install_dir = install_dir + self.py_executable = py_executable + self.py_include_dir = py_include_dir + self.py_library = py_library + self.py_version = py_version + self.build_type = build_type + self.site_packages_dir = get_python_lib(1, 0, prefix=install_dir) + self.build_tests = OPTION_BUILDTESTS + + setuptools_install_prefix = get_python_lib(1) + if OPTION_FINAL_INSTALL_PREFIX: + setuptools_install_prefix = OPTION_FINAL_INSTALL_PREFIX + + # Save the shiboken build dir path for clang deployment + # purposes. + self.shiboken_build_dir = os.path.join(self.build_dir, "shiboken2") + + log.info("=" * 30) + log.info("Package version: {}".format(get_package_version())) + log.info("Build type: {}".format(self.build_type)) + log.info("Build tests: {}".format(self.build_tests)) + log.info("-" * 3) + log.info("Make path: {}".format(self.make_path)) + log.info("Make generator: {}".format(self.make_generator)) + log.info("Make jobs: {}".format(OPTION_JOBS)) + log.info("-" * 3) + + log.info("setup.py directory: {}".format(self.script_dir)) + log.info("Build scripts directory: {}".format(build_scripts_dir)) + log.info("Sources directory: {}".format(self.sources_dir)) + + log.info(dedent(""" + Building PySide2 will create and touch directories + in the following order: + make build directory (py*_build/*/*) -> + make install directory (py*_install/*/*) -> + {} directory (pyside_package/*) -> + setuptools build directory (build/*/*) -> + setuptools install directory + (usually path-installed-python/lib/python*/site-packages/*) + """).format(pyside_package_dir_name)) + + log.info("make build directory: {}".format(self.build_dir)) + log.info("make install directory: {}".format(self.install_dir)) + log.info("{} directory: {}".format(pyside_package_dir_name, + self.pyside_package_dir)) + log.info("setuptools build directory: {}".format( + os.path.join(self.script_dir, "build"))) + log.info("setuptools install directory: {}".format( + setuptools_install_prefix)) + log.info("make-installed site-packages directory: {} \n" + " (only relevant for copying files from " + "'make install directory' to '{} directory'".format( + self.site_packages_dir, pyside_package_dir_name)) + log.info("-" * 3) + log.info("Python executable: {}".format(self.py_executable)) + log.info("Python includes: {}".format(self.py_include_dir)) + log.info("Python library: {}".format(self.py_library)) + log.info("Python prefix: {}".format(py_prefix)) + log.info("Python scripts: {}".format(py_scripts_dir)) + log.info("-" * 3) + log.info("Qt qmake: {}".format(self.qtinfo.qmake_command)) + log.info("Qt version: {}".format(self.qtinfo.version)) + log.info("Qt bins: {}".format(self.qtinfo.bins_dir)) + log.info("Qt docs: {}".format(self.qtinfo.docs_dir)) + log.info("Qt plugins: {}".format(self.qtinfo.plugins_dir)) + log.info("-" * 3) + if sys.platform == 'win32': + log.info("OpenSSL dll directory: {}".format(OPTION_OPENSSL)) + if sys.platform == 'darwin': + pyside_macos_deployment_target = ( + pyside_build.macos_pyside_min_deployment_target() + ) + log.info("MACOSX_DEPLOYMENT_TARGET set to: {}".format( + pyside_macos_deployment_target)) + log.info("=" * 30) + + # Prepare folders + if not os.path.exists(self.sources_dir): + log.info("Creating sources folder {}...".format(self.sources_dir)) + os.makedirs(self.sources_dir) + if not os.path.exists(self.build_dir): + log.info("Creating build folder {}...".format(self.build_dir)) + os.makedirs(self.build_dir) + if not os.path.exists(self.install_dir): + log.info("Creating install folder {}...".format(self.install_dir)) + os.makedirs(self.install_dir) + + if not OPTION_ONLYPACKAGE: + # Build extensions + for ext in containedModules: + self.build_extension(ext) + + if OPTION_BUILDTESTS: + # we record the latest successful build and note the + # build directory for supporting the tests. + timestamp = time.strftime('%Y-%m-%d_%H%M%S') + build_history = os.path.join(setup_script_dir, 'build_history') + unique_dir = os.path.join(build_history, timestamp) + os.makedirs(unique_dir) + fpath = os.path.join(unique_dir, 'build_dir.txt') + with open(fpath, 'w') as f: + print(build_dir, file=f) + log.info("Created {}".format(build_history)) + + if not OPTION_SKIP_PACKAGING: + # Build patchelf if needed + self.build_patchelf() + + # Prepare packages + self.prepare_packages() + + # Build packages + _build.run(self) + else: + log.info("Skipped preparing and building packages.") + log.info('*** Build completed') + + @staticmethod + def macos_qt_min_deployment_target(): + target = qtinfo.macos_min_deployment_target + + if not target: + raise DistutilsSetupError("Failed to query for Qt's " + "QMAKE_MACOSX_DEPLOYMENT_TARGET.") + return target + + @staticmethod + @memoize + def macos_pyside_min_deployment_target(): + """ + Compute and validate PySide2 MACOSX_DEPLOYMENT_TARGET value. + Candidate sources that are considered: + - setup.py provided value + - maximum value between minimum deployment target of the + Python interpreter and the minimum deployment target of + the Qt libraries. + If setup.py value is provided, that takes precedence. + Otherwise use the maximum of the above mentioned two values. + """ + python_target = get_config_var('MACOSX_DEPLOYMENT_TARGET') or None + qt_target = pyside_build.macos_qt_min_deployment_target() + setup_target = OPTION_MACOS_DEPLOYMENT_TARGET + + qt_target_split = [int(x) for x in qt_target.split('.')] + if python_target: + python_target_split = [int(x) for x in python_target.split('.')] + if setup_target: + setup_target_split = [int(x) for x in setup_target.split('.')] + + message = ("Can't set MACOSX_DEPLOYMENT_TARGET value to {} because " + "{} was built with minimum deployment target set to {}.") + # setup.py provided OPTION_MACOS_DEPLOYMENT_TARGET value takes + # precedence. + if setup_target: + if python_target and setup_target_split < python_target_split: + raise DistutilsSetupError(message.format(setup_target, + "Python", python_target)) + if setup_target_split < qt_target_split: + raise DistutilsSetupError(message.format(setup_target, + "Qt", qt_target)) + # All checks clear, use setup.py provided value. + return setup_target + + # Setup.py value not provided, + # use same value as provided by Qt. + if python_target: + maximum_target = '.'.join([str(e) for e in max(python_target_split, + qt_target_split)]) + else: + maximum_target = qt_target + return maximum_target + + @staticmethod + @memoize + def macos_plat_name(): + deployment_target = pyside_build.macos_pyside_min_deployment_target() + # Example triple "macosx-10.12-x86_64". + plat = get_platform().split("-") + plat_name = "{}-{}-{}".format(plat[0], deployment_target, plat[2]) + return plat_name + + def build_patchelf(self): + if not sys.platform.startswith('linux'): + return + log.info("Building patchelf...") + module_src_dir = os.path.join(self.sources_dir, "patchelf") + build_cmd = [ + "g++", + "{}/patchelf.cc".format(module_src_dir), + "-o", + "patchelf", + ] + if run_process(build_cmd) != 0: + raise DistutilsSetupError("Error building patchelf") + + def build_extension(self, extension): + # calculate the subrepos folder name + + log.info("Building module {}...".format(extension)) + + # Prepare folders + os.chdir(self.build_dir) + module_build_dir = os.path.join(self.build_dir, extension) + skipflag_file = module_build_dir + '-skip' + if os.path.exists(skipflag_file): + log.info("Skipping {} because {} exists".format(extension, + skipflag_file)) + return + + module_build_exists = os.path.exists(module_build_dir) + if module_build_exists: + if not OPTION_REUSE_BUILD: + log.info("Deleting module build folder {}...".format( + module_build_dir)) + try: + rmtree(module_build_dir) + except Exception as e: + print('***** problem removing "{}"'.format( + module_build_dir)) + print('ignored error: {}'.format(e)) + else: + log.info("Reusing module build folder {}...".format( + module_build_dir)) + if not os.path.exists(module_build_dir): + log.info("Creating module build folder {}...".format( + module_build_dir)) + os.makedirs(module_build_dir) + os.chdir(module_build_dir) + + module_src_dir = os.path.join(self.sources_dir, extension) + + # Build module + cmake_cmd = [ + OPTION_CMAKE, + "-G", self.make_generator, + "-DBUILD_TESTS={}".format(self.build_tests), + "-DQt5Help_DIR={}".format(self.qtinfo.docs_dir), + "-DCMAKE_BUILD_TYPE={}".format(self.build_type), + "-DCMAKE_INSTALL_PREFIX={}".format(self.install_dir), + module_src_dir + ] + cmake_cmd.append("-DPYTHON_EXECUTABLE={}".format(self.py_executable)) + cmake_cmd.append("-DPYTHON_INCLUDE_DIR={}".format(self.py_include_dir)) + cmake_cmd.append("-DPYTHON_LIBRARY={}".format(self.py_library)) + if OPTION_MODULE_SUBSET: + moduleSubSet = '' + for m in OPTION_MODULE_SUBSET.split(','): + if m.startswith('Qt'): + m = m[2:] + if moduleSubSet: + moduleSubSet += ';' + moduleSubSet += m + cmake_cmd.append("-DMODULES={}".format(moduleSubSet)) + # Add source location for generating documentation + cmake_src_dir = OPTION_QT_SRC if OPTION_QT_SRC else qtSrcDir + cmake_cmd.append("-DQT_SRC_DIR={}".format(cmake_src_dir)) + log.info("Qt Source dir: {}".format(cmake_src_dir)) + + if self.build_type.lower() == 'debug': + cmake_cmd.append("-DPYTHON_DEBUG_LIBRARY={}".format( + self.py_library)) + + if OPTION_VERBOSE_BUILD: + cmake_cmd.append("-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON") + + if OPTION_SANITIZE_ADDRESS: + # Some simple sanity checking. Only use at your own risk. + if (sys.platform.startswith('linux') or + sys.platform.startswith('darwin')): + cmake_cmd.append("-DSANITIZE_ADDRESS=ON") + else: + raise DistutilsSetupError("Address sanitizer can only be used " + "on Linux and macOS.") + + if extension.lower() == "pyside2": + pyside_qt_conf_prefix = '' + if OPTION_QT_CONF_PREFIX: + pyside_qt_conf_prefix = OPTION_QT_CONF_PREFIX + else: + if OPTION_STANDALONE: + pyside_qt_conf_prefix = '"Qt"' + if sys.platform == 'win32': + pyside_qt_conf_prefix = '"."' + cmake_cmd.append("-DPYSIDE_QT_CONF_PREFIX={}".format( + pyside_qt_conf_prefix)) + + # Pass package version to CMake, so this string can be + # embedded into _config.py file. + package_version = get_package_version() + cmake_cmd.append("-DPYSIDE_SETUP_PY_PACKAGE_VERSION={}".format( + package_version)) + + # In case if this is a snapshot build, also pass the + # timestamp as a separate value, because it the only + # version component that is actually generated by setup.py. + timestamp = '' + if OPTION_SNAPSHOT_BUILD: + timestamp = get_package_timestamp() + cmake_cmd.append("-DPYSIDE_SETUP_PY_PACKAGE_TIMESTAMP={}".format( + timestamp)) + + if extension.lower() == "shiboken2": + cmake_cmd.append("-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=yes") + if sys.version_info[0] > 2: + cmake_cmd.append("-DUSE_PYTHON_VERSION=3.3") + + if sys.platform == 'darwin': + if OPTION_MACOS_ARCH: + # also tell cmake which architecture to use + cmake_cmd.append("-DCMAKE_OSX_ARCHITECTURES:STRING={}".format( + OPTION_MACOS_ARCH)) + + if OPTION_MACOS_USE_LIBCPP: + # Explicitly link the libc++ standard library (useful + # for macOS deployment targets lower than 10.9). + # This is not on by default, because most libraries and + # executables on macOS <= 10.8 are linked to libstdc++, + # and mixing standard libraries can lead to crashes. + # On macOS >= 10.9 with a similar minimum deployment + # target, libc++ is linked in implicitly, thus the + # option is a no-op in those cases. + cmake_cmd.append("-DOSX_USE_LIBCPP=ON") + + if OPTION_MACOS_SYSROOT: + cmake_cmd.append("-DCMAKE_OSX_SYSROOT={}".format( + OPTION_MACOS_SYSROOT)) + else: + latest_sdk_path = run_process_output(['xcrun', + '--show-sdk-path']) + if latest_sdk_path: + latest_sdk_path = latest_sdk_path[0] + cmake_cmd.append("-DCMAKE_OSX_SYSROOT={}".format( + latest_sdk_path)) + + # Set macOS minimum deployment target (version). + # This is required so that calling + # run_process -> distutils.spawn() + # does not set its own minimum deployment target + # environment variable which is based on the python + # interpreter sysconfig value. + # Doing so could break the detected clang include paths + # for example. + deployment_target = \ + pyside_build.macos_pyside_min_deployment_target() + cmake_cmd.append("-DCMAKE_OSX_DEPLOYMENT_TARGET={}".format( + deployment_target)) + os.environ['MACOSX_DEPLOYMENT_TARGET'] = deployment_target + + if not OPTION_SKIP_CMAKE: + log.info("Configuring module {} ({})...".format(extension, + module_src_dir)) + if run_process(cmake_cmd) != 0: + raise DistutilsSetupError("Error configuring {}".format( + extension)) + else: + log.info("Reusing old configuration for module {} ({})...".format( + extension, module_src_dir)) + + log.info("Compiling module {}...".format(extension)) + cmd_make = [self.make_path] + if OPTION_JOBS: + cmd_make.append(OPTION_JOBS) + if run_process(cmd_make) != 0: + raise DistutilsSetupError("Error compiling {}".format(extension)) + + if extension.lower() == "shiboken2": + try: + # Check if sphinx is installed to proceed. + import sphinx + + log.info("Generating Shiboken documentation") + if run_process([self.make_path, "doc"]) != 0: + raise DistutilsSetupError( + "Error generating documentation for {}".format(extension)) + except ImportError: + log.info("Sphinx not found, skipping documentation build") + + + if not OPTION_SKIP_MAKE_INSTALL: + log.info("Installing module {}...".format(extension)) + # Need to wait a second, so installed file timestamps are + # older than build file timestamps. + # See https://gitlab.kitware.com/cmake/cmake/issues/16155 + # for issue details. + if sys.platform == 'darwin': + log.info("Waiting 1 second, to ensure installation is " + "successful...") + time.sleep(1) + if run_process([self.make_path, "install/fast"]) != 0: + raise DistutilsSetupError("Error pseudo installing {}".format( + extension)) + else: + log.info("Skipped installing module {}".format(extension)) + + os.chdir(self.script_dir) + + def prepare_packages(self): + try: + log.info("Preparing packages...") + vars = { + "site_packages_dir": self.site_packages_dir, + "sources_dir": self.sources_dir, + "install_dir": self.install_dir, + "build_dir": self.build_dir, + "script_dir": self.script_dir, + "pyside_package_dir": self.pyside_package_dir, + "ssl_libs_dir": OPTION_OPENSSL, + "py_version": self.py_version, + "qt_version": self.qtinfo.version, + "qt_bin_dir": self.qtinfo.bins_dir, + "qt_doc_dir": self.qtinfo.docs_dir, + "qt_lib_dir": self.qtinfo.libs_dir, + "qt_lib_execs_dir": self.qtinfo.lib_execs_dir, + "qt_plugins_dir": self.qtinfo.plugins_dir, + "qt_prefix_dir": self.qtinfo.prefix_dir, + "qt_translations_dir": self.qtinfo.translations_dir, + "qt_qml_dir": self.qtinfo.qml_dir, + } + os.chdir(self.script_dir) + + if sys.platform == "win32": + vars['dbgPostfix'] = OPTION_DEBUG and "_d" or "" + return prepare_packages_win32(self, vars) + else: + return prepare_packages_posix(self, vars) + except IOError as e: + print('setup.py/prepare_packages: ', e) + raise + + def qt_is_framework_build(self): + if os.path.isdir(self.qtinfo.headers_dir + "/../lib/QtCore.framework"): + return True + return False + + def get_built_pyside_config(self, vars): + # Get config that contains list of built modules, and + # SOVERSIONs of the built libraries. + pyside_package_dir = vars['pyside_package_dir'] + config_path = os.path.join(pyside_package_dir, "PySide2", "_config.py") + config = get_python_dict(config_path) + return config + + def is_webengine_built(self, built_modules): + return 'WebEngineWidgets' in built_modules or 'WebEngineCore' in built_modules + + def prepare_standalone_clang(self, is_win = False): + """ + Copies the libclang library to the pyside package so that + shiboken executable works. + """ + log.info('Finding path to the libclang shared library.') + cmake_cmd = [ + OPTION_CMAKE, + "-L", # Lists variables + "-N", # Just inspects the cache (faster) + "--build", # Specifies the build dir + self.shiboken_build_dir + ] + out = run_process_output(cmake_cmd) + lines = [s.strip() for s in out] + pattern = re.compile(r"CLANG_LIBRARY:FILEPATH=(.+)$") + + clang_lib_path = None + for line in lines: + match = pattern.search(line) + if match: + clang_lib_path = match.group(1) + break + + if not clang_lib_path: + raise RuntimeError("Could not finding location of libclang " + "library from CMake cache.") + + if is_win: + # clang_lib_path points to the static import library + # (lib/libclang.lib), whereas we want to copy the shared + # library (bin/libclang.dll). + clang_lib_path = re.sub(r'lib/libclang.lib$', 'bin/libclang.dll', + clang_lib_path) + + # Path to directory containing clang. + clang_lib_dir = os.path.dirname(clang_lib_path) + + # The name of the clang file found by CMake. + basename = os.path.basename(clang_lib_path) + + # We want to copy the library and all the symlinks for now, + # thus the wildcard. + clang_filter = basename + "*" + + # Destination is the package folder near the other extension + # modules. + destination_dir = "{}/PySide2".format(os.path.join(self.script_dir, + 'pyside_package')) + if os.path.exists(clang_lib_path): + log.info('Copying libclang shared library to the pyside package.') + + copydir(clang_lib_dir, destination_dir, + filter=[clang_filter], + recursive=False) + else: + raise RuntimeError("Error copying libclang library " + "from {} to {}. ".format( + clang_lib_path, destination_dir)) + + def update_rpath(self, package_path, executables): + if sys.platform.startswith('linux'): + pyside_libs = [lib for lib in os.listdir( + package_path) if filter_match(lib, ["*.so", "*.so.*"])] + + patchelf_path = os.path.join(self.script_dir, "patchelf") + + def rpath_cmd(srcpath): + final_rpath = '' + # Command line rpath option takes precedence over + # automatically added one. + if OPTION_RPATH_VALUES: + final_rpath = OPTION_RPATH_VALUES + else: + # Add rpath values pointing to $ORIGIN and the + # installed qt lib directory. + local_rpath = '$ORIGIN/' + qt_lib_dir = self.qtinfo.libs_dir + if OPTION_STANDALONE: + qt_lib_dir = "$ORIGIN/Qt/lib" + final_rpath = local_rpath + ':' + qt_lib_dir + cmd = [patchelf_path, '--set-rpath', final_rpath, srcpath] + if run_process(cmd) != 0: + raise RuntimeError("Error patching rpath in " + srcpath) + + elif sys.platform == 'darwin': + pyside_libs = [lib for lib in os.listdir( + package_path) if filter_match(lib, ["*.so", "*.dylib"])] + def rpath_cmd(srcpath): + final_rpath = '' + # Command line rpath option takes precedence over + # automatically added one. + if OPTION_RPATH_VALUES: + final_rpath = OPTION_RPATH_VALUES + else: + if OPTION_STANDALONE: + final_rpath = "@loader_path/Qt/lib" + else: + final_rpath = self.qtinfo.libs_dir + macos_fix_rpaths_for_library(srcpath, final_rpath) + + else: + raise RuntimeError('Not configured for platform ' + + sys.platform) + + pyside_libs.extend(executables) + + # Update rpath in PySide2 libs + for srcname in pyside_libs: + srcpath = os.path.join(package_path, srcname) + if os.path.isdir(srcpath) or os.path.islink(srcpath): + continue + if not os.path.exists(srcpath): + continue + rpath_cmd(srcpath) + print("Patched rpath to '$ORIGIN/' (Linux) or " + "updated rpath (OS/X) in {}.".format(srcpath)) + + +try: + with open(os.path.join(setup_script_dir, 'README.rst')) as f: + README = f.read() + with open(os.path.join(setup_script_dir, 'CHANGES.rst')) as f: + CHANGES = f.read() +except IOError: + README = CHANGES = '' + + +cmd_class_dict = { + 'build': pyside_build, + 'build_py': pyside_build_py, + 'build_ext': pyside_build_ext, + 'bdist_egg': pyside_bdist_egg, + 'develop': pyside_develop, + 'install': pyside_install, + 'install_lib': pyside_install_lib +} +if wheel_module_exists: + cmd_class_dict['bdist_wheel'] = pyside_build_wheel diff --git a/build_scripts/options.py b/build_scripts/options.py new file mode 100644 index 000000000..e5b6ebd34 --- /dev/null +++ b/build_scripts/options.py @@ -0,0 +1,80 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +from __future__ import print_function + +from .utils import has_option, option_value + +# Declare options +OPTION_DEBUG = has_option("debug") +OPTION_RELWITHDEBINFO = has_option('relwithdebinfo') +OPTION_QMAKE = option_value("qmake") +OPTION_QT_VERSION = option_value("qt") +OPTION_CMAKE = option_value("cmake") +OPTION_OPENSSL = option_value("openssl") +OPTION_ONLYPACKAGE = has_option("only-package") +OPTION_STANDALONE = has_option("standalone") +OPTION_MAKESPEC = option_value("make-spec") +OPTION_IGNOREGIT = has_option("ignore-git") +# don't include pyside2-examples +OPTION_NOEXAMPLES = has_option("no-examples") +# number of parallel build jobs +OPTION_JOBS = option_value('jobs') +# Legacy, not used any more. +OPTION_JOM = has_option('jom') +# Do not use jom instead of nmake with msvc +OPTION_NO_JOM = has_option('no-jom') +OPTION_BUILDTESTS = has_option("build-tests") +OPTION_MACOS_ARCH = option_value("macos-arch") +OPTION_MACOS_USE_LIBCPP = has_option("macos-use-libc++") +OPTION_MACOS_SYSROOT = option_value("macos-sysroot") +OPTION_MACOS_DEPLOYMENT_TARGET = option_value("macos-deployment-target") +OPTION_XVFB = has_option("use-xvfb") +OPTION_REUSE_BUILD = has_option("reuse-build") +OPTION_SKIP_CMAKE = has_option("skip-cmake") +OPTION_SKIP_MAKE_INSTALL = has_option("skip-make-install") +OPTION_SKIP_PACKAGING = has_option("skip-packaging") +OPTION_MODULE_SUBSET = option_value("module-subset") +OPTION_RPATH_VALUES = option_value("rpath") +OPTION_QT_CONF_PREFIX = option_value("qt-conf-prefix") +OPTION_QT_SRC = option_value("qt-src-dir") +OPTION_VERBOSE_BUILD = has_option("verbose-build") +OPTION_SANITIZE_ADDRESS = has_option("sanitize-address") +OPTION_SNAPSHOT_BUILD = has_option("snapshot-build") + diff --git a/build_scripts/platforms/__init__.py b/build_scripts/platforms/__init__.py new file mode 100644 index 000000000..f1ebb00d9 --- /dev/null +++ b/build_scripts/platforms/__init__.py @@ -0,0 +1,38 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# diff --git a/build_scripts/platforms/linux.py b/build_scripts/platforms/linux.py new file mode 100644 index 000000000..cb8d86ecf --- /dev/null +++ b/build_scripts/platforms/linux.py @@ -0,0 +1,111 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +from ..options import * +from ..utils import copydir, copyfile, copy_icu_libs, find_files_using_glob + +def prepare_standalone_package_linux(self, executables, vars): + built_modules = vars['built_modules'] + + # /lib/* -> /PySide2/Qt/lib + destination_lib_dir = "{pyside_package_dir}/PySide2/Qt/lib" + copydir("{qt_lib_dir}", destination_lib_dir, + filter=[ + "libQt5*.so.?", + "libicu*.so.??", + ], + recursive=False, vars=vars, force_copy_symlinks=True) + + # Check if ICU libraries were copied over to the destination + # Qt libdir. + resolved_destination_lib_dir = destination_lib_dir.format(**vars) + maybe_icu_libs = find_files_using_glob(resolved_destination_lib_dir, + "libicu*") + + # If no ICU libraries are present in the Qt libdir (like when + # Qt is built against system ICU, or in the Coin CI where ICU + # libs are in a different directory) try to find out / resolve + # which ICU libs are used by QtCore (if used at all) using a + # custom written ldd, and copy the ICU libs to the Pyside Qt + # dir if necessary. We choose the QtCore lib to inspect, by + # checking which QtCore library the shiboken2 executable uses. + if not maybe_icu_libs: + copy_icu_libs(resolved_destination_lib_dir) + + if self.is_webengine_built(built_modules): + copydir("{qt_lib_execs_dir}", + "{pyside_package_dir}/PySide2/Qt/libexec", + filter=None, + recursive=False, + vars=vars) + + copydir("{qt_prefix_dir}/resources", + "{pyside_package_dir}/PySide2/Qt/resources", + filter=None, + recursive=False, + vars=vars) + + # /plugins/* -> /PySide2/Qt/plugins + copydir("{qt_plugins_dir}", + "{pyside_package_dir}/PySide2/Qt/plugins", + filter=["*.so"], + recursive=True, + vars=vars) + + # /qml/* -> /PySide2/Qt/qml + copydir("{qt_qml_dir}", + "{pyside_package_dir}/PySide2/Qt/qml", + filter=None, + force=False, + recursive=True, + vars=vars) + + # /translations/* -> /PySide2/Qt/translations + + copydir("{qt_translations_dir}", + "{pyside_package_dir}/PySide2/Qt/translations", + filter=["*.qm", "*.pak"], + force=False, + vars=vars) + + # Copy the qt.conf file to libexec. + copyfile( + "{build_dir}/pyside2/PySide2/qt.conf", + "{pyside_package_dir}/PySide2/Qt/libexec", + vars=vars) diff --git a/build_scripts/platforms/macos.py b/build_scripts/platforms/macos.py new file mode 100644 index 000000000..4b0fe092a --- /dev/null +++ b/build_scripts/platforms/macos.py @@ -0,0 +1,156 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +import fnmatch, os +from ..utils import copydir, copyfile, macos_fix_rpaths_for_library + +def prepare_standalone_package_macos(self, executables, vars): + built_modules = vars['built_modules'] + + # Directory filter for skipping unnecessary files. + def general_dir_filter(dir_name, parent_full_path, dir_full_path): + if fnmatch.fnmatch(dir_name, "*.dSYM"): + return False + return True + + # /lib/* -> /PySide2/Qt/lib + if self.qt_is_framework_build(): + framework_built_modules = [ + 'Qt' + name + '.framework' for name in built_modules] + + def framework_dir_filter(dir_name, parent_full_path, + dir_full_path): + if '.framework' in dir_name: + if dir_name.startswith('QtWebEngine') and not \ + self.is_webengine_built(built_modules): + return False + if dir_name in ['Headers', 'fonts']: + return False + if dir_full_path.endswith('Versions/Current'): + return False + if dir_full_path.endswith('Versions/5/Resources'): + return False + if dir_full_path.endswith('Versions/5/Helpers'): + return False + return general_dir_filter(dir_name, parent_full_path, + dir_full_path) + + copydir("{qt_lib_dir}", "{pyside_package_dir}/PySide2/Qt/lib", + recursive=True, vars=vars, + ignore=["*.la", "*.a", "*.cmake", "*.pc", "*.prl"], + dir_filter_function=framework_dir_filter) + + # Fix rpath for WebEngine process executable. The already + # present rpath does not work because it assumes a symlink + # from Versions/5/Helpers, thus adding two more levels of + # directory hierarchy. + if self.is_webengine_built(built_modules): + qt_lib_path = "{pyside_package_dir}/PySide2/Qt/lib".format( + **vars) + bundle = "QtWebEngineCore.framework/Helpers/" + bundle += "QtWebEngineProcess.app" + binary = "Contents/MacOS/QtWebEngineProcess" + webengine_process_path = os.path.join(bundle, binary) + final_path = os.path.join(qt_lib_path, webengine_process_path) + rpath = "@loader_path/../../../../../" + macos_fix_rpaths_for_library(final_path, rpath) + else: + ignored_modules = [] + if not self.is_webengine_built(built_modules): + ignored_modules.extend(['libQt5WebEngine*.dylib']) + if 'WebKit' not in built_modules: + ignored_modules.extend(['libQt5WebKit*.dylib']) + accepted_modules = ['libQt5*.5.dylib'] + + copydir("{qt_lib_dir}", + "{pyside_package_dir}/PySide2/Qt/lib", + filter=accepted_modules, + ignore=ignored_modules, + recursive=True, vars=vars, force_copy_symlinks=True) + + if self.is_webengine_built(built_modules): + copydir("{qt_lib_execs_dir}", + "{pyside_package_dir}/PySide2/Qt/libexec", + filter=None, + recursive=False, + vars=vars) + + copydir("{qt_prefix_dir}/resources", + "{pyside_package_dir}/PySide2/Qt/resources", + filter=None, + recursive=False, + vars=vars) + + # Fix rpath for WebEngine process executable. + pyside_package_dir = vars['pyside_package_dir'] + qt_libexec_path = "{}/PySide2/Qt/libexec".format(pyside_package_dir) + binary = "QtWebEngineProcess" + final_path = os.path.join(qt_libexec_path, binary) + rpath = "@loader_path/../lib" + macos_fix_rpaths_for_library(final_path, rpath) + + # Copy the qt.conf file to libexec. + copyfile( + "{build_dir}/pyside2/PySide2/qt.conf", + "{pyside_package_dir}/PySide2/Qt/libexec", + vars=vars) + + # /plugins/* -> /PySide2/Qt/plugins + copydir("{qt_plugins_dir}", + "{pyside_package_dir}/PySide2/Qt/plugins", + filter=["*.dylib"], + recursive=True, + dir_filter_function=general_dir_filter, + vars=vars) + + # /qml/* -> /PySide2/Qt/qml + copydir("{qt_qml_dir}", + "{pyside_package_dir}/PySide2/Qt/qml", + filter=None, + recursive=True, + force=False, + dir_filter_function=general_dir_filter, + vars=vars) + + # /translations/* -> /PySide2/Qt/translations + copydir("{qt_translations_dir}", + "{pyside_package_dir}/PySide2/Qt/translations", + filter=["*.qm", "*.pak"], + force=False, + vars=vars) diff --git a/build_scripts/platforms/unix.py b/build_scripts/platforms/unix.py new file mode 100644 index 000000000..9370e0a22 --- /dev/null +++ b/build_scripts/platforms/unix.py @@ -0,0 +1,167 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +import os, re, sys +from .linux import prepare_standalone_package_linux +from .macos import prepare_standalone_package_macos +from ..options import * +from ..utils import copydir, copyfile, rmtree, makefile +from ..utils import regenerate_qt_resources + +def prepare_packages_posix(self, vars): + executables = [] + # /shiboken2/doc/html/* -> + # /PySide2/docs/shiboken2 + copydir( + "{build_dir}/shiboken2/doc/html", + "{pyside_package_dir}/PySide2/docs/shiboken2", + force=False, vars=vars) + # /lib/site-packages/PySide2/* -> /PySide2 + copydir( + "{site_packages_dir}/PySide2", + "{pyside_package_dir}/PySide2", + vars=vars) + # /lib/site-packages/shiboken2.so -> + # /PySide2/shiboken2.so + shiboken_module_name = 'shiboken2.so' + shiboken_src_path = "{site_packages_dir}".format(**vars) + maybe_shiboken_names = [f for f in os.listdir(shiboken_src_path) + if re.match(r'shiboken.*\.so', f)] + if maybe_shiboken_names: + shiboken_module_name = maybe_shiboken_names[0] + vars.update({'shiboken_module_name': shiboken_module_name}) + copyfile( + "{site_packages_dir}/{shiboken_module_name}", + "{pyside_package_dir}/PySide2/{shiboken_module_name}", + vars=vars) + # /lib/site-packages/pyside2uic/* -> + # /pyside2uic + copydir( + "{site_packages_dir}/pyside2uic", + "{pyside_package_dir}/pyside2uic", + force=False, vars=vars) + if sys.version_info[0] > 2: + rmtree("{pyside_package_dir}/pyside2uic/port_v2".format(**vars)) + else: + rmtree("{pyside_package_dir}/pyside2uic/port_v3".format(**vars)) + # /bin/pyside2-uic -> PySide2/scripts/uic.py + makefile( + "{pyside_package_dir}/PySide2/scripts/__init__.py", + vars=vars) + copyfile( + "{install_dir}/bin/pyside2-uic", + "{pyside_package_dir}/PySide2/scripts/uic.py", + force=False, vars=vars) + # /bin/* -> PySide2/ + executables.extend(copydir( + "{install_dir}/bin/", + "{pyside_package_dir}/PySide2", + filter=[ + "pyside2-lupdate", + "pyside2-rcc", + "shiboken2", + ], + recursive=False, vars=vars)) + # /lib/lib* -> PySide2/ + config = self.get_built_pyside_config(vars) + def adjusted_lib_name(name, version): + postfix = '' + if sys.platform.startswith('linux'): + postfix = '.so.' + version + elif sys.platform == 'darwin': + postfix = '.' + version + '.dylib' + return name + postfix + copydir( + "{install_dir}/lib/", + "{pyside_package_dir}/PySide2", + filter=[ + adjusted_lib_name("libpyside*", + config['pyside_library_soversion']), + adjusted_lib_name("libshiboken*", + config['shiboken_library_soversion']), + ], + recursive=False, vars=vars, force_copy_symlinks=True) + # /share/PySide2/typesystems/* -> + # /PySide2/typesystems + copydir( + "{install_dir}/share/PySide2/typesystems", + "{pyside_package_dir}/PySide2/typesystems", + vars=vars) + # /include/* -> /PySide2/include + copydir( + "{install_dir}/include", + "{pyside_package_dir}/PySide2/include", + vars=vars) + # /pyside2/PySide2/support/* -> + # /PySide2/support/* + copydir( + "{build_dir}/pyside2/PySide2/support", + "{pyside_package_dir}/PySide2/support", + vars=vars) + if not OPTION_NOEXAMPLES: + # examples/* -> /PySide2/examples + copydir(os.path.join(self.script_dir, "examples"), + "{pyside_package_dir}/PySide2/examples", + force=False, vars=vars) + # Re-generate examples Qt resource files for Python 3 + # compatibility + if sys.version_info[0] == 3: + examples_path = "{pyside_package_dir}/PySide2/examples".format( + **vars) + pyside_rcc_path = "{install_dir}/bin/pyside2-rcc".format( + **vars) + pyside_rcc_options = '-py3' + regenerate_qt_resources(examples_path, pyside_rcc_path, + pyside_rcc_options) + # Copy Qt libs to package + if OPTION_STANDALONE: + vars['built_modules'] = config['built_modules'] + if sys.platform == 'darwin': + prepare_standalone_package_macos(self, executables, vars) + else: + prepare_standalone_package_linux(self, executables, vars) + + # Copy over clang before rpath patching. + self.prepare_standalone_clang(is_win=False) + + # Update rpath to $ORIGIN + if (sys.platform.startswith('linux') or + sys.platform.startswith('darwin')): + self.update_rpath("{pyside_package_dir}/PySide2".format(**vars), + executables) diff --git a/build_scripts/platforms/windows_desktop.py b/build_scripts/platforms/windows_desktop.py new file mode 100644 index 000000000..79ca721ae --- /dev/null +++ b/build_scripts/platforms/windows_desktop.py @@ -0,0 +1,326 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +import functools +import os, re, sys +from ..options import * +from ..utils import copydir, copyfile, rmtree, makefile +from ..utils import regenerate_qt_resources, filter_match +def prepare_packages_win32(self, vars): + # For now, debug symbols will not be shipped into the package. + copy_pdbs = False + pdbs = [] + if (self.debug or self.build_type == 'RelWithDebInfo') and copy_pdbs: + pdbs = ['*.pdb'] + # /lib/site-packages/PySide2/* -> /PySide2 + copydir( + "{site_packages_dir}/PySide2", + "{pyside_package_dir}/PySide2", + vars=vars) + built_modules = self.get_built_pyside_config(vars)['built_modules'] + + # /pyside2/PySide2/*.pdb -> /PySide2 + copydir( + "{build_dir}/pyside2/PySide2", + "{pyside_package_dir}/PySide2", + filter=pdbs, + recursive=False, vars=vars) + + # /shiboken2/doc/html/* -> + # /PySide2/docs/shiboken2 + copydir( + "{build_dir}/shiboken2/doc/html", + "{pyside_package_dir}/PySide2/docs/shiboken2", + force=False, vars=vars) + + # /lib/site-packages/shiboken2.pyd -> + # /PySide2/shiboken2.pyd + shiboken_module_name = 'shiboken2.pyd' + shiboken_src_path = "{site_packages_dir}".format(**vars) + maybe_shiboken_names = [f for f in os.listdir(shiboken_src_path) + if re.match(r'shiboken.*\.pyd', f)] + if maybe_shiboken_names: + shiboken_module_name = maybe_shiboken_names[0] + vars.update({'shiboken_module_name': shiboken_module_name}) + copyfile( + "{site_packages_dir}/{shiboken_module_name}", + "{pyside_package_dir}/PySide2/{shiboken_module_name}", + vars=vars) + # @TODO: Fix this .pdb file not to overwrite release + # {shibokengenerator}.pdb file. + # Task-number: PYSIDE-615 + copydir( + "{build_dir}/shiboken2/shibokenmodule", + "{pyside_package_dir}/PySide2", + filter=pdbs, + recursive=False, vars=vars) + + # /lib/site-packages/pyside2uic/* -> + # /pyside2uic + copydir( + "{site_packages_dir}/pyside2uic", + "{pyside_package_dir}/pyside2uic", + force=False, vars=vars) + if sys.version_info[0] > 2: + rmtree("{pyside_package_dir}/pyside2uic/port_v2".format(**vars)) + else: + rmtree("{pyside_package_dir}/pyside2uic/port_v3".format(**vars)) + + # /bin/pyside2-uic -> PySide2/scripts/uic.py + makefile( + "{pyside_package_dir}/PySide2/scripts/__init__.py", + vars=vars) + copyfile( + "{install_dir}/bin/pyside2-uic", + "{pyside_package_dir}/PySide2/scripts/uic.py", + force=False, vars=vars) + + # /bin/*.exe,*.dll,*.pdb -> PySide2/ + copydir( + "{install_dir}/bin/", + "{pyside_package_dir}/PySide2", + filter=["*.exe", "*.dll"], + recursive=False, vars=vars) + # @TODO: Fix this .pdb file not to overwrite release + # {shibokenmodule}.pdb file. + # Task-number: PYSIDE-615 + copydir( + "{build_dir}/shiboken2/generator", + "{pyside_package_dir}/PySide2", + filter=pdbs, + recursive=False, vars=vars) + + # /lib/*.lib -> PySide2/ + copydir( + "{install_dir}/lib/", + "{pyside_package_dir}/PySide2", + filter=["*.lib"], + recursive=False, vars=vars) + + # /share/PySide2/typesystems/* -> + # /PySide2/typesystems + copydir( + "{install_dir}/share/PySide2/typesystems", + "{pyside_package_dir}/PySide2/typesystems", + vars=vars) + + # /include/* -> /PySide2/include + copydir( + "{install_dir}/include", + "{pyside_package_dir}/PySide2/include", + vars=vars) + + # /pyside2/PySide2/support/* -> + # /PySide2/support/* + copydir( + "{build_dir}/pyside2/PySide2/support", + "{pyside_package_dir}/PySide2/support", + vars=vars) + + if not OPTION_NOEXAMPLES: + # examples/* -> /PySide2/examples + copydir(os.path.join(self.script_dir, "examples"), + "{pyside_package_dir}/PySide2/examples", + force=False, vars=vars) + # Re-generate examples Qt resource files for Python 3 + # compatibility + if sys.version_info[0] == 3: + examples_path = "{pyside_package_dir}/PySide2/examples".format( + **vars) + pyside_rcc_path = "{install_dir}/bin/pyside2-rcc".format( + **vars) + pyside_rcc_options = '-py3' + regenerate_qt_resources(examples_path, pyside_rcc_path, + pyside_rcc_options) + + # /* -> /PySide2/openssl + copydir("{ssl_libs_dir}", "{pyside_package_dir}/PySide2/openssl", + filter=[ + "libeay32.dll", + "ssleay32.dll"], + force=False, vars=vars) + + # /bin/*.dll and Qt *.exe -> /PySide2 + qt_artifacts_permanent = [ + "opengl*.dll", + "d3d*.dll", + "libEGL*.dll", + "libGLESv2*.dll", + "designer.exe", + "linguist.exe", + "lrelease.exe", + "lupdate.exe", + "lconvert.exe", + "qtdiag.exe" + ] + copydir("{qt_bin_dir}", "{pyside_package_dir}/PySide2", + filter=qt_artifacts_permanent, + recursive=False, vars=vars) + + # /bin/*.dll and Qt *.pdbs -> /PySide2 part two + # File filter to copy only debug or only release files. + qt_dll_patterns = ["Qt5*{}.dll", "lib*{}.dll"] + if copy_pdbs: + qt_dll_patterns += ["Qt5*{}.pdb", "lib*{}.pdb"] + def qt_build_config_filter(patterns, file_name, file_full_path): + release = [a.format('') for a in patterns] + debug = [a.format('d') for a in patterns] + + # If qt is not a debug_and_release build, that means there + # is only one set of shared libraries, so we can just copy + # them. + if self.qtinfo.build_type != 'debug_and_release': + if filter_match(file_name, release): + return True + return False + + # In debug_and_release case, choosing which files to copy + # is more difficult. We want to copy only the files that + # match the PySide2 build type. So if PySide2 is built in + # debug mode, we want to copy only Qt debug libraries + # (ending with "d.dll"). Or vice versa. The problem is that + # some libraries have "d" as the last character of the + # actual library name (for example Qt5Gamepad.dll and + # Qt5Gamepadd.dll). So we can't just match a pattern ending + # in "d". Instead we check if there exists a file with the + # same name plus an additional "d" at the end, and using + # that information we can judge if the currently processed + # file is a debug or release file. + + # e.g. ["Qt5Cored", ".dll"] + file_split = os.path.splitext(file_name) + file_base_name = file_split[0] + file_ext = file_split[1] + # e.g. "/home/work/qt/qtbase/bin" + file_path_dir_name = os.path.dirname(file_full_path) + # e.g. "Qt5Coredd" + maybe_debug_name = file_base_name + 'd' + if self.debug: + filter = debug + def predicate(path): return not os.path.exists(path) + else: + filter = release + def predicate(path): return os.path.exists(path) + # e.g. "/home/work/qt/qtbase/bin/Qt5Coredd.dll" + other_config_path = os.path.join(file_path_dir_name, + maybe_debug_name + file_ext) + + if (filter_match(file_name, filter) and + predicate(other_config_path)): + return True + return False + + qt_dll_filter = functools.partial(qt_build_config_filter, + qt_dll_patterns) + copydir("{qt_bin_dir}", "{pyside_package_dir}/PySide2", + file_filter_function=qt_dll_filter, + recursive=False, vars=vars) + + # /plugins/* -> /PySide2/plugins + plugin_dll_patterns = ["*{}.dll"] + pdb_pattern = "*{}.pdb" + if copy_pdbs: + plugin_dll_patterns += [pdb_pattern] + plugin_dll_filter = functools.partial(qt_build_config_filter, + plugin_dll_patterns) + copydir("{qt_plugins_dir}", "{pyside_package_dir}/PySide2/plugins", + file_filter_function=plugin_dll_filter, + vars=vars) + + # /translations/* -> /PySide2/translations + copydir("{qt_translations_dir}", + "{pyside_package_dir}/PySide2/translations", + filter=["*.qm", "*.pak"], + force=False, + vars=vars) + + # /qml/* -> /PySide2/qml + qml_dll_patterns = ["*{}.dll"] + qml_ignore_patterns = qml_dll_patterns + [pdb_pattern] + # Remove the "{}" from the patterns + qml_ignore = [a.format('') for a in qml_ignore_patterns] + if copy_pdbs: + qml_dll_patterns += [pdb_pattern] + qml_ignore = [a.format('') for a in qml_dll_patterns] + qml_dll_filter = functools.partial(qt_build_config_filter, + qml_dll_patterns) + copydir("{qt_qml_dir}", "{pyside_package_dir}/PySide2/qml", + ignore=qml_ignore, + force=False, + recursive=True, + vars=vars) + copydir("{qt_qml_dir}", "{pyside_package_dir}/PySide2/qml", + file_filter_function=qml_dll_filter, + force=False, + recursive=True, + vars=vars) + + if self.is_webengine_built(built_modules): + copydir("{qt_prefix_dir}/resources", + "{pyside_package_dir}/PySide2/resources", + filter=None, + recursive=False, + vars=vars) + + filter = 'QtWebEngineProcess{}.exe'.format( + 'd' if self.debug else '') + copydir("{qt_bin_dir}", + "{pyside_package_dir}/PySide2", + filter=[filter], + recursive=False, vars=vars) + + # Copy the qt.conf file to prefix dir. + copyfile( + "{build_dir}/pyside2/PySide2/qt.conf", + "{pyside_package_dir}/PySide2", + vars=vars) + + self.prepare_standalone_clang(is_win=True) + + # pdb files for libshiboken and libpyside + copydir( + "{build_dir}/shiboken2/libshiboken", + "{pyside_package_dir}/PySide2", + filter=pdbs, + recursive=False, vars=vars) + copydir( + "{build_dir}/pyside2/libpyside", + "{pyside_package_dir}/PySide2", + filter=pdbs, + recursive=False, vars=vars) diff --git a/build_scripts/qtinfo.py b/build_scripts/qtinfo.py new file mode 100644 index 000000000..0abed96d0 --- /dev/null +++ b/build_scripts/qtinfo.py @@ -0,0 +1,237 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +import os, sys, re, subprocess +from distutils.spawn import find_executable + +class QtInfo(object): + def __init__(self, qmake_command=None): + self.initialized = False + + if qmake_command: + self._qmake_command = qmake_command + else: + self._qmake_command = [find_executable("qmake"),] + + # Dict to cache qmake values. + self._query_dict = {} + # Dict to cache mkspecs variables. + self._mkspecs_dict = {} + # Initialize the properties. + self._initProperties() + + def getQMakeCommand(self): + qmake_command_string = self._qmake_command[0] + for entry in self._qmake_command[1:]: + qmake_command_string += " {}".format(entry) + return qmake_command_string + + def getVersion(self): + return self.getProperty("QT_VERSION") + + def getBinsPath(self): + return self.getProperty("QT_INSTALL_BINS") + + def getLibsPath(self): + return self.getProperty("QT_INSTALL_LIBS") + + def getLibsExecsPath(self): + return self.getProperty("QT_INSTALL_LIBEXECS") + + def getPluginsPath(self): + return self.getProperty("QT_INSTALL_PLUGINS") + + def getPrefixPath(self): + return self.getProperty("QT_INSTALL_PREFIX") + + def getImportsPath(self): + return self.getProperty("QT_INSTALL_IMPORTS") + + def getTranslationsPath(self): + return self.getProperty("QT_INSTALL_TRANSLATIONS") + + def getHeadersPath(self): + return self.getProperty("QT_INSTALL_HEADERS") + + def getDocsPath(self): + return self.getProperty("QT_INSTALL_DOCS") + + def getQmlPath(self): + return self.getProperty("QT_INSTALL_QML") + + def getMacOSMinDeploymentTarget(self): + """ Return value is a macOS version or None. """ + return self.getProperty("QMAKE_MACOSX_DEPLOYMENT_TARGET") + + def getBuildType(self): + """ + Return value is either debug, release, debug_release, or None. + """ + return self.getProperty("BUILD_TYPE") + + def getSrcDir(self): + """ Return path to Qt src dir or None.. """ + return self.getProperty("QT_INSTALL_PREFIX/src") + + def getProperty(self, prop_name): + if prop_name not in self._query_dict: + return None + return self._query_dict[prop_name] + + def getProperties(self): + return self._query_dict + + def getMkspecsVariables(self): + return self._mkspecs_dict + + def _getQMakeOutput(self, args_list = []): + cmd = self._qmake_command + args_list + proc = subprocess.Popen(cmd, stdout = subprocess.PIPE, shell=False) + output = proc.communicate()[0] + proc.wait() + if proc.returncode != 0: + return None + if sys.version_info >= (3,): + output = str(output, 'ascii').strip() + else: + output = output.strip() + return output + + def _parseQueryProperties(self, process_output): + props = {} + if not process_output: + return props + lines = [s.strip() for s in process_output.splitlines()] + for line in lines: + if line and ':' in line: + key, value = line.split(':', 1) + props[key] = value + return props + + def _getQueryProperties(self): + output = self._getQMakeOutput(['-query']) + self._query_dict = self._parseQueryProperties(output) + + def _parseQtBuildType(self): + key = 'QT_CONFIG' + if key not in self._mkspecs_dict: + return None + + qt_config = self._mkspecs_dict[key] + if 'debug_and_release' in qt_config: + return 'debug_and_release' + + split = qt_config.split(' ') + if 'release' in split and 'debug' in split: + return 'debug_and_release' + + if 'release' in split: + return 'release' + + if 'debug' in split: + return 'debug' + + return None + + def _getOtherProperties(self): + # Get the src property separately, because it is not returned by + # qmake unless explicitly specified. + key = 'QT_INSTALL_PREFIX/src' + result = self._getQMakeOutput(['-query', key]) + self._query_dict[key] = result + + # Get mkspecs variables and cache them. + self._getQMakeMkspecsVariables() + + # Get macOS minimum deployment target. + key = 'QMAKE_MACOSX_DEPLOYMENT_TARGET' + if key in self._mkspecs_dict: + self._query_dict[key] = self._mkspecs_dict[key] + + # Figure out how Qt was built: + # debug mode, release mode, or both. + build_type = self._parseQtBuildType() + if build_type: + self._query_dict['BUILD_TYPE'] = build_type + + def _initProperties(self): + self._getQueryProperties() + self._getOtherProperties() + + def _getQMakeMkspecsVariables(self): + # Create empty temporary qmake project file. + temp_file_name = 'qmake_fake_empty_project.txt' + open(temp_file_name, 'a').close() + + # Query qmake for all of its mkspecs variables. + qmakeOutput = self._getQMakeOutput(['-E', temp_file_name]) + lines = [s.strip() for s in qmakeOutput.splitlines()] + pattern = re.compile(r"^(.+?)=(.+?)$") + for line in lines: + found = pattern.search(line) + if found: + key = found.group(1).strip() + value = found.group(2).strip() + self._mkspecs_dict[key] = value + + # We need to clean up after qmake, which always creates a + # .qmake.stash file after a -E invocation. + qmake_stash_file = os.path.join(os.getcwd(), ".qmake.stash") + if os.path.exists(qmake_stash_file): + os.remove(qmake_stash_file) + + # Also clean up the temporary empty project file. + if os.path.exists(temp_file_name): + os.remove(temp_file_name) + + version = property(getVersion) + bins_dir = property(getBinsPath) + libs_dir = property(getLibsPath) + lib_execs_dir = property(getLibsExecsPath) + plugins_dir = property(getPluginsPath) + prefix_dir = property(getPrefixPath) + qmake_command = property(getQMakeCommand) + imports_dir = property(getImportsPath) + translations_dir = property(getTranslationsPath) + headers_dir = property(getHeadersPath) + docs_dir = property(getDocsPath) + qml_dir = property(getQmlPath) + macos_min_deployment_target = property(getMacOSMinDeploymentTarget) + build_type = property(getBuildType) + src_dir = property(getSrcDir) diff --git a/build_scripts/utils.py b/build_scripts/utils.py new file mode 100644 index 000000000..e69c9a58a --- /dev/null +++ b/build_scripts/utils.py @@ -0,0 +1,1075 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +import sys +import os +import re +import stat +import errno +import time +import shutil +import subprocess +import fnmatch +import glob +import itertools +import popenasync +import glob + +# There is no urllib.request in Python2 +try: + import urllib.request as urllib +except ImportError: + import urllib + +from distutils import log +from distutils.errors import DistutilsOptionError +from distutils.errors import DistutilsSetupError +from distutils.spawn import spawn +from distutils.spawn import DistutilsExecError + +try: + WindowsError +except NameError: + WindowsError = None + + +def has_option(name): + try: + sys.argv.remove("--{}".format(name)) + return True + except ValueError: + pass + return False + + +def option_value(name): + for index, option in enumerate(sys.argv): + if option == '--' + name: + if index+1 >= len(sys.argv): + raise DistutilsOptionError("The option {} requires a " + "value".format(option)) + value = sys.argv[index+1] + sys.argv[index:index+2] = [] + return value + if option.startswith('--' + name + '='): + value = option[len(name)+3:] + sys.argv[index:index+1] = [] + return value + env_val = os.getenv(name.upper().replace('-', '_')) + return env_val + + +def filter_match(name, patterns): + for pattern in patterns: + if pattern is None: + continue + if fnmatch.fnmatch(name, pattern): + return True + return False + + +def update_env_path(newpaths): + paths = os.environ['PATH'].lower().split(os.pathsep) + for path in newpaths: + if not path.lower() in paths: + log.info("Inserting path '{}' to environment".format(path)) + paths.insert(0, path) + os.environ['PATH'] = path + os.pathsep + os.environ['PATH'] + + +def winsdk_setenv(platform_arch, build_type): + from distutils.msvc9compiler import VERSION as MSVC_VERSION + from distutils.msvc9compiler import Reg + from distutils.msvc9compiler import HKEYS + from distutils.msvc9compiler import WINSDK_BASE + + sdk_version_map = { + "v6.0a": 9.0, + "v6.1": 9.0, + "v7.0": 9.0, + "v7.0a": 10.0, + "v7.1": 10.0 + } + + log.info("Searching Windows SDK with MSVC compiler version {}".format( + MSVC_VERSION)) + setenv_paths = [] + for base in HKEYS: + sdk_versions = Reg.read_keys(base, WINSDK_BASE) + if sdk_versions: + for sdk_version in sdk_versions: + installationfolder = Reg.get_value(WINSDK_BASE + "\\" + + sdk_version, "installationfolder") + productversion = Reg.get_value(WINSDK_BASE + "\\" + + sdk_version, "productversion") + setenv_path = os.path.join(installationfolder, os.path.join( + 'bin', 'SetEnv.cmd')) + if not os.path.exists(setenv_path): + continue + if not sdk_version in sdk_version_map: + continue + if sdk_version_map[sdk_version] != MSVC_VERSION: + continue + setenv_paths.append(setenv_path) + if len(setenv_paths) == 0: + raise DistutilsSetupError( + "Failed to find the Windows SDK with MSVC compiler " + "version {}".format(MSVC_VERSION)) + for setenv_path in setenv_paths: + log.info("Found {}".format(setenv_path)) + + # Get SDK env (use latest SDK version installed on system) + setenv_path = setenv_paths[-1] + log.info("Using {} ".format(setenv_path)) + build_arch = "/x86" if platform_arch.startswith("32") else "/x64" + build_type = "/Debug" if build_type.lower() == "debug" else "/Release" + setenv_cmd = [setenv_path, build_arch, build_type] + setenv_env = get_environment_from_batch_command(setenv_cmd) + setenv_env_paths = os.pathsep.join([setenv_env[k] for k in setenv_env if k.upper() == 'PATH']).split(os.pathsep) + setenv_env_without_paths = dict([(k, setenv_env[k]) for k in setenv_env if k.upper() != 'PATH']) + + # Extend os.environ with SDK env + log.info("Initializing Windows SDK env...") + update_env_path(setenv_env_paths) + for k in sorted(setenv_env_without_paths): + v = setenv_env_without_paths[k] + log.info("Inserting '{} = {}' to environment".format(k, v)) + os.environ[k] = v + log.info("Done initializing Windows SDK env") + + +def find_vcdir(version): + """ + This is the customized version of + distutils.msvc9compiler.find_vcvarsall method + """ + from distutils.msvc9compiler import VS_BASE + from distutils.msvc9compiler import Reg + from distutils import log + vsbase = VS_BASE % version + try: + productdir = Reg.get_value(r"{}\Setup\VC".format(vsbase), "productdir") + except KeyError: + productdir = None + + # trying Express edition + if productdir is None: + try: + from distutils.msvc9compiler import VSEXPRESS_BASE + except ImportError: + pass + else: + vsbase = VSEXPRESS_BASE % version + try: + productdir = Reg.get_value(r"{}\Setup\VC".format(vsbase), + "productdir") + except KeyError: + productdir = None + log.debug("Unable to find productdir in registry") + + if not productdir or not os.path.isdir(productdir): + toolskey = "VS%0.f0COMNTOOLS" % version + toolsdir = os.environ.get(toolskey, None) + + if toolsdir and os.path.isdir(toolsdir): + productdir = os.path.join(toolsdir, os.pardir, os.pardir, "VC") + productdir = os.path.abspath(productdir) + if not os.path.isdir(productdir): + log.debug("{} is not a valid directory".format(productdir)) + return None + else: + log.debug("Env var {} is not set or invalid".format(toolskey)) + if not productdir: + log.debug("No productdir found") + return None + return productdir + + +def init_msvc_env(platform_arch, build_type): + from distutils.msvc9compiler import VERSION as MSVC_VERSION + + log.info("Searching MSVC compiler version {}".format(MSVC_VERSION)) + vcdir_path = find_vcdir(MSVC_VERSION) + if not vcdir_path: + raise DistutilsSetupError( + "Failed to find the MSVC compiler version {} on your " + "system.".formar(MSVC_VERSION)) + else: + log.info("Found {}".format(vcdir_path)) + + log.info("Searching MSVC compiler {} environment init script".format( + MSVC_VERSION)) + if platform_arch.startswith("32"): + vcvars_path = os.path.join(vcdir_path, "bin", "vcvars32.bat") + else: + vcvars_path = os.path.join(vcdir_path, "bin", "vcvars64.bat") + if not os.path.exists(vcvars_path): + vcvars_path = os.path.join(vcdir_path, "bin", "amd64", + "vcvars64.bat") + if not os.path.exists(vcvars_path): + vcvars_path = os.path.join(vcdir_path, "bin", "amd64", + "vcvarsamd64.bat") + + if not os.path.exists(vcvars_path): + # MSVC init script not found, try to find and init Windows SDK env + log.error("Failed to find the MSVC compiler environment init script " + "(vcvars.bat) on your system.") + winsdk_setenv(platform_arch, build_type) + return + else: + log.info("Found {}".format(vcvars_path)) + + # Get MSVC env + log.info("Using MSVC {} in {}".format(MSVC_VERSION, vcvars_path)) + msvc_arch = "x86" if platform_arch.startswith("32") else "amd64" + log.info("Getting MSVC env for {} architecture".format(msvc_arch)) + vcvars_cmd = [vcvars_path, msvc_arch] + msvc_env = get_environment_from_batch_command(vcvars_cmd) + msvc_env_paths = os.pathsep.join([msvc_env[k] for k in msvc_env if k.upper() == 'PATH']).split(os.pathsep) + msvc_env_without_paths = dict([(k, msvc_env[k]) for k in msvc_env if k.upper() != 'PATH']) + + # Extend os.environ with MSVC env + log.info("Initializing MSVC env...") + update_env_path(msvc_env_paths) + for k in sorted(msvc_env_without_paths): + v = msvc_env_without_paths[k] + log.info("Inserting '{} = {}' to environment".format(k, v)) + os.environ[k] = v + log.info("Done initializing MSVC env") + + +def copyfile(src, dst, force=True, vars=None, force_copy_symlink=False): + if vars is not None: + src = src.format(**vars) + dst = dst.format(**vars) + + if not os.path.exists(src) and not force: + log.info("**Skiping copy file {} to {}. " + "Source does not exists.".format(src, dst)) + return + + if not os.path.islink(src) or force_copy_symlink: + log.info("Copying file {} to {}.".format(src, dst)) + shutil.copy2(src, dst) + else: + linkTargetPath = os.path.realpath(src) + if os.path.dirname(linkTargetPath) == os.path.dirname(src): + linkTarget = os.path.basename(linkTargetPath) + linkName = os.path.basename(src) + currentDirectory = os.getcwd() + try: + targetDir = dst if os.path.isdir(dst) else os.path.dirname(dst) + os.chdir(targetDir) + if os.path.exists(linkName): + os.remove(linkName) + log.info("Symlinking {} -> {} in {}.".format(linkName, + linkTarget, targetDir)) + os.symlink(linkTarget, linkName) + except OSError: + log.error("{} -> {}: Error creating symlink".format(linkName, + linkTarget)) + finally: + os.chdir(currentDirectory) + else: + log.error("{} -> {}: Can only create symlinks within the same " + "directory".format(src, linkTargetPath)) + + return dst + + +def makefile(dst, content=None, vars=None): + if vars is not None: + if content is not None: + content = content.format(**vars) + dst = dst.format(**vars) + + log.info("Making file {}.".format(dst)) + + dstdir = os.path.dirname(dst) + if not os.path.exists(dstdir): + os.makedirs(dstdir) + + f = open(dst, "wt") + if content is not None: + f.write(content) + f.close() + + +def copydir(src, dst, filter=None, ignore=None, force=True, recursive=True, + vars=None, dir_filter_function=None, file_filter_function=None, + force_copy_symlinks=False): + + if vars is not None: + src = src.format(**vars) + dst = dst.format(**vars) + if filter is not None: + for i in range(len(filter)): + filter[i] = filter[i].format(**vars) + if ignore is not None: + for i in range(len(ignore)): + ignore[i] = ignore[i].format(**vars) + + if not os.path.exists(src) and not force: + log.info("**Skiping copy tree {} to {}. Source does not exists. " + "filter={}. ignore={}.".format(src, dst, filter, ignore)) + return [] + + log.info("Copying tree {} to {}. filter={}. ignore={}.".format(src, dst, + filter, ignore)) + + names = os.listdir(src) + + results = [] + errors = [] + for name in names: + srcname = os.path.join(src, name) + dstname = os.path.join(dst, name) + try: + if os.path.isdir(srcname): + if (dir_filter_function and + not dir_filter_function(name, src, srcname)): + continue + if recursive: + results.extend( + copydir(srcname, dstname, filter, ignore, force, + recursive, vars, dir_filter_function, + file_filter_function, force_copy_symlinks)) + else: + if ((file_filter_function is not None and + not file_filter_function(name, srcname)) or + (filter is not None and + not filter_match(name, filter)) or + (ignore is not None and filter_match(name, ignore))): + continue + if not os.path.exists(dst): + os.makedirs(dst) + results.append(copyfile(srcname, dstname, True, vars, + force_copy_symlinks)) + # catch the Error from the recursive copytree so that we can + # continue with other files + except shutil.Error as err: + errors.extend(err.args[0]) + except EnvironmentError as why: + errors.append((srcname, dstname, str(why))) + try: + if os.path.exists(dst): + shutil.copystat(src, dst) + except OSError as why: + if WindowsError is not None and isinstance(why, WindowsError): + # Copying file access times may fail on Windows + pass + else: + errors.extend((src, dst, str(why))) + if errors: + raise EnvironmentError(errors) + return results + + +def rmtree(dirname): + def handleRemoveReadonly(func, path, exc): + excvalue = exc[1] + if func in (os.rmdir, os.remove) and excvalue.errno == errno.EACCES: + os.chmod(path, stat.S_IRWXU| stat.S_IRWXG| stat.S_IRWXO) # 0777 + func(path) + else: + raise + shutil.rmtree(dirname, ignore_errors=False, onerror=handleRemoveReadonly) + +def run_process_output(args, initial_env=None): + if initial_env is None: + initial_env = os.environ + stdOut = subprocess.Popen(args, env = initial_env, universal_newlines = 1, + stdout=subprocess.PIPE).stdout + result = [] + for rawLine in stdOut.readlines(): + line = rawLine if sys.version_info >= (3,) else rawLine.decode('utf-8') + result.append(line.rstrip()) + return result + +def run_process(args, initial_env=None): + def _log(buffer, checkNewLine=False): + endsWithNewLine = False + if buffer.endswith('\n'): + endsWithNewLine = True + if checkNewLine and buffer.find('\n') == -1: + return buffer + lines = buffer.splitlines() + buffer = '' + if checkNewLine and not endsWithNewLine: + buffer = lines[-1] + lines = lines[:-1] + for line in lines: + log.info(line.rstrip('\r')) + return buffer + _log("Running process in {0}: {1}".format(os.getcwd(), + " ".join([(" " in x and '"{0}"'.format(x) or x) for x in args]))) + + if sys.platform != "win32": + try: + spawn(args) + return 0 + except DistutilsExecError: + return -1 + + shell = False + if sys.platform == "win32": + shell = True + + if initial_env is None: + initial_env = os.environ + + proc = popenasync.Popen(args, + stdin = subprocess.PIPE, + stdout = subprocess.PIPE, + stderr = subprocess.STDOUT, + universal_newlines = 1, + shell = shell, + env = initial_env) + + log_buffer = None; + while proc.poll() is None: + log_buffer = _log(proc.read_async(wait=0.1, e=0)) + if log_buffer: + _log(log_buffer) + + proc.wait() + return proc.returncode + + +def get_environment_from_batch_command(env_cmd, initial=None): + """ + Take a command (either a single command or list of arguments) + and return the environment created after running that command. + Note that if the command must be a batch file or .cmd file, or the + changes to the environment will not be captured. + + If initial is supplied, it is used as the initial environment passed + to the child process. + """ + + def validate_pair(ob): + try: + if not (len(ob) == 2): + print("Unexpected result: {}".format(ob)) + raise ValueError + except: + return False + return True + + def consume(iter): + try: + while True: next(iter) + except StopIteration: + pass + + if not isinstance(env_cmd, (list, tuple)): + env_cmd = [env_cmd] + # construct the command that will alter the environment + env_cmd = subprocess.list2cmdline(env_cmd) + # create a tag so we can tell in the output when the proc is done + tag = 'Done running command' + # construct a cmd.exe command to do accomplish this + cmd = 'cmd.exe /E:ON /V:ON /s /c "{} && echo "{}" && set"'.format(env_cmd, + tag) + # launch the process + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, env=initial) + # parse the output sent to stdout + lines = proc.stdout + if sys.version_info[0] > 2: + # make sure the lines are strings + make_str = lambda s: s.decode() + lines = map(make_str, lines) + # consume whatever output occurs until the tag is reached + consume(itertools.takewhile(lambda l: tag not in l, lines)) + # define a way to handle each KEY=VALUE line + handle_line = lambda l: l.rstrip().split('=',1) + # parse key/values into pairs + pairs = map(handle_line, lines) + # make sure the pairs are valid + valid_pairs = filter(validate_pair, pairs) + # construct a dictionary of the pairs + result = dict(valid_pairs) + # let the process finish + proc.communicate() + return result + + +def regenerate_qt_resources(src, pyside_rcc_path, pyside_rcc_options): + names = os.listdir(src) + for name in names: + srcname = os.path.join(src, name) + if os.path.isdir(srcname): + regenerate_qt_resources(srcname, + pyside_rcc_path, + pyside_rcc_options) + elif srcname.endswith('.qrc'): + # Replace last occurence of '.qrc' in srcname + srcname_split = srcname.rsplit('.qrc', 1) + dstname = '_rc.py'.join(srcname_split) + if os.path.exists(dstname): + log.info('Regenerating {} from {}'.format(dstname, + os.path.basename(srcname))) + run_process([pyside_rcc_path, + pyside_rcc_options, + srcname, '-o', dstname]) + + +def back_tick(cmd, ret_err=False): + """ + Run command `cmd`, return stdout, or stdout, stderr, + return_code if `ret_err` is True. + + Roughly equivalent to ``check_output`` in Python 2.7 + + Parameters + ---------- + cmd : str + command to execute + ret_err : bool, optional + If True, return stderr and return_code in addition to stdout. + If False, just return stdout + + Returns + ------- + out : str or tuple + If `ret_err` is False, return stripped string containing stdout from + `cmd`. + If `ret_err` is True, return tuple of (stdout, stderr, return_code) + where ``stdout`` is the stripped stdout, and ``stderr`` is the stripped + stderr, and ``return_code`` is the process exit code. + + Raises + ------ + Raises RuntimeError if command returns non-zero exit code when ret_err + isn't set. + """ + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, + stderr=subprocess.PIPE, shell=True) + out, err = proc.communicate() + if not isinstance(out, str): + # python 3 + out = out.decode() + err = err.decode() + retcode = proc.returncode + if retcode is None and not ret_err: + proc.terminate() + raise RuntimeError(cmd + ' process did not terminate') + if retcode != 0 and not ret_err: + raise RuntimeError("{} process returned code {}\n*** {}".format( + (cmd, retcode, err))) + out = out.strip() + if not ret_err: + return out + return out, err.strip(), retcode + + +MACOS_OUTNAME_RE = re.compile(r'\(compatibility version [\d.]+, current version ' + '[\d.]+\)') + +def macos_get_install_names(libpath): + """ + Get macOS library install names from library `libpath` using ``otool`` + + Parameters + ---------- + libpath : str + path to library + + Returns + ------- + install_names : list of str + install names in library `libpath` + """ + out = back_tick('otool -L ' + libpath) + libs = [line for line in out.split('\n')][1:] + return [MACOS_OUTNAME_RE.sub('', lib).strip() for lib in libs] + + +MACOS_RPATH_RE = re.compile(r"path (.+) \(offset \d+\)") + +def macos_get_rpaths(libpath): + """ Get rpath load commands from library `libpath` using ``otool`` + + Parameters + ---------- + libpath : str + path to library + + Returns + ------- + rpaths : list of str + rpath values stored in ``libpath`` + + Notes + ----- + See ``man dyld`` for more information on rpaths in libraries + """ + lines = back_tick('otool -l ' + libpath).split('\n') + ctr = 0 + rpaths = [] + while ctr < len(lines): + line = lines[ctr].strip() + if line != 'cmd LC_RPATH': + ctr += 1 + continue + assert lines[ctr + 1].strip().startswith('cmdsize') + rpath_line = lines[ctr + 2].strip() + match = MACOS_RPATH_RE.match(rpath_line) + if match is None: + raise RuntimeError('Unexpected path line: ' + rpath_line) + rpaths.append(match.groups()[0]) + ctr += 3 + return rpaths + + +def macos_fix_rpaths_for_library(library_path, qt_lib_dir): + """ Adds required rpath load commands to given library. + + This is a necessary post-installation step, to allow loading PySide + modules without setting DYLD_LIBRARY_PATH or DYLD_FRAMEWORK_PATH. + The CMake rpath commands which are added at build time are used only + for testing (make check), and they are stripped once the equivalent + of make install is executed (except for shiboken, which currently + uses CMAKE_INSTALL_RPATH_USE_LINK_PATH, which might be necessary to + remove in the future). + + Parameters + ---------- + library_path : str + path to library for which to set rpaths. + qt_lib_dir : str + rpath to installed Qt lib directory. + """ + + install_names = macos_get_install_names(library_path) + existing_rpath_commands = macos_get_rpaths(library_path) + + needs_loader_path = False + for install_name in install_names: + # Absolute path, skip it. + if install_name[0] == '/': + continue + + # If there are dynamic library install names that contain + # @rpath tokens, we will provide an rpath load command with the + # value of "@loader_path". This will allow loading dependent + # libraries from within the same directory as 'library_path'. + if install_name[0] == '@': + needs_loader_path = True + break + + if needs_loader_path and "@loader_path" not in existing_rpath_commands: + back_tick('install_name_tool -add_rpath {rpath} {library_path}'.format( + rpath="@loader_path", library_path=library_path)) + + # If the library depends on a Qt library, add an rpath load comment + # pointing to the Qt lib directory. + macos_add_qt_rpath(library_path, qt_lib_dir, existing_rpath_commands, + install_names) + +def macos_add_qt_rpath(library_path, qt_lib_dir, + existing_rpath_commands = [], library_dependencies = []): + """ + Adds an rpath load command to the Qt lib directory if necessary + + Checks if library pointed to by 'library_path' has Qt dependencies, + and adds an rpath load command that points to the Qt lib directory + (qt_lib_dir). + """ + if not existing_rpath_commands: + existing_rpath_commands = macos_get_rpaths(library_path) + + # Return early if qt rpath is already present. + if qt_lib_dir in existing_rpath_commands: + return + + # Check if any library dependencies are Qt libraries (hacky). + if not library_dependencies: + library_dependencies = macos_get_install_names(library_path) + + needs_qt_rpath = False + for library in library_dependencies: + if 'Qt' in library: + needs_qt_rpath = True + break + + if needs_qt_rpath: + back_tick('install_name_tool -add_rpath {rpath} {library_path}'.format( + rpath=qt_lib_dir, library_path=library_path)) + +# Find an executable specified by a glob pattern ('foo*') in the OS path +def findGlobInPath(pattern): + result = [] + if sys.platform == 'win32': + pattern += '.exe' + + for path in os.environ.get('PATH', '').split(os.pathsep): + for match in glob.glob(os.path.join(path, pattern)): + result.append(match) + return result + +# Locate the most recent version of llvmConfig in the path. +def findLlvmConfig(): + versionRe = re.compile('(\d+)\.(\d+)\.(\d+)') + result = None + lastVersionString = '000000' + for llvmConfig in findGlobInPath('llvm-config*'): + try: + output = run_process_output([llvmConfig, '--version']) + if output: + match = versionRe.match(output[0]) + if match: + versionString = '%02d%02d%02d' % (int(match.group(1)), + int(match.group(2)), int(match.group(3))) + if (versionString > lastVersionString): + result = llvmConfig + lastVersionString = versionString + except OSError: + pass + return result + +# Add Clang to path for Windows for the shiboken ApiExtractor tests. +# Revisit once Clang is bundled with Qt. +def detectClang(): + source = 'LLVM_INSTALL_DIR' + clangDir = os.environ.get(source, None) + if not clangDir: + source = 'CLANG_INSTALL_DIR' + clangDir = os.environ.get(source, None) + if not clangDir: + source = findLlvmConfig() + try: + if source is not None: + output = run_process_output([source, '--prefix']) + if output: + clangDir = output[0] + except OSError: + pass + if clangDir: + arch = '64' if sys.maxsize > 2**31-1 else '32' + clangDir = clangDir.replace('_ARCH_', arch) + return (clangDir, source) + +def download_and_extract_7z(fileurl, target): + """ Downloads 7z file from fileurl and extract to target """ + print("Downloading fileUrl {} ".format(fileurl)) + info = "" + try: + localfile, info = urllib.urlretrieve(fileurl) + except: + print("Error downloading {} : {}".format(fileurl, info)) + raise RuntimeError(' Error downloading {}'.format(fileurl)) + + try: + outputDir = "-o" + target + print("calling 7z x {} {}".format(localfile, outputDir)) + subprocess.call(["7z", "x", "-y", localfile, outputDir]) + except: + raise RuntimeError(' Error extracting {}'.format(localfile)) + +def split_and_strip(input): + lines = [s.strip() for s in input.splitlines()] + return lines + +def ldd_get_dependencies(executable_path): + """ + Returns a dictionary of dependencies that `executable_path` + depends on. + + The keys are library names and the values are the library paths. + + """ + output = ldd(executable_path) + lines = split_and_strip(output) + pattern = re.compile(r"\s*(.*?)\s+=>\s+(.*?)\s+\(.*\)") + dependencies = {} + for line in lines: + match = pattern.search(line) + if match: + dependencies[match.group(1)] = match.group(2) + return dependencies + +def ldd_get_paths_for_dependencies(dependencies_regex, executable_path = None, + dependencies = None): + """ + Returns file paths to shared library dependencies that match given + `dependencies_regex` against given `executable_path`. + + The function retrieves the list of shared library dependencies using + ld.so for the given `executable_path` in order to search for + libraries that match the `dependencies_regex`, and then returns a + list of absolute paths of the matching libraries. + + If no matching library is found in the list of dependencies, + an empty list is returned. + """ + + if not dependencies and not executable_path: + return None + + if not dependencies: + dependencies = ldd_get_dependencies(executable_path) + + pattern = re.compile(dependencies_regex) + + paths = [] + for key in dependencies: + match = pattern.search(key) + if match: + paths.append(dependencies[key]) + + return paths + +def ldd(executable_path): + """ + Returns ld.so output of shared library dependencies for given + `executable_path`. + + This is a partial port of /usr/bin/ldd from bash to Python. + The dependency list is retrieved by setting the + LD_TRACE_LOADED_OBJECTS=1 environment variable, and executing the + given path via the dynamic loader ld.so. + + Only works on Linux. The port is required to make this work on + systems that might not have ldd. + This is because ldd (on Ubuntu) is shipped in the libc-bin package + that, which might have a + minuscule percentage of not being installed. + + Parameters + ---------- + executable_path : str + path to executable or shared library. + + Returns + ------- + output : str + the raw output retrieved from the dynamic linker. + """ + + chosen_rtld = None + # List of ld's considered by ldd on Ubuntu (here's hoping it's the + # same on all distros). + rtld_list = ["/lib/ld-linux.so.2", "/lib64/ld-linux-x86-64.so.2", + "/libx32/ld-linux-x32.so.2"] + + # Choose appropriate runtime dynamic linker. + for rtld in rtld_list: + if os.path.isfile(rtld) and os.access(rtld, os.X_OK): + (_, _, code) = back_tick(rtld, True) + # Code 127 is returned by ld.so when called without any + # arguments (some kind of sanity check I guess). + if code == 127: + (_, _, code) = back_tick("{} --verify {}".format(rtld, + executable_path), True) + # Codes 0 and 2 mean given executable_path can be + # understood by ld.so. + if code in [0, 2]: + chosen_rtld = rtld + break + + if not chosen_rtld: + raise RuntimeError("Could not find appropriate ld.so to query " + "for dependencies.") + + # Query for shared library dependencies. + rtld_env = "LD_TRACE_LOADED_OBJECTS=1" + rtld_cmd = "{} {} {}".format(rtld_env, chosen_rtld, executable_path) + (out, _, return_code) = back_tick(rtld_cmd, True) + if return_code == 0: + return out + else: + raise RuntimeError("ld.so failed to query for dependent shared " + "libraries of {} ".format(executable_path)) + +def find_files_using_glob(path, pattern): + """ Returns list of files that matched glob `pattern` in `path`. """ + final_pattern = os.path.join(path, pattern) + maybe_files = glob.glob(final_pattern) + return maybe_files + +def find_qt_core_library_glob(lib_dir): + """ Returns path to the QtCore library found in `lib_dir`. """ + maybe_file = find_files_using_glob(lib_dir, "libQt5Core.so.?") + if len(maybe_file) == 1: + return maybe_file[0] + return None + +# @TODO: Possibly fix ICU library copying on macOS and Windows. +# This would require to implement the equivalent of the custom written +# ldd for the specified platforms. +# This has less priority because ICU libs are not used in the default +# Qt configuration build. +def copy_icu_libs(destination_lib_dir): + """ + Copy ICU libraries that QtCore depends on, + to given `destination_lib_dir`. + """ + qt_core_library_path = find_qt_core_library_glob(destination_lib_dir) + + if not qt_core_library_path or not os.path.exists(qt_core_library_path): + raise RuntimeError('QtCore library does not exist at path: {}. ' + 'Failed to copy ICU libraries.'.format(qt_core_library_path)) + + dependencies = ldd_get_dependencies(qt_core_library_path) + + icu_regex = r"^libicu.+" + icu_compiled_pattern = re.compile(icu_regex) + icu_required = False + for dependency in dependencies: + match = icu_compiled_pattern.search(dependency) + if match: + icu_required = True + break + + if icu_required: + paths = ldd_get_paths_for_dependencies(icu_regex, + dependencies=dependencies) + if not paths: + raise RuntimeError("Failed to find the necessary ICU libraries " + "required by QtCore.") + log.info('Copying the detected ICU libraries required by QtCore.') + + if not os.path.exists(destination_lib_dir): + os.makedirs(destination_lib_dir) + + for path in paths: + basename = os.path.basename(path) + destination = os.path.join(destination_lib_dir, basename) + copyfile(path, destination, force_copy_symlink=True) + # Patch the ICU libraries to contain the $ORIGIN rpath + # value, so that only the local package libraries are used. + linuxSetRPaths(destination, '$ORIGIN') + + # Patch the QtCore library to find the copied over ICU libraries + # (if necessary). + log.info("Checking if QtCore library needs a new rpath to make it " + "work with ICU libs.") + rpaths = linuxGetRPaths(qt_core_library_path) + if not rpaths or not rpathsHasOrigin(rpaths): + log.info('Patching QtCore library to contain $ORIGIN rpath.') + rpaths.insert(0, '$ORIGIN') + new_rpaths_string = ":".join(rpaths) + linuxSetRPaths(qt_core_library_path, new_rpaths_string) + +def linuxSetRPaths(executable_path, rpath_string): + """ Patches the `executable_path` with a new rpath string. """ + + if not hasattr(linuxSetRPaths, "patchelf_path"): + script_dir = os.getcwd() + patchelf_path = os.path.join(script_dir, "patchelf") + setattr(linuxSetRPaths, "patchelf_path", patchelf_path) + + cmd = [linuxSetRPaths.patchelf_path, '--set-rpath', + rpath_string, executable_path] + + if run_process(cmd) != 0: + raise RuntimeError("Error patching rpath in {}".format( + executable_path)) + +def linuxGetRPaths(executable_path): + """ + Returns a list of run path values embedded in the executable or just + an empty list. + """ + + cmd = "readelf -d {}".format(executable_path) + (out, err, code) = back_tick(cmd, True) + if code != 0: + raise RuntimeError("Running `readelf -d {}` failed with error " + "output:\n {}. ".format(executable_path, err)) + lines = split_and_strip(out) + pattern = re.compile(r"^.+?\(RUNPATH\).+?\[(.+?)\]$") + + rpath_line = None + for line in lines: + match = pattern.search(line) + if match: + rpath_line = match.group(1) + break + + rpaths = [] + + if rpath_line: + rpaths = rpath_line.split(':') + + return rpaths + +def rpathsHasOrigin(rpaths): + """ + Return True if the specified list of rpaths has an "$ORIGIN" value + (aka current dir). + """ + if not rpaths: + return False + + pattern = re.compile(r"^\$ORIGIN(/)?$") + for rpath in rpaths: + match = pattern.search(rpath) + if match: + return True + return False + +def memoize(function): + """ + Decorator to wrap a function with a memoizing callable. + It returns cached values when the wrapped function is called with + the same arguments. + """ + memo = {} + def wrapper(*args): + if args in memo: + return memo[args] + else: + rv = function(*args) + memo[args] = rv + return rv + return wrapper + +def get_python_dict(python_script_path): + try: + with open(python_script_path) as f: + python_dict = {} + code = compile(f.read(), python_script_path, 'exec') + exec(code, {}, python_dict) + return python_dict + except IOError as e: + print("get_python_dict: Couldn't get dict from python " + "file: {}.".format(python_script_path)) + raise diff --git a/qtinfo.py b/qtinfo.py deleted file mode 100644 index e3591d987..000000000 --- a/qtinfo.py +++ /dev/null @@ -1,237 +0,0 @@ -############################################################################# -## -## Copyright (C) 2017 The Qt Company Ltd. -## Contact: https://www.qt.io/licensing/ -## -## This file is part of PySide2. -## -## $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 The Qt Company. For licensing terms -## and conditions see https://www.qt.io/terms-conditions. For further -## information use the contact form at https://www.qt.io/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 3 as published by the Free Software -## Foundation and appearing in the file LICENSE.LGPL3 included in the -## packaging of this file. Please review the following information to -## ensure the GNU Lesser General Public License version 3 requirements -## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. -## -## GNU General Public License Usage -## Alternatively, this file may be used under the terms of the GNU -## General Public License version 2.0 or (at your option) the GNU General -## Public license version 3 or any later version approved by the KDE Free -## Qt Foundation. The licenses are as published by the Free Software -## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 -## included in the packaging of this file. Please review the following -## information to ensure the GNU General Public License requirements will -## be met: https://www.gnu.org/licenses/gpl-2.0.html and -## https://www.gnu.org/licenses/gpl-3.0.html. -## -## $QT_END_LICENSE$ -## -############################################################################# - -import os, sys, re, subprocess -from distutils.spawn import find_executable - -class QtInfo(object): - def __init__(self, qmake_command=None): - self.initialized = False - - if qmake_command: - self._qmake_command = qmake_command - else: - self._qmake_command = [find_executable("qmake"),] - - # Dict to cache qmake values. - self._query_dict = {} - # Dict to cache mkspecs variables. - self._mkspecs_dict = {} - # Initialize the properties. - self._initProperties() - - def getQMakeCommand(self): - qmake_command_string = self._qmake_command[0] - for entry in self._qmake_command[1:]: - qmake_command_string += " {}".format(entry) - return qmake_command_string - - def getVersion(self): - return self.getProperty("QT_VERSION") - - def getBinsPath(self): - return self.getProperty("QT_INSTALL_BINS") - - def getLibsPath(self): - return self.getProperty("QT_INSTALL_LIBS") - - def getLibsExecsPath(self): - return self.getProperty("QT_INSTALL_LIBEXECS") - - def getPluginsPath(self): - return self.getProperty("QT_INSTALL_PLUGINS") - - def getPrefixPath(self): - return self.getProperty("QT_INSTALL_PREFIX") - - def getImportsPath(self): - return self.getProperty("QT_INSTALL_IMPORTS") - - def getTranslationsPath(self): - return self.getProperty("QT_INSTALL_TRANSLATIONS") - - def getHeadersPath(self): - return self.getProperty("QT_INSTALL_HEADERS") - - def getDocsPath(self): - return self.getProperty("QT_INSTALL_DOCS") - - def getQmlPath(self): - return self.getProperty("QT_INSTALL_QML") - - def getMacOSMinDeploymentTarget(self): - """ Return value is a macOS version or None. """ - return self.getProperty("QMAKE_MACOSX_DEPLOYMENT_TARGET") - - def getBuildType(self): - """ - Return value is either debug, release, debug_release, or None. - """ - return self.getProperty("BUILD_TYPE") - - def getSrcDir(self): - """ Return path to Qt src dir or None.. """ - return self.getProperty("QT_INSTALL_PREFIX/src") - - def getProperty(self, prop_name): - if prop_name not in self._query_dict: - return None - return self._query_dict[prop_name] - - def getProperties(self): - return self._query_dict - - def getMkspecsVariables(self): - return self._mkspecs_dict - - def _getQMakeOutput(self, args_list = []): - cmd = self._qmake_command + args_list - proc = subprocess.Popen(cmd, stdout = subprocess.PIPE, shell=False) - output = proc.communicate()[0] - proc.wait() - if proc.returncode != 0: - return None - if sys.version_info >= (3,): - output = str(output, 'ascii').strip() - else: - output = output.strip() - return output - - def _parseQueryProperties(self, process_output): - props = {} - if not process_output: - return props - lines = [s.strip() for s in process_output.splitlines()] - for line in lines: - if line and ':' in line: - key, value = line.split(':', 1) - props[key] = value - return props - - def _getQueryProperties(self): - output = self._getQMakeOutput(['-query']) - self._query_dict = self._parseQueryProperties(output) - - def _parseQtBuildType(self): - key = 'QT_CONFIG' - if key not in self._mkspecs_dict: - return None - - qt_config = self._mkspecs_dict[key] - if 'debug_and_release' in qt_config: - return 'debug_and_release' - - split = qt_config.split(' ') - if 'release' in split and 'debug' in split: - return 'debug_and_release' - - if 'release' in split: - return 'release' - - if 'debug' in split: - return 'debug' - - return None - - def _getOtherProperties(self): - # Get the src property separately, because it is not returned by - # qmake unless explicitly specified. - key = 'QT_INSTALL_PREFIX/src' - result = self._getQMakeOutput(['-query', key]) - self._query_dict[key] = result - - # Get mkspecs variables and cache them. - self._getQMakeMkspecsVariables() - - # Get macOS minimum deployment target. - key = 'QMAKE_MACOSX_DEPLOYMENT_TARGET' - if key in self._mkspecs_dict: - self._query_dict[key] = self._mkspecs_dict[key] - - # Figure out how Qt was built: - # debug mode, release mode, or both. - build_type = self._parseQtBuildType() - if build_type: - self._query_dict['BUILD_TYPE'] = build_type - - def _initProperties(self): - self._getQueryProperties() - self._getOtherProperties() - - def _getQMakeMkspecsVariables(self): - # Create empty temporary qmake project file. - temp_file_name = 'qmake_fake_empty_project.txt' - open(temp_file_name, 'a').close() - - # Query qmake for all of its mkspecs variables. - qmakeOutput = self._getQMakeOutput(['-E', temp_file_name]) - lines = [s.strip() for s in qmakeOutput.splitlines()] - pattern = re.compile(r"^(.+?)=(.+?)$") - for line in lines: - found = pattern.search(line) - if found: - key = found.group(1).strip() - value = found.group(2).strip() - self._mkspecs_dict[key] = value - - # We need to clean up after qmake, which always creates a - # .qmake.stash file after a -E invocation. - qmake_stash_file = os.path.join(os.getcwd(), ".qmake.stash") - if os.path.exists(qmake_stash_file): - os.remove(qmake_stash_file) - - # Also clean up the temporary empty project file. - if os.path.exists(temp_file_name): - os.remove(temp_file_name) - - version = property(getVersion) - bins_dir = property(getBinsPath) - libs_dir = property(getLibsPath) - lib_execs_dir = property(getLibsExecsPath) - plugins_dir = property(getPluginsPath) - prefix_dir = property(getPrefixPath) - qmake_command = property(getQMakeCommand) - imports_dir = property(getImportsPath) - translations_dir = property(getTranslationsPath) - headers_dir = property(getHeadersPath) - docs_dir = property(getDocsPath) - qml_dir = property(getQmlPath) - macos_min_deployment_target = property(getMacOSMinDeploymentTarget) - build_type = property(getBuildType) - src_dir = property(getSrcDir) diff --git a/setup.py b/setup.py index e2ad9aa14..dda7b29a0 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,9 @@ ############################################################################# ## -## Copyright (C) 2016 The Qt Company Ltd. +## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage @@ -38,7 +38,6 @@ ############################################################################# from __future__ import print_function -from distutils.version import LooseVersion """ This is a distutils setup-script for the Qt for Python project @@ -199,12 +198,9 @@ OPTIONAL: an older OS version. """ -import os -import time -from utils import memoize, has_option, get_python_dict -OPTION_SNAPSHOT_BUILD = has_option("snapshot-build") +import os, sys -# Change the cwd to setup.py's dir. +# Change the current directory to setup.py's dir. try: this_file = __file__ except NameError: @@ -212,1896 +208,17 @@ except NameError: this_file = os.path.abspath(this_file) if os.path.dirname(this_file): os.chdir(os.path.dirname(this_file)) -script_dir = os.getcwd() -@memoize -def get_package_timestamp(): - return int(time.time()) - -@memoize -def get_package_version(): - """ Returns the version string for the PySide2 package. """ - pyside_version_py = os.path.join( - script_dir, "sources", "pyside2", "pyside_version.py") - d = get_python_dict(pyside_version_py) - - final_version = "{}.{}.{}".format( - d['major_version'], d['minor_version'], d['patch_version']) - pre_release_version_type = d['pre_release_version_type'] - pre_release_version = d['pre_release_version'] - if pre_release_version and pre_release_version: - final_version += pre_release_version_type + pre_release_version - - # Add the current timestamp to the version number, to suggest it - # is a development snapshot build. - if OPTION_SNAPSHOT_BUILD: - final_version += ".dev{}".format(get_package_timestamp()) - return final_version +from build_scripts.main import get_package_version +from build_scripts.main import pyside_package_dir_name +from build_scripts.main import cmd_class_dict +from build_scripts.main import README, CHANGES +from setuptools import setup, Extension # The __version__ variable is just for PEP compliancy, and shouldn't be # used as a value source. __version__ = get_package_version() -# Buildable extensions. -containedModules = ['shiboken2', 'pyside2', 'pyside2-tools'] - -# Git submodules: ["submodule_name", -# "location_relative_to_sources_folder"] -submodules = [["pyside2-tools"]] - -pyside_package_dir_name = "pyside_package" - -try: - import setuptools -except ImportError: - from ez_setup import use_setuptools - use_setuptools() - -import sys -import platform -import re -import fnmatch - -import difflib # for a close match of dirname and module -import functools - -from distutils import log -from distutils.errors import DistutilsOptionError -from distutils.errors import DistutilsSetupError -from distutils.sysconfig import get_config_var -from distutils.sysconfig import get_python_lib -from distutils.spawn import find_executable -from distutils.command.build import build as _build -from distutils.command.build_ext import build_ext as _build_ext -from distutils.util import get_platform - -from setuptools import setup, Extension -from setuptools.command.install import install as _install -from setuptools.command.install_lib import install_lib as _install_lib -from setuptools.command.bdist_egg import bdist_egg as _bdist_egg -from setuptools.command.develop import develop as _develop -from setuptools.command.build_py import build_py as _build_py - -wheel_module_exists = False -try: - from wheel.bdist_wheel import bdist_wheel as _bdist_wheel - from wheel.bdist_wheel import safer_name as _safer_name - wheel_module_exists = True -except ImportError: - pass - -from qtinfo import QtInfo -from utils import rmtree, detectClang -from utils import makefile -from utils import copyfile -from utils import copydir -from utils import run_process_output, run_process -from utils import option_value -from utils import update_env_path -from utils import init_msvc_env -from utils import regenerate_qt_resources -from utils import filter_match -from utils import macos_fix_rpaths_for_library -from utils import copy_icu_libs -from utils import find_files_using_glob - -from textwrap import dedent - -# make sure that setup.py is run with an allowed python version -def check_allowed_python_version(): - import re - pattern = "'Programming Language :: Python :: (\d+)\.(\d+)'" - supported = [] - with open(this_file) as setup: - for line in setup.readlines(): - found = re.search(pattern, line) - if found: - major = int(found.group(1)) - minor = int(found.group(2)) - supported.append( (major, minor) ) - this_py = sys.version_info[:2] - if this_py not in supported: - print("only these python versions are supported:", supported) - sys.exit(1) - -check_allowed_python_version() - -qtSrcDir = '' - -# Declare options -OPTION_DEBUG = has_option("debug") -OPTION_RELWITHDEBINFO = has_option('relwithdebinfo') -OPTION_QMAKE = option_value("qmake") -OPTION_QT_VERSION = option_value("qt") -OPTION_CMAKE = option_value("cmake") -OPTION_OPENSSL = option_value("openssl") -OPTION_ONLYPACKAGE = has_option("only-package") -OPTION_STANDALONE = has_option("standalone") -OPTION_MAKESPEC = option_value("make-spec") -OPTION_IGNOREGIT = has_option("ignore-git") -# don't include pyside2-examples -OPTION_NOEXAMPLES = has_option("no-examples") -# number of parallel build jobs -OPTION_JOBS = option_value('jobs') -# Legacy, not used any more. -OPTION_JOM = has_option('jom') -# Do not use jom instead of nmake with msvc -OPTION_NO_JOM = has_option('no-jom') -OPTION_BUILDTESTS = has_option("build-tests") -OPTION_MACOS_ARCH = option_value("macos-arch") -OPTION_MACOS_USE_LIBCPP = has_option("macos-use-libc++") -OPTION_MACOS_SYSROOT = option_value("macos-sysroot") -OPTION_MACOS_DEPLOYMENT_TARGET = option_value("macos-deployment-target") -OPTION_XVFB = has_option("use-xvfb") -OPTION_REUSE_BUILD = has_option("reuse-build") -OPTION_SKIP_CMAKE = has_option("skip-cmake") -OPTION_SKIP_MAKE_INSTALL = has_option("skip-make-install") -OPTION_SKIP_PACKAGING = has_option("skip-packaging") -OPTION_MODULE_SUBSET = option_value("module-subset") -OPTION_RPATH_VALUES = option_value("rpath") -OPTION_QT_CONF_PREFIX = option_value("qt-conf-prefix") -OPTION_QT_SRC = option_value("qt-src-dir") -OPTION_VERBOSE_BUILD = has_option("verbose-build") -OPTION_SANITIZE_ADDRESS = has_option("sanitize-address") - -# This is used automatically by distutils.command.install object, to -# specify final installation location. -OPTION_FINAL_INSTALL_PREFIX = option_value("prefix") - - -if OPTION_QT_VERSION is None: - OPTION_QT_VERSION = "5" -if OPTION_QMAKE is None: - OPTION_QMAKE = find_executable("qmake-qt5") -if OPTION_QMAKE is None: - OPTION_QMAKE = find_executable("qmake") - -# make qtinfo.py independent of relative paths. -if OPTION_QMAKE is not None and os.path.exists(OPTION_QMAKE): - OPTION_QMAKE = os.path.abspath(OPTION_QMAKE) -if OPTION_CMAKE is not None and os.path.exists(OPTION_CMAKE): - OPTION_CMAKE = os.path.abspath(OPTION_CMAKE) - -QMAKE_COMMAND = None -# Checking whether qmake executable exists -if OPTION_QMAKE is not None and os.path.exists(OPTION_QMAKE): - # Looking whether qmake path is a link and whether the link exists - if os.path.islink(OPTION_QMAKE) and os.path.lexists(OPTION_QMAKE): - # Set -qt=X here. - if "qtchooser" in os.readlink(OPTION_QMAKE): - QMAKE_COMMAND = [OPTION_QMAKE, "-qt={}".format(OPTION_QT_VERSION)] -if not QMAKE_COMMAND: - QMAKE_COMMAND = [OPTION_QMAKE] - -if len(QMAKE_COMMAND) == 0 or QMAKE_COMMAND[0] is None: - print("qmake could not be found.") - sys.exit(1) -if not os.path.exists(QMAKE_COMMAND[0]): - print("'{}' does not exist.".format(QMAKE_COMMAND[0])) - sys.exit(1) -if OPTION_CMAKE is None: - OPTION_CMAKE = find_executable("cmake") - -if OPTION_CMAKE is None: - print("cmake could not be found.") - sys.exit(1) -if not os.path.exists(OPTION_CMAKE): - print("'{}' does not exist.".format(OPTION_CMAKE)) - sys.exit(1) - -if sys.platform == "win32": - if OPTION_MAKESPEC is None: - OPTION_MAKESPEC = "msvc" - if not OPTION_MAKESPEC in ["msvc", "mingw"]: - print("Invalid option --make-spec. Available values are {}".format( - ["msvc", "mingw"])) - sys.exit(1) -else: - if OPTION_MAKESPEC is None: - OPTION_MAKESPEC = "make" - if not OPTION_MAKESPEC in ["make"]: - print("Invalid option --make-spec. Available values are {}".format( - ["make"])) - sys.exit(1) - -if OPTION_JOBS: - if sys.platform == 'win32' and OPTION_NO_JOM: - print("Option --jobs can only be used with jom on Windows.") - sys.exit(1) - else: - if not OPTION_JOBS.startswith('-j'): - OPTION_JOBS = '-j' + OPTION_JOBS -else: - OPTION_JOBS = '' - -def is_debug_python(): - return getattr(sys, "gettotalrefcount", None) is not None - -# Return a prefix suitable for the _install/_build directory -def prefix(): - virtualEnvName = os.environ.get('VIRTUAL_ENV', None) - if virtualEnvName is not None: - name = os.path.basename(virtualEnvName) - else: - name = "pyside" - name += str(sys.version_info[0]) - if OPTION_DEBUG: - name += 'd' - if is_debug_python(): - name += 'p' - return name - -# Initialize, pull and checkout submodules -def prepareSubModules(): - print("Initializing submodules for PySide2 version: {}".format( - get_package_version())) - submodules_dir = os.path.join(script_dir, "sources") - - # Create list of [name, desired branch, absolute path, desired - # branch] and determine whether all submodules are present - needInitSubModules = False - - for m in submodules: - module_name = m[0] - module_dir = m[1] if len(m) > 1 else '' - module_dir = os.path.join(submodules_dir, module_dir, module_name) - # Check for non-empty directory (repository checked out) - if not os.listdir(module_dir): - needInitSubModules = True - break - - if needInitSubModules: - git_update_cmd = ["git", "submodule", "update", "--init"] - if run_process(git_update_cmd) != 0: - m = ("Failed to initialize the git submodules: " - "update --init failed") - raise DistutilsSetupError(m) - git_pull_cmd = ["git", "submodule", "foreach", "git", "fetch", "--all"] - if run_process(git_pull_cmd) != 0: - m = ("Failed to initialize the git submodules: " - "git fetch --all failed") - raise DistutilsSetupError(m) - else: - print("All submodules present.") - - git_update_cmd = ["git", "submodule", "update"] - if run_process(git_update_cmd) != 0: - m = "Failed to checkout the correct git submodules SHA1s." - raise DistutilsSetupError(m) - -# Single global instance of QtInfo to be used later in multiple code -# paths. -qtinfo = QtInfo(QMAKE_COMMAND) - -def get_qt_version(): - qt_version = qtinfo.version - - if not qt_version: - log.error("Failed to query the Qt version with qmake {0}".format( - self.qtinfo.qmake_command)) - sys.exit(1) - - if LooseVersion(qtinfo.version) < LooseVersion("5.7"): - log.error("Incompatible Qt version detected: {}. " - "A Qt version >= 5.7 is required.".format(qt_version)) - sys.exit(1) - - return qt_version - -def prepareBuild(): - if (os.path.isdir(".git") and not OPTION_IGNOREGIT and - not OPTION_ONLYPACKAGE and not OPTION_REUSE_BUILD): - prepareSubModules() - # Clean up temp and package folders - for n in [pyside_package_dir_name, "build"]: - d = os.path.join(script_dir, n) - if os.path.isdir(d): - print("Removing {}".format(d)) - try: - rmtree(d) - except Exception as e: - print('***** problem removing "{}"'.format(d)) - print('ignored error: {}'.format(e)) - # Prepare package folders - ppdn = pyside_package_dir_name - absolute_paths = [os.path.join(ppdn, "PySide2"), - os.path.join(ppdn, "pyside2uic")] - for pkg in absolute_paths: - pkg_dir = os.path.join(script_dir, pkg) - os.makedirs(pkg_dir) - # locate Qt sources for the documentation - if OPTION_QT_SRC is None: - installPrefix = qtinfo.prefix_dir - if installPrefix: - global qtSrcDir - # In-source, developer build - if installPrefix.endswith("qtbase"): - qtSrcDir = installPrefix - else: # SDK: Use 'Src' directory - qtSrcDir = os.path.join(os.path.dirname(installPrefix), - 'Src', 'qtbase') - -class pyside_install(_install): - def __init__(self, *args, **kwargs): - _install.__init__(self, *args, **kwargs) - - def initialize_options (self): - _install.initialize_options(self) - - if sys.platform == 'darwin': - # Because we change the plat_name to include a correct - # deployment target on macOS distutils thinks we are - # cross-compiling, and throws an exception when trying to - # execute setup.py install. The check looks like this - # if self.warn_dir and build_plat != get_platform(): - # raise DistutilsPlatformError("Can't install when " - # "cross-compiling") - # Obviously get_platform will return the old deployment - # target. The fix is to disable the warn_dir flag, which - # was created for bdist_* derived classes to override, for - # similar cases. - self.warn_dir = False - - def run(self): - _install.run(self) - log.info('*** Install completed') - -class pyside_develop(_develop): - - def __init__(self, *args, **kwargs): - _develop.__init__(self, *args, **kwargs) - - def run(self): - self.run_command("build") - _develop.run(self) - -class pyside_bdist_egg(_bdist_egg): - - def __init__(self, *args, **kwargs): - _bdist_egg.__init__(self, *args, **kwargs) - - def run(self): - self.run_command("build") - _bdist_egg.run(self) - -class pyside_build_ext(_build_ext): - - def __init__(self, *args, **kwargs): - _build_ext.__init__(self, *args, **kwargs) - - def run(self): - pass - -if wheel_module_exists: - class pyside_build_wheel(_bdist_wheel): - def __init__(self, *args, **kwargs): - _bdist_wheel.__init__(self, *args, **kwargs) - - @property - def wheel_dist_name(self): - # Slightly modified version of wheel's wheel_dist_name - # method, to add the Qt version as well. - # Example: - # PySide2-5.6-5.6.4-cp27-cp27m-macosx_10_10_intel.whl - # The PySide2 version is "5.6". - # The Qt version built against is "5.6.4". - qt_version = get_qt_version() - package_version = get_package_version() - wheel_version = "{}-{}".format(package_version, qt_version) - components = (_safer_name(self.distribution.get_name()), - wheel_version) - if self.build_number: - components += (self.build_number,) - return '-'.join(components) - - def finalize_options(self): - if sys.platform == 'darwin': - # Override the platform name to contain the correct - # minimum deployment target. - # This is used in the final wheel name. - self.plat_name = pyside_build.macos_plat_name() - _bdist_wheel.finalize_options(self) - -# pyside_build_py and pyside_install_lib are reimplemented to preserve -# symlinks when distutils / setuptools copy files to various -# directories through the different build stages. -class pyside_build_py(_build_py): - - def __init__(self, *args, **kwargs): - _build_py.__init__(self, *args, **kwargs) - - def build_package_data(self): - """Copies files from pyside_package into build/xxx directory""" - - for package, src_dir, build_dir, filenames in self.data_files: - for filename in filenames: - target = os.path.join(build_dir, filename) - self.mkpath(os.path.dirname(target)) - srcfile = os.path.abspath(os.path.join(src_dir, filename)) - # Using our own copyfile makes sure to preserve symlinks. - copyfile(srcfile, target) - -class pyside_install_lib(_install_lib): - - def __init__(self, *args, **kwargs): - _install_lib.__init__(self, *args, **kwargs) - - def install(self): - """ - Installs files from build/xxx directory into final - site-packages/PySide2 directory. - """ - - if os.path.isdir(self.build_dir): - # Using our own copydir makes sure to preserve symlinks. - outfiles = copydir(os.path.abspath(self.build_dir), - os.path.abspath(self.install_dir)) - else: - self.warn("'{}' does not exist -- " - "no Python modules to install".format(self.build_dir)) - return - return outfiles - -class pyside_build(_build): - - def __init__(self, *args, **kwargs): - _build.__init__(self, *args, **kwargs) - - def finalize_options(self): - os_name_backup = os.name - if sys.platform == 'darwin': - self.plat_name = pyside_build.macos_plat_name() - # This is a hack to circumvent the dubious check in - # distutils.commands.build -> finalize_options, which only - # allows setting the plat_name for windows NT. - # That is not the case for the wheel module though (which - # does allow setting plat_name), so we circumvent by faking - # the os name when finalizing the options, and then - # restoring the original os name. - os.name = "nt" - - _build.finalize_options(self) - - if sys.platform == 'darwin': - os.name = os_name_backup - - def initialize_options(self): - _build.initialize_options(self) - self.make_path = None - self.make_generator = None - self.debug = False - self.script_dir = None - self.sources_dir = None - self.build_dir = None - self.install_dir = None - self.py_executable = None - self.py_include_dir = None - self.py_library = None - self.py_version = None - self.build_type = "Release" - self.qtinfo = None - self.build_tests = False - - def run(self): - prepareBuild() - platform_arch = platform.architecture()[0] - log.info("Python architecture is {}".format(platform_arch)) - - build_type = "Debug" if OPTION_DEBUG else "Release" - if OPTION_RELWITHDEBINFO: - build_type = 'RelWithDebInfo' - - # Check env - make_path = None - make_generator = None - if not OPTION_ONLYPACKAGE: - if OPTION_MAKESPEC == "make": - make_name = "make" - make_generator = "Unix Makefiles" - elif OPTION_MAKESPEC == "msvc": - nmake_path = find_executable("nmake") - if nmake_path is None or not os.path.exists(nmake_path): - log.info("nmake not found. " - "Trying to initialize the MSVC env...") - init_msvc_env(platform_arch, build_type) - nmake_path = find_executable("nmake") - assert(nmake_path is not None and - os.path.exists(nmake_path)) - jom_path = None if OPTION_NO_JOM else find_executable("jom") - if jom_path is not None and os.path.exists(jom_path): - log.info("jom was found in {}".format(jom_path)) - make_name = "jom" - make_generator = "NMake Makefiles JOM" - else: - log.info("nmake was found in {}".format(nmake_path)) - make_name = "nmake" - make_generator = "NMake Makefiles" - elif OPTION_MAKESPEC == "mingw": - make_name = "mingw32-make" - make_generator = "MinGW Makefiles" - else: - raise DistutilsSetupError( - "Invalid option --make-spec.") - make_path = find_executable(make_name) - if make_path is None or not os.path.exists(make_path): - raise DistutilsSetupError("You need the program '{}' on your " - "system path to compile PySide2.".format(make_name)) - - if OPTION_CMAKE is None or not os.path.exists(OPTION_CMAKE): - raise DistutilsSetupError( - "Failed to find cmake." - " Please specify the path to cmake with " - "--cmake parameter.") - - if OPTION_QMAKE is None or not os.path.exists(OPTION_QMAKE): - raise DistutilsSetupError( - "Failed to find qmake." - " Please specify the path to qmake with --qmake parameter.") - - # Prepare parameters - py_executable = sys.executable - py_version = "{}.{}".format(sys.version_info[0], sys.version_info[1]) - py_include_dir = get_config_var("INCLUDEPY") - py_libdir = get_config_var("LIBDIR") - py_prefix = get_config_var("prefix") - if not py_prefix or not os.path.exists(py_prefix): - py_prefix = sys.prefix - if sys.platform == "win32": - py_scripts_dir = os.path.join(py_prefix, "Scripts") - else: - py_scripts_dir = os.path.join(py_prefix, "bin") - if py_libdir is None or not os.path.exists(py_libdir): - if sys.platform == "win32": - py_libdir = os.path.join(py_prefix, "libs") - else: - py_libdir = os.path.join(py_prefix, "lib") - if py_include_dir is None or not os.path.exists(py_include_dir): - if sys.platform == "win32": - py_include_dir = os.path.join(py_prefix, "include") - else: - py_include_dir = os.path.join(py_prefix, - "include/python{}".format(py_version)) - dbgPostfix = "" - if build_type == "Debug": - dbgPostfix = "_d" - if sys.platform == "win32": - if OPTION_MAKESPEC == "mingw": - static_lib_name = "libpython{}{}.a".format( - py_version.replace(".", ""), dbgPostfix) - py_library = os.path.join(py_libdir, static_lib_name) - else: - python_lib_name = "python{}{}.lib".format( - py_version.replace(".", ""), dbgPostfix) - py_library = os.path.join(py_libdir, python_lib_name) - else: - lib_exts = ['.so'] - if sys.platform == 'darwin': - lib_exts.append('.dylib') - if sys.version_info[0] > 2: - lib_suff = getattr(sys, 'abiflags', None) - else: # Python 2 - lib_suff = '' - lib_exts.append('.so.1') - # Suffix for OpenSuSE 13.01 - lib_exts.append('.so.1.0') - # static library as last gasp - lib_exts.append('.a') - - if sys.version_info[0] == 2 and dbgPostfix: - # For Python2 add a duplicate set of extensions - # combined with the dbgPostfix, so we test for both the - # debug version of the lib and the normal one. - # This allows a debug PySide2 to be built with a - # non-debug Python. - lib_exts = [dbgPostfix + e for e in lib_exts] + lib_exts - - python_library_found = False - libs_tried = [] - for lib_ext in lib_exts: - lib_name = "libpython{}{}{}".format(py_version, lib_suff, - lib_ext) - py_library = os.path.join(py_libdir, lib_name) - if os.path.exists(py_library): - python_library_found = True - break - libs_tried.append(py_library) - else: - # At least on macOS 10.11, the system Python 2.6 does - # not include a symlink to the framework file disguised - # as a .dylib file, thus finding the library would - # fail. - # Manually check if a framework file "Python" exists in - # the Python framework bundle. - if sys.platform == 'darwin' and sys.version_info[:2] == (2, 6): - # These manipulations essentially transform - # /System/Library/Frameworks/Python.framework/Versions/2.6/lib - # to - # /System/Library/Frameworks/Python.framework/Versions/2.6/Python - possible_framework_path = os.path.realpath( - os.path.join(py_libdir, '..')) - possible_framework_version = os.path.basename( - possible_framework_path) - possible_framework_library = os.path.join( - possible_framework_path, 'Python') - - if (possible_framework_version == '2.6' and - os.path.exists(possible_framework_library)): - py_library = possible_framework_library - python_library_found = True - else: - libs_tried.append(possible_framework_library) - - # Try to find shared libraries which have a multi arch - # suffix. - if not python_library_found: - py_multiarch = get_config_var("MULTIARCH") - if py_multiarch and not python_library_found: - try_py_libdir = os.path.join(py_libdir, py_multiarch) - libs_tried = [] - for lib_ext in lib_exts: - lib_name = "libpython{}{}{}".format( - py_version, lib_suff, lib_ext) - py_library = os.path.join(try_py_libdir, lib_name) - if os.path.exists(py_library): - py_libdir = try_py_libdir - python_library_found = True - break - libs_tried.append(py_library) - - if not python_library_found: - raise DistutilsSetupError( - "Failed to locate the Python library with {}".format( - ", ".join(libs_tried))) - - if py_library.endswith('.a'): - # Python was compiled as a static library - log.error("Failed to locate a dynamic Python library, " - "using {}".format(py_library)) - - self.qtinfo = qtinfo - qt_dir = os.path.dirname(OPTION_QMAKE) - qt_version = get_qt_version() - - # Update the PATH environment variable - additionalPaths = [py_scripts_dir, qt_dir] - - # Add Clang to path for Windows. - # Revisit once Clang is bundled with Qt. - if (sys.platform == "win32" and - LooseVersion(self.qtinfo.version) >= LooseVersion("5.7.0")): - clangDir = detectClang() - if clangDir[0]: - clangBinDir = os.path.join(clangDir[0], 'bin') - if not clangBinDir in os.environ.get('PATH'): - log.info("Adding {} as detected by {} to PATH".format( - clangBinDir, clangDir[1])) - additionalPaths.append(clangBinDir) - else: - raise DistutilsSetupError("Failed to detect Clang when checking " - "LLVM_INSTALL_DIR, CLANG_INSTALL_DIR, llvm-config") - - update_env_path(additionalPaths) - - build_name = "py{}-qt{}-{}-{}".format(py_version, qt_version, - platform.architecture()[0], build_type.lower()) - - script_dir = os.getcwd() - sources_dir = os.path.join(script_dir, "sources") - build_dir = os.path.join(script_dir, prefix() + "_build", - "{}".format(build_name)) - install_dir = os.path.join(script_dir, prefix() + "_install", - "{}".format(build_name)) - - # Try to ensure that tools built by this script (such as shiboken2) - # are found before any that may already be installed on the system. - update_env_path([os.path.join(install_dir, 'bin')]) - - # Tell cmake to look here for *.cmake files - os.environ['CMAKE_PREFIX_PATH'] = install_dir - - self.make_path = make_path - self.make_generator = make_generator - self.debug = OPTION_DEBUG - self.script_dir = script_dir - self.pyside_package_dir = os.path.join(self.script_dir, - pyside_package_dir_name) - self.sources_dir = sources_dir - self.build_dir = build_dir - self.install_dir = install_dir - self.py_executable = py_executable - self.py_include_dir = py_include_dir - self.py_library = py_library - self.py_version = py_version - self.build_type = build_type - self.site_packages_dir = get_python_lib(1, 0, prefix=install_dir) - self.build_tests = OPTION_BUILDTESTS - - setuptools_install_prefix = get_python_lib(1) - if OPTION_FINAL_INSTALL_PREFIX: - setuptools_install_prefix = OPTION_FINAL_INSTALL_PREFIX - - # Save the shiboken build dir path for clang deployment - # purposes. - self.shiboken_build_dir = os.path.join(self.build_dir, "shiboken2") - - log.info("=" * 30) - log.info("Package version: {}".format(get_package_version())) - log.info("Build type: {}".format(self.build_type)) - log.info("Build tests: {}".format(self.build_tests)) - log.info("-" * 3) - log.info("Make path: {}".format(self.make_path)) - log.info("Make generator: {}".format(self.make_generator)) - log.info("Make jobs: {}".format(OPTION_JOBS)) - log.info("-" * 3) - - log.info("Script directory: {}".format(self.script_dir)) - log.info("Sources directory: {}".format(self.sources_dir)) - - log.info(dedent(""" - Building PySide2 will create and touch directories - in the following order: - make build directory (py*_build/*/*) -> - make install directory (py*_install/*/*) -> - {} directory (pyside_package/*) -> - setuptools build directory (build/*/*) -> - setuptools install directory - (usually path-installed-python/lib/python*/site-packages/*) - """).format(pyside_package_dir_name)) - - log.info("make build directory: {}".format(self.build_dir)) - log.info("make install directory: {}".format(self.install_dir)) - log.info("{} directory: {}".format(pyside_package_dir_name, - self.pyside_package_dir)) - log.info("setuptools build directory: {}".format( - os.path.join(self.script_dir, "build"))) - log.info("setuptools install directory: {}".format( - setuptools_install_prefix)) - log.info("make-installed site-packages directory: {} \n" - " (only relevant for copying files from " - "'make install directory' to '{} directory'".format( - self.site_packages_dir, pyside_package_dir_name)) - log.info("-" * 3) - log.info("Python executable: {}".format(self.py_executable)) - log.info("Python includes: {}".format(self.py_include_dir)) - log.info("Python library: {}".format(self.py_library)) - log.info("Python prefix: {}".format(py_prefix)) - log.info("Python scripts: {}".format(py_scripts_dir)) - log.info("-" * 3) - log.info("Qt qmake: {}".format(self.qtinfo.qmake_command)) - log.info("Qt version: {}".format(self.qtinfo.version)) - log.info("Qt bins: {}".format(self.qtinfo.bins_dir)) - log.info("Qt docs: {}".format(self.qtinfo.docs_dir)) - log.info("Qt plugins: {}".format(self.qtinfo.plugins_dir)) - log.info("-" * 3) - if sys.platform == 'win32': - log.info("OpenSSL dll directory: {}".format(OPTION_OPENSSL)) - if sys.platform == 'darwin': - pyside_macos_deployment_target = ( - pyside_build.macos_pyside_min_deployment_target() - ) - log.info("MACOSX_DEPLOYMENT_TARGET set to: {}".format( - pyside_macos_deployment_target)) - log.info("=" * 30) - - # Prepare folders - if not os.path.exists(self.sources_dir): - log.info("Creating sources folder {}...".format(self.sources_dir)) - os.makedirs(self.sources_dir) - if not os.path.exists(self.build_dir): - log.info("Creating build folder {}...".format(self.build_dir)) - os.makedirs(self.build_dir) - if not os.path.exists(self.install_dir): - log.info("Creating install folder {}...".format(self.install_dir)) - os.makedirs(self.install_dir) - - if not OPTION_ONLYPACKAGE: - # Build extensions - for ext in containedModules: - self.build_extension(ext) - - if OPTION_BUILDTESTS: - # we record the latest successful build and note the - # build directory for supporting the tests. - timestamp = time.strftime('%Y-%m-%d_%H%M%S') - build_history = os.path.join(script_dir, 'build_history') - unique_dir = os.path.join(build_history, timestamp) - os.makedirs(unique_dir) - fpath = os.path.join(unique_dir, 'build_dir.txt') - with open(fpath, 'w') as f: - print(build_dir, file=f) - log.info("Created {}".format(build_history)) - - if not OPTION_SKIP_PACKAGING: - # Build patchelf if needed - self.build_patchelf() - - # Prepare packages - self.prepare_packages() - - # Build packages - _build.run(self) - else: - log.info("Skipped preparing and building packages.") - log.info('*** Build completed') - - @staticmethod - def macos_qt_min_deployment_target(): - target = qtinfo.macos_min_deployment_target - - if not target: - raise DistutilsSetupError("Failed to query for Qt's " - "QMAKE_MACOSX_DEPLOYMENT_TARGET.") - return target - - @staticmethod - @memoize - def macos_pyside_min_deployment_target(): - """ - Compute and validate PySide2 MACOSX_DEPLOYMENT_TARGET value. - Candidate sources that are considered: - - setup.py provided value - - maximum value between minimum deployment target of the - Python interpreter and the minimum deployment target of - the Qt libraries. - If setup.py value is provided, that takes precedence. - Otherwise use the maximum of the above mentioned two values. - """ - python_target = get_config_var('MACOSX_DEPLOYMENT_TARGET') or None - qt_target = pyside_build.macos_qt_min_deployment_target() - setup_target = OPTION_MACOS_DEPLOYMENT_TARGET - - qt_target_split = [int(x) for x in qt_target.split('.')] - if python_target: - python_target_split = [int(x) for x in python_target.split('.')] - if setup_target: - setup_target_split = [int(x) for x in setup_target.split('.')] - - message = ("Can't set MACOSX_DEPLOYMENT_TARGET value to {} because " - "{} was built with minimum deployment target set to {}.") - # setup.py provided OPTION_MACOS_DEPLOYMENT_TARGET value takes - # precedence. - if setup_target: - if python_target and setup_target_split < python_target_split: - raise DistutilsSetupError(message.format(setup_target, - "Python", python_target)) - if setup_target_split < qt_target_split: - raise DistutilsSetupError(message.format(setup_target, - "Qt", qt_target)) - # All checks clear, use setup.py provided value. - return setup_target - - # Setup.py value not provided, - # use same value as provided by Qt. - if python_target: - maximum_target = '.'.join([str(e) for e in max(python_target_split, - qt_target_split)]) - else: - maximum_target = qt_target - return maximum_target - - @staticmethod - @memoize - def macos_plat_name(): - deployment_target = pyside_build.macos_pyside_min_deployment_target() - # Example triple "macosx-10.12-x86_64". - plat = get_platform().split("-") - plat_name = "{}-{}-{}".format(plat[0], deployment_target, plat[2]) - return plat_name - - def build_patchelf(self): - if not sys.platform.startswith('linux'): - return - log.info("Building patchelf...") - module_src_dir = os.path.join(self.sources_dir, "patchelf") - build_cmd = [ - "g++", - "{}/patchelf.cc".format(module_src_dir), - "-o", - "patchelf", - ] - if run_process(build_cmd) != 0: - raise DistutilsSetupError("Error building patchelf") - - def build_extension(self, extension): - # calculate the subrepos folder name - - log.info("Building module {}...".format(extension)) - - # Prepare folders - os.chdir(self.build_dir) - module_build_dir = os.path.join(self.build_dir, extension) - skipflag_file = module_build_dir + '-skip' - if os.path.exists(skipflag_file): - log.info("Skipping {} because {} exists".format(extension, - skipflag_file)) - return - - module_build_exists = os.path.exists(module_build_dir) - if module_build_exists: - if not OPTION_REUSE_BUILD: - log.info("Deleting module build folder {}...".format( - module_build_dir)) - try: - rmtree(module_build_dir) - except Exception as e: - print('***** problem removing "{}"'.format( - module_build_dir)) - print('ignored error: {}'.format(e)) - else: - log.info("Reusing module build folder {}...".format( - module_build_dir)) - if not os.path.exists(module_build_dir): - log.info("Creating module build folder {}...".format( - module_build_dir)) - os.makedirs(module_build_dir) - os.chdir(module_build_dir) - - module_src_dir = os.path.join(self.sources_dir, extension) - - # Build module - cmake_cmd = [ - OPTION_CMAKE, - "-G", self.make_generator, - "-DBUILD_TESTS={}".format(self.build_tests), - "-DQt5Help_DIR={}".format(self.qtinfo.docs_dir), - "-DCMAKE_BUILD_TYPE={}".format(self.build_type), - "-DCMAKE_INSTALL_PREFIX={}".format(self.install_dir), - module_src_dir - ] - cmake_cmd.append("-DPYTHON_EXECUTABLE={}".format(self.py_executable)) - cmake_cmd.append("-DPYTHON_INCLUDE_DIR={}".format(self.py_include_dir)) - cmake_cmd.append("-DPYTHON_LIBRARY={}".format(self.py_library)) - if OPTION_MODULE_SUBSET: - moduleSubSet = '' - for m in OPTION_MODULE_SUBSET.split(','): - if m.startswith('Qt'): - m = m[2:] - if moduleSubSet: - moduleSubSet += ';' - moduleSubSet += m - cmake_cmd.append("-DMODULES={}".format(moduleSubSet)) - # Add source location for generating documentation - cmake_src_dir = OPTION_QT_SRC if OPTION_QT_SRC else qtSrcDir - cmake_cmd.append("-DQT_SRC_DIR={}".format(cmake_src_dir)) - log.info("Qt Source dir: {}".format(cmake_src_dir)) - - if self.build_type.lower() == 'debug': - cmake_cmd.append("-DPYTHON_DEBUG_LIBRARY={}".format( - self.py_library)) - - if OPTION_VERBOSE_BUILD: - cmake_cmd.append("-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON") - - if OPTION_SANITIZE_ADDRESS: - # Some simple sanity checking. Only use at your own risk. - if (sys.platform.startswith('linux') or - sys.platform.startswith('darwin')): - cmake_cmd.append("-DSANITIZE_ADDRESS=ON") - else: - raise DistutilsSetupError("Address sanitizer can only be used " - "on Linux and macOS.") - - if extension.lower() == "pyside2": - pyside_qt_conf_prefix = '' - if OPTION_QT_CONF_PREFIX: - pyside_qt_conf_prefix = OPTION_QT_CONF_PREFIX - else: - if OPTION_STANDALONE: - pyside_qt_conf_prefix = '"Qt"' - if sys.platform == 'win32': - pyside_qt_conf_prefix = '"."' - cmake_cmd.append("-DPYSIDE_QT_CONF_PREFIX={}".format( - pyside_qt_conf_prefix)) - - # Pass package version to CMake, so this string can be - # embedded into _config.py file. - package_version = get_package_version() - cmake_cmd.append("-DPYSIDE_SETUP_PY_PACKAGE_VERSION={}".format( - package_version)) - - # In case if this is a snapshot build, also pass the - # timestamp as a separate value, because it the only - # version component that is actually generated by setup.py. - timestamp = '' - if OPTION_SNAPSHOT_BUILD: - timestamp = get_package_timestamp() - cmake_cmd.append("-DPYSIDE_SETUP_PY_PACKAGE_TIMESTAMP={}".format( - timestamp)) - - if extension.lower() == "shiboken2": - cmake_cmd.append("-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=yes") - if sys.version_info[0] > 2: - cmake_cmd.append("-DUSE_PYTHON_VERSION=3.3") - - if sys.platform == 'darwin': - if OPTION_MACOS_ARCH: - # also tell cmake which architecture to use - cmake_cmd.append("-DCMAKE_OSX_ARCHITECTURES:STRING={}".format( - OPTION_MACOS_ARCH)) - - if OPTION_MACOS_USE_LIBCPP: - # Explicitly link the libc++ standard library (useful - # for macOS deployment targets lower than 10.9). - # This is not on by default, because most libraries and - # executables on macOS <= 10.8 are linked to libstdc++, - # and mixing standard libraries can lead to crashes. - # On macOS >= 10.9 with a similar minimum deployment - # target, libc++ is linked in implicitly, thus the - # option is a no-op in those cases. - cmake_cmd.append("-DOSX_USE_LIBCPP=ON") - - if OPTION_MACOS_SYSROOT: - cmake_cmd.append("-DCMAKE_OSX_SYSROOT={}".format( - OPTION_MACOS_SYSROOT)) - else: - latest_sdk_path = run_process_output(['xcrun', - '--show-sdk-path']) - if latest_sdk_path: - latest_sdk_path = latest_sdk_path[0] - cmake_cmd.append("-DCMAKE_OSX_SYSROOT={}".format( - latest_sdk_path)) - - # Set macOS minimum deployment target (version). - # This is required so that calling - # run_process -> distutils.spawn() - # does not set its own minimum deployment target - # environment variable which is based on the python - # interpreter sysconfig value. - # Doing so could break the detected clang include paths - # for example. - deployment_target = \ - pyside_build.macos_pyside_min_deployment_target() - cmake_cmd.append("-DCMAKE_OSX_DEPLOYMENT_TARGET={}".format( - deployment_target)) - os.environ['MACOSX_DEPLOYMENT_TARGET'] = deployment_target - - if not OPTION_SKIP_CMAKE: - log.info("Configuring module {} ({})...".format(extension, - module_src_dir)) - if run_process(cmake_cmd) != 0: - raise DistutilsSetupError("Error configuring {}".format( - extension)) - else: - log.info("Reusing old configuration for module {} ({})...".format( - extension, module_src_dir)) - - log.info("Compiling module {}...".format(extension)) - cmd_make = [self.make_path] - if OPTION_JOBS: - cmd_make.append(OPTION_JOBS) - if run_process(cmd_make) != 0: - raise DistutilsSetupError("Error compiling {}".format(extension)) - - if extension.lower() == "shiboken2": - try: - # Check if sphinx is installed to proceed - import sphinx - - log.info("Generating Shiboken documentation") - if run_process([self.make_path, "doc"]) != 0: - raise DistutilsSetupError( - "Error generating documentation {}".format(extension)) - except ImportError: - log.info("Sphinx not found, skipping documentation build") - - - if not OPTION_SKIP_MAKE_INSTALL: - log.info("Installing module {}...".format(extension)) - # Need to wait a second, so installed file timestamps are - # older than build file timestamps. - # See https://gitlab.kitware.com/cmake/cmake/issues/16155 - # for issue details. - if sys.platform == 'darwin': - log.info("Waiting 1 second, to ensure installation is " - "successful...") - time.sleep(1) - if run_process([self.make_path, "install/fast"]) != 0: - raise DistutilsSetupError("Error pseudo installing {}".format( - extension)) - else: - log.info("Skipped installing module {}".format(extension)) - - os.chdir(self.script_dir) - - def prepare_packages(self): - try: - log.info("Preparing packages...") - vars = { - "site_packages_dir": self.site_packages_dir, - "sources_dir": self.sources_dir, - "install_dir": self.install_dir, - "build_dir": self.build_dir, - "script_dir": self.script_dir, - "pyside_package_dir": self.pyside_package_dir, - "ssl_libs_dir": OPTION_OPENSSL, - "py_version": self.py_version, - "qt_version": self.qtinfo.version, - "qt_bin_dir": self.qtinfo.bins_dir, - "qt_doc_dir": self.qtinfo.docs_dir, - "qt_lib_dir": self.qtinfo.libs_dir, - "qt_lib_execs_dir": self.qtinfo.lib_execs_dir, - "qt_plugins_dir": self.qtinfo.plugins_dir, - "qt_prefix_dir": self.qtinfo.prefix_dir, - "qt_translations_dir": self.qtinfo.translations_dir, - "qt_qml_dir": self.qtinfo.qml_dir, - } - os.chdir(self.script_dir) - - if sys.platform == "win32": - vars['dbgPostfix'] = OPTION_DEBUG and "_d" or "" - return self.prepare_packages_win32(vars) - else: - return self.prepare_packages_posix(vars) - except IOError as e: - print('setup.py/prepare_packages: ', e) - raise - - def get_built_pyside_config(self, vars): - # Get config that contains list of built modules, and - # SOVERSIONs of the built libraries. - pyside_package_dir = vars['pyside_package_dir'] - config_path = os.path.join(pyside_package_dir, "PySide2", "_config.py") - config = get_python_dict(config_path) - return config - - def is_webengine_built(self, built_modules): - return 'WebEngineWidgets' in built_modules or 'WebEngineCore' in built_modules - - def prepare_packages_posix(self, vars): - executables = [] - # /shiboken2/doc/html/* -> - # /PySide2/docs/shiboken2 - copydir( - "{build_dir}/shiboken2/doc/html", - "{pyside_package_dir}/PySide2/docs/shiboken2", - force=False, vars=vars) - # /lib/site-packages/PySide2/* -> /PySide2 - copydir( - "{site_packages_dir}/PySide2", - "{pyside_package_dir}/PySide2", - vars=vars) - # /lib/site-packages/shiboken2.so -> - # /PySide2/shiboken2.so - shiboken_module_name = 'shiboken2.so' - shiboken_src_path = "{site_packages_dir}".format(**vars) - maybe_shiboken_names = [f for f in os.listdir(shiboken_src_path) - if re.match(r'shiboken.*\.so', f)] - if maybe_shiboken_names: - shiboken_module_name = maybe_shiboken_names[0] - vars.update({'shiboken_module_name': shiboken_module_name}) - copyfile( - "{site_packages_dir}/{shiboken_module_name}", - "{pyside_package_dir}/PySide2/{shiboken_module_name}", - vars=vars) - # /lib/site-packages/pyside2uic/* -> - # /pyside2uic - copydir( - "{site_packages_dir}/pyside2uic", - "{pyside_package_dir}/pyside2uic", - force=False, vars=vars) - if sys.version_info[0] > 2: - rmtree("{pyside_package_dir}/pyside2uic/port_v2".format(**vars)) - else: - rmtree("{pyside_package_dir}/pyside2uic/port_v3".format(**vars)) - # /bin/pyside2-uic -> PySide2/scripts/uic.py - makefile( - "{pyside_package_dir}/PySide2/scripts/__init__.py", - vars=vars) - copyfile( - "{install_dir}/bin/pyside2-uic", - "{pyside_package_dir}/PySide2/scripts/uic.py", - force=False, vars=vars) - # /bin/* -> PySide2/ - executables.extend(copydir( - "{install_dir}/bin/", - "{pyside_package_dir}/PySide2", - filter=[ - "pyside2-lupdate", - "pyside2-rcc", - "shiboken2", - ], - recursive=False, vars=vars)) - # /lib/lib* -> PySide2/ - config = self.get_built_pyside_config(vars) - def adjusted_lib_name(name, version): - postfix = '' - if sys.platform.startswith('linux'): - postfix = '.so.' + version - elif sys.platform == 'darwin': - postfix = '.' + version + '.dylib' - return name + postfix - copydir( - "{install_dir}/lib/", - "{pyside_package_dir}/PySide2", - filter=[ - adjusted_lib_name("libpyside*", - config['pyside_library_soversion']), - adjusted_lib_name("libshiboken*", - config['shiboken_library_soversion']), - ], - recursive=False, vars=vars, force_copy_symlinks=True) - # /share/PySide2/typesystems/* -> - # /PySide2/typesystems - copydir( - "{install_dir}/share/PySide2/typesystems", - "{pyside_package_dir}/PySide2/typesystems", - vars=vars) - # /include/* -> /PySide2/include - copydir( - "{install_dir}/include", - "{pyside_package_dir}/PySide2/include", - vars=vars) - # /pyside2/PySide2/support/* -> - # /PySide2/support/* - copydir( - "{build_dir}/pyside2/PySide2/support", - "{pyside_package_dir}/PySide2/support", - vars=vars) - if not OPTION_NOEXAMPLES: - # examples/* -> /PySide2/examples - copydir(os.path.join(self.script_dir, "examples"), - "{pyside_package_dir}/PySide2/examples", - force=False, vars=vars) - # Re-generate examples Qt resource files for Python 3 - # compatibility - if sys.version_info[0] == 3: - examples_path = "{pyside_package_dir}/PySide2/examples".format( - **vars) - pyside_rcc_path = "{install_dir}/bin/pyside2-rcc".format( - **vars) - pyside_rcc_options = '-py3' - regenerate_qt_resources(examples_path, pyside_rcc_path, - pyside_rcc_options) - # Copy Qt libs to package - if OPTION_STANDALONE: - vars['built_modules'] = config['built_modules'] - if sys.platform == 'darwin': - self.prepare_standalone_package_macos(executables, vars) - else: - self.prepare_standalone_package_linux(executables, vars) - - # Copy over clang before rpath patching. - self.prepare_standalone_clang(is_win=False) - - # Update rpath to $ORIGIN - if (sys.platform.startswith('linux') or - sys.platform.startswith('darwin')): - self.update_rpath("{pyside_package_dir}/PySide2".format(**vars), - executables) - - def qt_is_framework_build(self): - if os.path.isdir(self.qtinfo.headers_dir + "/../lib/QtCore.framework"): - return True - return False - - def prepare_standalone_package_linux(self, executables, vars): - built_modules = vars['built_modules'] - - # /lib/* -> /PySide2/Qt/lib - destination_lib_dir = "{pyside_package_dir}/PySide2/Qt/lib" - copydir("{qt_lib_dir}", destination_lib_dir, - filter=[ - "libQt5*.so.?", - "libicu*.so.??", - ], - recursive=False, vars=vars, force_copy_symlinks=True) - - # Check if ICU libraries were copied over to the destination - # Qt libdir. - resolved_destination_lib_dir = destination_lib_dir.format(**vars) - maybe_icu_libs = find_files_using_glob(resolved_destination_lib_dir, - "libicu*") - - # If no ICU libraries are present in the Qt libdir (like when - # Qt is built against system ICU, or in the Coin CI where ICU - # libs are in a different directory) try to find out / resolve - # which ICU libs are used by QtCore (if used at all) using a - # custom written ldd, and copy the ICU libs to the Pyside Qt - # dir if necessary. We choose the QtCore lib to inspect, by - # checking which QtCore library the shiboken2 executable uses. - if not maybe_icu_libs: - copy_icu_libs(resolved_destination_lib_dir) - - if self.is_webengine_built(built_modules): - copydir("{qt_lib_execs_dir}", - "{pyside_package_dir}/PySide2/Qt/libexec", - filter=None, - recursive=False, - vars=vars) - - copydir("{qt_prefix_dir}/resources", - "{pyside_package_dir}/PySide2/Qt/resources", - filter=None, - recursive=False, - vars=vars) - - # /plugins/* -> /PySide2/Qt/plugins - copydir("{qt_plugins_dir}", - "{pyside_package_dir}/PySide2/Qt/plugins", - filter=["*.so"], - recursive=True, - vars=vars) - - # /qml/* -> /PySide2/Qt/qml - copydir("{qt_qml_dir}", - "{pyside_package_dir}/PySide2/Qt/qml", - filter=None, - force=False, - recursive=True, - vars=vars) - - # /translations/* -> /PySide2/Qt/translations - - copydir("{qt_translations_dir}", - "{pyside_package_dir}/PySide2/Qt/translations", - filter=["*.qm", "*.pak"], - force=False, - vars=vars) - - # Copy the qt.conf file to libexec. - copyfile( - "{build_dir}/pyside2/PySide2/qt.conf", - "{pyside_package_dir}/PySide2/Qt/libexec", - vars=vars) - - def prepare_standalone_package_macos(self, executables, vars): - built_modules = vars['built_modules'] - - # Directory filter for skipping unnecessary files. - def general_dir_filter(dir_name, parent_full_path, dir_full_path): - if fnmatch.fnmatch(dir_name, "*.dSYM"): - return False - return True - - # /lib/* -> /PySide2/Qt/lib - if self.qt_is_framework_build(): - framework_built_modules = [ - 'Qt' + name + '.framework' for name in built_modules] - - def framework_dir_filter(dir_name, parent_full_path, - dir_full_path): - if '.framework' in dir_name: - if dir_name.startswith('QtWebEngine') and not \ - self.is_webengine_built(built_modules): - return False - if dir_name in ['Headers', 'fonts']: - return False - if dir_full_path.endswith('Versions/Current'): - return False - if dir_full_path.endswith('Versions/5/Resources'): - return False - if dir_full_path.endswith('Versions/5/Helpers'): - return False - return general_dir_filter(dir_name, parent_full_path, - dir_full_path) - - copydir("{qt_lib_dir}", "{pyside_package_dir}/PySide2/Qt/lib", - recursive=True, vars=vars, - ignore=["*.la", "*.a", "*.cmake", "*.pc", "*.prl"], - dir_filter_function=framework_dir_filter) - - # Fix rpath for WebEngine process executable. The already - # present rpath does not work because it assumes a symlink - # from Versions/5/Helpers, thus adding two more levels of - # directory hierarchy. - if self.is_webengine_built(built_modules): - qt_lib_path = "{pyside_package_dir}/PySide2/Qt/lib".format( - **vars) - bundle = "QtWebEngineCore.framework/Helpers/" - bundle += "QtWebEngineProcess.app" - binary = "Contents/MacOS/QtWebEngineProcess" - webengine_process_path = os.path.join(bundle, binary) - final_path = os.path.join(qt_lib_path, webengine_process_path) - rpath = "@loader_path/../../../../../" - macos_fix_rpaths_for_library(final_path, rpath) - else: - ignored_modules = [] - if not self.is_webengine_built(built_modules): - ignored_modules.extend(['libQt5WebEngine*.dylib']) - if 'WebKit' not in built_modules: - ignored_modules.extend(['libQt5WebKit*.dylib']) - accepted_modules = ['libQt5*.5.dylib'] - - copydir("{qt_lib_dir}", - "{pyside_package_dir}/PySide2/Qt/lib", - filter=accepted_modules, - ignore=ignored_modules, - recursive=True, vars=vars, force_copy_symlinks=True) - - if self.is_webengine_built(built_modules): - copydir("{qt_lib_execs_dir}", - "{pyside_package_dir}/PySide2/Qt/libexec", - filter=None, - recursive=False, - vars=vars) - - copydir("{qt_prefix_dir}/resources", - "{pyside_package_dir}/PySide2/Qt/resources", - filter=None, - recursive=False, - vars=vars) - - # Fix rpath for WebEngine process executable. - pyside_package_dir = vars['pyside_package_dir'] - qt_libexec_path = "{}/PySide2/Qt/libexec".format(pyside_package_dir) - binary = "QtWebEngineProcess" - final_path = os.path.join(qt_libexec_path, binary) - rpath = "@loader_path/../lib" - macos_fix_rpaths_for_library(final_path, rpath) - - # Copy the qt.conf file to libexec. - copyfile( - "{build_dir}/pyside2/PySide2/qt.conf", - "{pyside_package_dir}/PySide2/Qt/libexec", - vars=vars) - - # /plugins/* -> /PySide2/Qt/plugins - copydir("{qt_plugins_dir}", - "{pyside_package_dir}/PySide2/Qt/plugins", - filter=["*.dylib"], - recursive=True, - dir_filter_function=general_dir_filter, - vars=vars) - - # /qml/* -> /PySide2/Qt/qml - copydir("{qt_qml_dir}", - "{pyside_package_dir}/PySide2/Qt/qml", - filter=None, - recursive=True, - force=False, - dir_filter_function=general_dir_filter, - vars=vars) - - # /translations/* -> /PySide2/Qt/translations - copydir("{qt_translations_dir}", - "{pyside_package_dir}/PySide2/Qt/translations", - filter=["*.qm", "*.pak"], - force=False, - vars=vars) - - def prepare_packages_win32(self, vars): - # For now, debug symbols will not be shipped into the package. - copy_pdbs = False - pdbs = [] - if (self.debug or self.build_type == 'RelWithDebInfo') and copy_pdbs: - pdbs = ['*.pdb'] - # /lib/site-packages/PySide2/* -> /PySide2 - copydir( - "{site_packages_dir}/PySide2", - "{pyside_package_dir}/PySide2", - vars=vars) - built_modules = self.get_built_pyside_config(vars)['built_modules'] - - # /pyside2/PySide2/*.pdb -> /PySide2 - copydir( - "{build_dir}/pyside2/PySide2", - "{pyside_package_dir}/PySide2", - filter=pdbs, - recursive=False, vars=vars) - - # /shiboken2/doc/html/* -> - # /PySide2/docs/shiboken2 - copydir( - "{build_dir}/shiboken2/doc/html", - "{pyside_package_dir}/PySide2/docs/shiboken2", - force=False, vars=vars) - - # /lib/site-packages/shiboken2.pyd -> - # /PySide2/shiboken2.pyd - shiboken_module_name = 'shiboken2.pyd' - shiboken_src_path = "{site_packages_dir}".format(**vars) - maybe_shiboken_names = [f for f in os.listdir(shiboken_src_path) - if re.match(r'shiboken.*\.pyd', f)] - if maybe_shiboken_names: - shiboken_module_name = maybe_shiboken_names[0] - vars.update({'shiboken_module_name': shiboken_module_name}) - copyfile( - "{site_packages_dir}/{shiboken_module_name}", - "{pyside_package_dir}/PySide2/{shiboken_module_name}", - vars=vars) - # @TODO: Fix this .pdb file not to overwrite release - # {shibokengenerator}.pdb file. - # Task-number: PYSIDE-615 - copydir( - "{build_dir}/shiboken2/shibokenmodule", - "{pyside_package_dir}/PySide2", - filter=pdbs, - recursive=False, vars=vars) - - # /lib/site-packages/pyside2uic/* -> - # /pyside2uic - copydir( - "{site_packages_dir}/pyside2uic", - "{pyside_package_dir}/pyside2uic", - force=False, vars=vars) - if sys.version_info[0] > 2: - rmtree("{pyside_package_dir}/pyside2uic/port_v2".format(**vars)) - else: - rmtree("{pyside_package_dir}/pyside2uic/port_v3".format(**vars)) - - # /bin/pyside2-uic -> PySide2/scripts/uic.py - makefile( - "{pyside_package_dir}/PySide2/scripts/__init__.py", - vars=vars) - copyfile( - "{install_dir}/bin/pyside2-uic", - "{pyside_package_dir}/PySide2/scripts/uic.py", - force=False, vars=vars) - - # /bin/*.exe,*.dll,*.pdb -> PySide2/ - copydir( - "{install_dir}/bin/", - "{pyside_package_dir}/PySide2", - filter=["*.exe", "*.dll"], - recursive=False, vars=vars) - # @TODO: Fix this .pdb file not to overwrite release - # {shibokenmodule}.pdb file. - # Task-number: PYSIDE-615 - copydir( - "{build_dir}/shiboken2/generator", - "{pyside_package_dir}/PySide2", - filter=pdbs, - recursive=False, vars=vars) - - # /lib/*.lib -> PySide2/ - copydir( - "{install_dir}/lib/", - "{pyside_package_dir}/PySide2", - filter=["*.lib"], - recursive=False, vars=vars) - - # /share/PySide2/typesystems/* -> - # /PySide2/typesystems - copydir( - "{install_dir}/share/PySide2/typesystems", - "{pyside_package_dir}/PySide2/typesystems", - vars=vars) - - # /include/* -> /PySide2/include - copydir( - "{install_dir}/include", - "{pyside_package_dir}/PySide2/include", - vars=vars) - - # /pyside2/PySide2/support/* -> - # /PySide2/support/* - copydir( - "{build_dir}/pyside2/PySide2/support", - "{pyside_package_dir}/PySide2/support", - vars=vars) - - if not OPTION_NOEXAMPLES: - # examples/* -> /PySide2/examples - copydir(os.path.join(self.script_dir, "examples"), - "{pyside_package_dir}/PySide2/examples", - force=False, vars=vars) - # Re-generate examples Qt resource files for Python 3 - # compatibility - if sys.version_info[0] == 3: - examples_path = "{pyside_package_dir}/PySide2/examples".format( - **vars) - pyside_rcc_path = "{install_dir}/bin/pyside2-rcc".format( - **vars) - pyside_rcc_options = '-py3' - regenerate_qt_resources(examples_path, pyside_rcc_path, - pyside_rcc_options) - - # /* -> /PySide2/openssl - copydir("{ssl_libs_dir}", "{pyside_package_dir}/PySide2/openssl", - filter=[ - "libeay32.dll", - "ssleay32.dll"], - force=False, vars=vars) - - # /bin/*.dll and Qt *.exe -> /PySide2 - qt_artifacts_permanent = [ - "opengl*.dll", - "d3d*.dll", - "libEGL*.dll", - "libGLESv2*.dll", - "designer.exe", - "linguist.exe", - "lrelease.exe", - "lupdate.exe", - "lconvert.exe", - "qtdiag.exe" - ] - copydir("{qt_bin_dir}", "{pyside_package_dir}/PySide2", - filter=qt_artifacts_permanent, - recursive=False, vars=vars) - - # /bin/*.dll and Qt *.pdbs -> /PySide2 part two - # File filter to copy only debug or only release files. - qt_dll_patterns = ["Qt5*{}.dll", "lib*{}.dll"] - if copy_pdbs: - qt_dll_patterns += ["Qt5*{}.pdb", "lib*{}.pdb"] - def qt_build_config_filter(patterns, file_name, file_full_path): - release = [a.format('') for a in patterns] - debug = [a.format('d') for a in patterns] - - # If qt is not a debug_and_release build, that means there - # is only one set of shared libraries, so we can just copy - # them. - if qtinfo.build_type != 'debug_and_release': - if filter_match(file_name, release): - return True - return False - - # In debug_and_release case, choosing which files to copy - # is more difficult. We want to copy only the files that - # match the PySide2 build type. So if PySide2 is built in - # debug mode, we want to copy only Qt debug libraries - # (ending with "d.dll"). Or vice versa. The problem is that - # some libraries have "d" as the last character of the - # actual library name (for example Qt5Gamepad.dll and - # Qt5Gamepadd.dll). So we can't just match a pattern ending - # in "d". Instead we check if there exists a file with the - # same name plus an additional "d" at the end, and using - # that information we can judge if the currently processed - # file is a debug or release file. - - # e.g. ["Qt5Cored", ".dll"] - file_split = os.path.splitext(file_name) - file_base_name = file_split[0] - file_ext = file_split[1] - # e.g. "/home/work/qt/qtbase/bin" - file_path_dir_name = os.path.dirname(file_full_path) - # e.g. "Qt5Coredd" - maybe_debug_name = file_base_name + 'd' - if self.debug: - filter = debug - def predicate(path): return not os.path.exists(path) - else: - filter = release - def predicate(path): return os.path.exists(path) - # e.g. "/home/work/qt/qtbase/bin/Qt5Coredd.dll" - other_config_path = os.path.join(file_path_dir_name, - maybe_debug_name + file_ext) - - if (filter_match(file_name, filter) and - predicate(other_config_path)): - return True - return False - - qt_dll_filter = functools.partial(qt_build_config_filter, - qt_dll_patterns) - copydir("{qt_bin_dir}", "{pyside_package_dir}/PySide2", - file_filter_function=qt_dll_filter, - recursive=False, vars=vars) - - # /plugins/* -> /PySide2/plugins - plugin_dll_patterns = ["*{}.dll"] - pdb_pattern = "*{}.pdb" - if copy_pdbs: - plugin_dll_patterns += [pdb_pattern] - plugin_dll_filter = functools.partial(qt_build_config_filter, - plugin_dll_patterns) - copydir("{qt_plugins_dir}", "{pyside_package_dir}/PySide2/plugins", - file_filter_function=plugin_dll_filter, - vars=vars) - - # /translations/* -> /PySide2/translations - copydir("{qt_translations_dir}", - "{pyside_package_dir}/PySide2/translations", - filter=["*.qm", "*.pak"], - force=False, - vars=vars) - - # /qml/* -> /PySide2/qml - qml_dll_patterns = ["*{}.dll"] - qml_ignore_patterns = qml_dll_patterns + [pdb_pattern] - # Remove the "{}" from the patterns - qml_ignore = [a.format('') for a in qml_ignore_patterns] - if copy_pdbs: - qml_dll_patterns += [pdb_pattern] - qml_ignore = [a.format('') for a in qml_dll_patterns] - qml_dll_filter = functools.partial(qt_build_config_filter, - qml_dll_patterns) - copydir("{qt_qml_dir}", "{pyside_package_dir}/PySide2/qml", - ignore=qml_ignore, - force=False, - recursive=True, - vars=vars) - copydir("{qt_qml_dir}", "{pyside_package_dir}/PySide2/qml", - file_filter_function=qml_dll_filter, - force=False, - recursive=True, - vars=vars) - - if self.is_webengine_built(built_modules): - copydir("{qt_prefix_dir}/resources", - "{pyside_package_dir}/PySide2/resources", - filter=None, - recursive=False, - vars=vars) - - filter = 'QtWebEngineProcess{}.exe'.format( - 'd' if self.debug else '') - copydir("{qt_bin_dir}", - "{pyside_package_dir}/PySide2", - filter=[filter], - recursive=False, vars=vars) - - # Copy the qt.conf file to prefix dir. - copyfile( - "{build_dir}/pyside2/PySide2/qt.conf", - "{pyside_package_dir}/PySide2", - vars=vars) - - self.prepare_standalone_clang(is_win=True) - - # pdb files for libshiboken and libpyside - copydir( - "{build_dir}/shiboken2/libshiboken", - "{pyside_package_dir}/PySide2", - filter=pdbs, - recursive=False, vars=vars) - copydir( - "{build_dir}/pyside2/libpyside", - "{pyside_package_dir}/PySide2", - filter=pdbs, - recursive=False, vars=vars) - - def prepare_standalone_clang(self, is_win = False): - """ - Copies the libclang library to the pyside package so that - shiboken executable works. - """ - log.info('Finding path to the libclang shared library.') - cmake_cmd = [ - OPTION_CMAKE, - "-L", # Lists variables - "-N", # Just inspects the cache (faster) - "--build", # Specifies the build dir - self.shiboken_build_dir - ] - out = run_process_output(cmake_cmd) - lines = [s.strip() for s in out] - pattern = re.compile(r"CLANG_LIBRARY:FILEPATH=(.+)$") - - clang_lib_path = None - for line in lines: - match = pattern.search(line) - if match: - clang_lib_path = match.group(1) - break - - if not clang_lib_path: - raise RuntimeError("Could not finding location of libclang " - "library from CMake cache.") - - if is_win: - # clang_lib_path points to the static import library - # (lib/libclang.lib), whereas we want to copy the shared - # library (bin/libclang.dll). - clang_lib_path = re.sub(r'lib/libclang.lib$', 'bin/libclang.dll', - clang_lib_path) - - # Path to directory containing clang. - clang_lib_dir = os.path.dirname(clang_lib_path) - - # The name of the clang file found by CMake. - basename = os.path.basename(clang_lib_path) - - # We want to copy the library and all the symlinks for now, - # thus the wildcard. - clang_filter = basename + "*" - - # Destination is the package folder near the other extension - # modules. - destination_dir = "{}/PySide2".format(os.path.join(self.script_dir, - 'pyside_package')) - if os.path.exists(clang_lib_path): - log.info('Copying libclang shared library to the pyside package.') - - copydir(clang_lib_dir, destination_dir, - filter=[clang_filter], - recursive=False) - else: - raise RuntimeError("Error copying libclang library " - "from {} to {}. ".format( - clang_lib_path, destination_dir)) - - def update_rpath(self, package_path, executables): - if sys.platform.startswith('linux'): - pyside_libs = [lib for lib in os.listdir( - package_path) if filter_match(lib, ["*.so", "*.so.*"])] - - patchelf_path = os.path.join(self.script_dir, "patchelf") - - def rpath_cmd(srcpath): - final_rpath = '' - # Command line rpath option takes precedence over - # automatically added one. - if OPTION_RPATH_VALUES: - final_rpath = OPTION_RPATH_VALUES - else: - # Add rpath values pointing to $ORIGIN and the - # installed qt lib directory. - local_rpath = '$ORIGIN/' - qt_lib_dir = self.qtinfo.libs_dir - if OPTION_STANDALONE: - qt_lib_dir = "$ORIGIN/Qt/lib" - final_rpath = local_rpath + ':' + qt_lib_dir - cmd = [patchelf_path, '--set-rpath', final_rpath, srcpath] - if run_process(cmd) != 0: - raise RuntimeError("Error patching rpath in " + srcpath) - - elif sys.platform == 'darwin': - pyside_libs = [lib for lib in os.listdir( - package_path) if filter_match(lib, ["*.so", "*.dylib"])] - def rpath_cmd(srcpath): - final_rpath = '' - # Command line rpath option takes precedence over - # automatically added one. - if OPTION_RPATH_VALUES: - final_rpath = OPTION_RPATH_VALUES - else: - if OPTION_STANDALONE: - final_rpath = "@loader_path/Qt/lib" - else: - final_rpath = self.qtinfo.libs_dir - macos_fix_rpaths_for_library(srcpath, final_rpath) - - else: - raise RuntimeError('Not configured for platform ' + - sys.platform) - - pyside_libs.extend(executables) - - # Update rpath in PySide2 libs - for srcname in pyside_libs: - srcpath = os.path.join(package_path, srcname) - if os.path.isdir(srcpath) or os.path.islink(srcpath): - continue - if not os.path.exists(srcpath): - continue - rpath_cmd(srcpath) - print("Patched rpath to '$ORIGIN/' (Linux) or " - "updated rpath (OS/X) in {}.".format(srcpath)) - - -try: - with open(os.path.join(script_dir, 'README.rst')) as f: - README = f.read() - with open(os.path.join(script_dir, 'CHANGES.rst')) as f: - CHANGES = f.read() -except IOError: - README = CHANGES = '' - - -cmd_class_dict = { - 'build': pyside_build, - 'build_py': pyside_build_py, - 'build_ext': pyside_build_ext, - 'bdist_egg': pyside_bdist_egg, - 'develop': pyside_develop, - 'install': pyside_install, - 'install_lib': pyside_install_lib -} -if wheel_module_exists: - cmd_class_dict['bdist_wheel'] = pyside_build_wheel - setup( name = "PySide2", version = get_package_version(), diff --git a/testing/runner.py b/testing/runner.py index 6c3eef388..945e32469 100644 --- a/testing/runner.py +++ b/testing/runner.py @@ -1,9 +1,9 @@ ############################################################################# ## -## Copyright (C) 2017 The Qt Company Ltd. +## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of the Qt for Python project. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage @@ -51,7 +51,16 @@ from textwrap import dedent from .buildlog import builds from .helper import decorate, PY3, TimeoutExpired -sys.path.append('..') +# Get the dir path to the utils module +try: + this_file = __file__ +except NameError: + this_file = sys.argv[0] +this_file = os.path.abspath(this_file) +this_dir = os.path.dirname(this_file) +build_scripts_dir = os.path.abspath(os.path.join(this_dir, '../build_scripts')) + +sys.path.append(build_scripts_dir) from utils import detectClang class TestRunner(object): diff --git a/utils.py b/utils.py deleted file mode 100644 index da4061fac..000000000 --- a/utils.py +++ /dev/null @@ -1,1075 +0,0 @@ -############################################################################# -## -## Copyright (C) 2017 The Qt Company Ltd. -## Contact: https://www.qt.io/licensing/ -## -## This file is part of PySide2. -## -## $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 The Qt Company. For licensing terms -## and conditions see https://www.qt.io/terms-conditions. For further -## information use the contact form at https://www.qt.io/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 3 as published by the Free Software -## Foundation and appearing in the file LICENSE.LGPL3 included in the -## packaging of this file. Please review the following information to -## ensure the GNU Lesser General Public License version 3 requirements -## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. -## -## GNU General Public License Usage -## Alternatively, this file may be used under the terms of the GNU -## General Public License version 2.0 or (at your option) the GNU General -## Public license version 3 or any later version approved by the KDE Free -## Qt Foundation. The licenses are as published by the Free Software -## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 -## included in the packaging of this file. Please review the following -## information to ensure the GNU General Public License requirements will -## be met: https://www.gnu.org/licenses/gpl-2.0.html and -## https://www.gnu.org/licenses/gpl-3.0.html. -## -## $QT_END_LICENSE$ -## -############################################################################# - -import sys -import os -import re -import stat -import errno -import time -import shutil -import subprocess -import fnmatch -import glob -import itertools -import popenasync -import glob - -# There is no urllib.request in Python2 -try: - import urllib.request as urllib -except ImportError: - import urllib - -from distutils import log -from distutils.errors import DistutilsOptionError -from distutils.errors import DistutilsSetupError -from distutils.spawn import spawn -from distutils.spawn import DistutilsExecError - -try: - WindowsError -except NameError: - WindowsError = None - - -def has_option(name): - try: - sys.argv.remove("--{}".format(name)) - return True - except ValueError: - pass - return False - - -def option_value(name): - for index, option in enumerate(sys.argv): - if option == '--' + name: - if index+1 >= len(sys.argv): - raise DistutilsOptionError("The option {} requires a " - "value".format(option)) - value = sys.argv[index+1] - sys.argv[index:index+2] = [] - return value - if option.startswith('--' + name + '='): - value = option[len(name)+3:] - sys.argv[index:index+1] = [] - return value - env_val = os.getenv(name.upper().replace('-', '_')) - return env_val - - -def filter_match(name, patterns): - for pattern in patterns: - if pattern is None: - continue - if fnmatch.fnmatch(name, pattern): - return True - return False - - -def update_env_path(newpaths): - paths = os.environ['PATH'].lower().split(os.pathsep) - for path in newpaths: - if not path.lower() in paths: - log.info("Inserting path '{}' to environment".format(path)) - paths.insert(0, path) - os.environ['PATH'] = path + os.pathsep + os.environ['PATH'] - - -def winsdk_setenv(platform_arch, build_type): - from distutils.msvc9compiler import VERSION as MSVC_VERSION - from distutils.msvc9compiler import Reg - from distutils.msvc9compiler import HKEYS - from distutils.msvc9compiler import WINSDK_BASE - - sdk_version_map = { - "v6.0a": 9.0, - "v6.1": 9.0, - "v7.0": 9.0, - "v7.0a": 10.0, - "v7.1": 10.0 - } - - log.info("Searching Windows SDK with MSVC compiler version {}".format( - MSVC_VERSION)) - setenv_paths = [] - for base in HKEYS: - sdk_versions = Reg.read_keys(base, WINSDK_BASE) - if sdk_versions: - for sdk_version in sdk_versions: - installationfolder = Reg.get_value(WINSDK_BASE + "\\" + - sdk_version, "installationfolder") - productversion = Reg.get_value(WINSDK_BASE + "\\" + - sdk_version, "productversion") - setenv_path = os.path.join(installationfolder, os.path.join( - 'bin', 'SetEnv.cmd')) - if not os.path.exists(setenv_path): - continue - if not sdk_version in sdk_version_map: - continue - if sdk_version_map[sdk_version] != MSVC_VERSION: - continue - setenv_paths.append(setenv_path) - if len(setenv_paths) == 0: - raise DistutilsSetupError( - "Failed to find the Windows SDK with MSVC compiler " - "version {}".format(MSVC_VERSION)) - for setenv_path in setenv_paths: - log.info("Found {}".format(setenv_path)) - - # Get SDK env (use latest SDK version installed on system) - setenv_path = setenv_paths[-1] - log.info("Using {} ".format(setenv_path)) - build_arch = "/x86" if platform_arch.startswith("32") else "/x64" - build_type = "/Debug" if build_type.lower() == "debug" else "/Release" - setenv_cmd = [setenv_path, build_arch, build_type] - setenv_env = get_environment_from_batch_command(setenv_cmd) - setenv_env_paths = os.pathsep.join([setenv_env[k] for k in setenv_env if k.upper() == 'PATH']).split(os.pathsep) - setenv_env_without_paths = dict([(k, setenv_env[k]) for k in setenv_env if k.upper() != 'PATH']) - - # Extend os.environ with SDK env - log.info("Initializing Windows SDK env...") - update_env_path(setenv_env_paths) - for k in sorted(setenv_env_without_paths): - v = setenv_env_without_paths[k] - log.info("Inserting '{} = {}' to environment".format(k, v)) - os.environ[k] = v - log.info("Done initializing Windows SDK env") - - -def find_vcdir(version): - """ - This is the customized version of - distutils.msvc9compiler.find_vcvarsall method - """ - from distutils.msvc9compiler import VS_BASE - from distutils.msvc9compiler import Reg - from distutils import log - vsbase = VS_BASE % version - try: - productdir = Reg.get_value(r"{}\Setup\VC".format(vsbase), "productdir") - except KeyError: - productdir = None - - # trying Express edition - if productdir is None: - try: - from distutils.msvc9compiler import VSEXPRESS_BASE - except ImportError: - pass - else: - vsbase = VSEXPRESS_BASE % version - try: - productdir = Reg.get_value(r"{}\Setup\VC".format(vsbase), - "productdir") - except KeyError: - productdir = None - log.debug("Unable to find productdir in registry") - - if not productdir or not os.path.isdir(productdir): - toolskey = "VS%0.f0COMNTOOLS" % version - toolsdir = os.environ.get(toolskey, None) - - if toolsdir and os.path.isdir(toolsdir): - productdir = os.path.join(toolsdir, os.pardir, os.pardir, "VC") - productdir = os.path.abspath(productdir) - if not os.path.isdir(productdir): - log.debug("{} is not a valid directory".format(productdir)) - return None - else: - log.debug("Env var {} is not set or invalid".format(toolskey)) - if not productdir: - log.debug("No productdir found") - return None - return productdir - - -def init_msvc_env(platform_arch, build_type): - from distutils.msvc9compiler import VERSION as MSVC_VERSION - - log.info("Searching MSVC compiler version {}".format(MSVC_VERSION)) - vcdir_path = find_vcdir(MSVC_VERSION) - if not vcdir_path: - raise DistutilsSetupError( - "Failed to find the MSVC compiler version {} on your " - "system.".formar(MSVC_VERSION)) - else: - log.info("Found {}".format(vcdir_path)) - - log.info("Searching MSVC compiler {} environment init script".format( - MSVC_VERSION)) - if platform_arch.startswith("32"): - vcvars_path = os.path.join(vcdir_path, "bin", "vcvars32.bat") - else: - vcvars_path = os.path.join(vcdir_path, "bin", "vcvars64.bat") - if not os.path.exists(vcvars_path): - vcvars_path = os.path.join(vcdir_path, "bin", "amd64", - "vcvars64.bat") - if not os.path.exists(vcvars_path): - vcvars_path = os.path.join(vcdir_path, "bin", "amd64", - "vcvarsamd64.bat") - - if not os.path.exists(vcvars_path): - # MSVC init script not found, try to find and init Windows SDK env - log.error("Failed to find the MSVC compiler environment init script " - "(vcvars.bat) on your system.") - winsdk_setenv(platform_arch, build_type) - return - else: - log.info("Found {}".format(vcvars_path)) - - # Get MSVC env - log.info("Using MSVC {} in {}".format(MSVC_VERSION, vcvars_path)) - msvc_arch = "x86" if platform_arch.startswith("32") else "amd64" - log.info("Getting MSVC env for {} architecture".format(msvc_arch)) - vcvars_cmd = [vcvars_path, msvc_arch] - msvc_env = get_environment_from_batch_command(vcvars_cmd) - msvc_env_paths = os.pathsep.join([msvc_env[k] for k in msvc_env if k.upper() == 'PATH']).split(os.pathsep) - msvc_env_without_paths = dict([(k, msvc_env[k]) for k in msvc_env if k.upper() != 'PATH']) - - # Extend os.environ with MSVC env - log.info("Initializing MSVC env...") - update_env_path(msvc_env_paths) - for k in sorted(msvc_env_without_paths): - v = msvc_env_without_paths[k] - log.info("Inserting '{} = {}' to environment".format(k, v)) - os.environ[k] = v - log.info("Done initializing MSVC env") - - -def copyfile(src, dst, force=True, vars=None, force_copy_symlink=False): - if vars is not None: - src = src.format(**vars) - dst = dst.format(**vars) - - if not os.path.exists(src) and not force: - log.info("**Skiping copy file {} to {}. " - "Source does not exists.".format(src, dst)) - return - - if not os.path.islink(src) or force_copy_symlink: - log.info("Copying file {} to {}.".format(src, dst)) - shutil.copy2(src, dst) - else: - linkTargetPath = os.path.realpath(src) - if os.path.dirname(linkTargetPath) == os.path.dirname(src): - linkTarget = os.path.basename(linkTargetPath) - linkName = os.path.basename(src) - currentDirectory = os.getcwd() - try: - targetDir = dst if os.path.isdir(dst) else os.path.dirname(dst) - os.chdir(targetDir) - if os.path.exists(linkName): - os.remove(linkName) - log.info("Symlinking {} -> {} in {}.".format(linkName, - linkTarget, targetDir)) - os.symlink(linkTarget, linkName) - except OSError: - log.error("{} -> {}: Error creating symlink".format(linkName, - linkTarget)) - finally: - os.chdir(currentDirectory) - else: - log.error("{} -> {}: Can only create symlinks within the same " - "directory".format(src, linkTargetPath)) - - return dst - - -def makefile(dst, content=None, vars=None): - if vars is not None: - if content is not None: - content = content.format(**vars) - dst = dst.format(**vars) - - log.info("Making file {}.".format(dst)) - - dstdir = os.path.dirname(dst) - if not os.path.exists(dstdir): - os.makedirs(dstdir) - - f = open(dst, "wt") - if content is not None: - f.write(content) - f.close() - - -def copydir(src, dst, filter=None, ignore=None, force=True, recursive=True, - vars=None, dir_filter_function=None, file_filter_function=None, - force_copy_symlinks=False): - - if vars is not None: - src = src.format(**vars) - dst = dst.format(**vars) - if filter is not None: - for i in range(len(filter)): - filter[i] = filter[i].format(**vars) - if ignore is not None: - for i in range(len(ignore)): - ignore[i] = ignore[i].format(**vars) - - if not os.path.exists(src) and not force: - log.info("**Skiping copy tree {} to {}. Source does not exists. " - "filter={}. ignore={}.".format(src, dst, filter, ignore)) - return [] - - log.info("Copying tree {} to {}. filter={}. ignore={}.".format(src, dst, - filter, ignore)) - - names = os.listdir(src) - - results = [] - errors = [] - for name in names: - srcname = os.path.join(src, name) - dstname = os.path.join(dst, name) - try: - if os.path.isdir(srcname): - if (dir_filter_function and - not dir_filter_function(name, src, srcname)): - continue - if recursive: - results.extend( - copydir(srcname, dstname, filter, ignore, force, - recursive, vars, dir_filter_function, - file_filter_function, force_copy_symlinks)) - else: - if ((file_filter_function is not None and - not file_filter_function(name, srcname)) or - (filter is not None and - not filter_match(name, filter)) or - (ignore is not None and filter_match(name, ignore))): - continue - if not os.path.exists(dst): - os.makedirs(dst) - results.append(copyfile(srcname, dstname, True, vars, - force_copy_symlinks)) - # catch the Error from the recursive copytree so that we can - # continue with other files - except shutil.Error as err: - errors.extend(err.args[0]) - except EnvironmentError as why: - errors.append((srcname, dstname, str(why))) - try: - if os.path.exists(dst): - shutil.copystat(src, dst) - except OSError as why: - if WindowsError is not None and isinstance(why, WindowsError): - # Copying file access times may fail on Windows - pass - else: - errors.extend((src, dst, str(why))) - if errors: - raise EnvironmentError(errors) - return results - - -def rmtree(dirname): - def handleRemoveReadonly(func, path, exc): - excvalue = exc[1] - if func in (os.rmdir, os.remove) and excvalue.errno == errno.EACCES: - os.chmod(path, stat.S_IRWXU| stat.S_IRWXG| stat.S_IRWXO) # 0777 - func(path) - else: - raise - shutil.rmtree(dirname, ignore_errors=False, onerror=handleRemoveReadonly) - -def run_process_output(args, initial_env=None): - if initial_env is None: - initial_env = os.environ - stdOut = subprocess.Popen(args, env = initial_env, universal_newlines = 1, - stdout=subprocess.PIPE).stdout - result = [] - for rawLine in stdOut.readlines(): - line = rawLine if sys.version_info >= (3,) else rawLine.decode('utf-8') - result.append(line.rstrip()) - return result - -def run_process(args, initial_env=None): - def _log(buffer, checkNewLine=False): - endsWithNewLine = False - if buffer.endswith('\n'): - endsWithNewLine = True - if checkNewLine and buffer.find('\n') == -1: - return buffer - lines = buffer.splitlines() - buffer = '' - if checkNewLine and not endsWithNewLine: - buffer = lines[-1] - lines = lines[:-1] - for line in lines: - log.info(line.rstrip('\r')) - return buffer - _log("Running process in {0}: {1}".format(os.getcwd(), - " ".join([(" " in x and '"{0}"'.format(x) or x) for x in args]))) - - if sys.platform != "win32": - try: - spawn(args) - return 0 - except DistutilsExecError: - return -1 - - shell = False - if sys.platform == "win32": - shell = True - - if initial_env is None: - initial_env = os.environ - - proc = popenasync.Popen(args, - stdin = subprocess.PIPE, - stdout = subprocess.PIPE, - stderr = subprocess.STDOUT, - universal_newlines = 1, - shell = shell, - env = initial_env) - - log_buffer = None; - while proc.poll() is None: - log_buffer = _log(proc.read_async(wait=0.1, e=0)) - if log_buffer: - _log(log_buffer) - - proc.wait() - return proc.returncode - - -def get_environment_from_batch_command(env_cmd, initial=None): - """ - Take a command (either a single command or list of arguments) - and return the environment created after running that command. - Note that if the command must be a batch file or .cmd file, or the - changes to the environment will not be captured. - - If initial is supplied, it is used as the initial environment passed - to the child process. - """ - - def validate_pair(ob): - try: - if not (len(ob) == 2): - print("Unexpected result: {}".format(ob)) - raise ValueError - except: - return False - return True - - def consume(iter): - try: - while True: next(iter) - except StopIteration: - pass - - if not isinstance(env_cmd, (list, tuple)): - env_cmd = [env_cmd] - # construct the command that will alter the environment - env_cmd = subprocess.list2cmdline(env_cmd) - # create a tag so we can tell in the output when the proc is done - tag = 'Done running command' - # construct a cmd.exe command to do accomplish this - cmd = 'cmd.exe /E:ON /V:ON /s /c "{} && echo "{}" && set"'.format(env_cmd, - tag) - # launch the process - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, env=initial) - # parse the output sent to stdout - lines = proc.stdout - if sys.version_info[0] > 2: - # make sure the lines are strings - make_str = lambda s: s.decode() - lines = map(make_str, lines) - # consume whatever output occurs until the tag is reached - consume(itertools.takewhile(lambda l: tag not in l, lines)) - # define a way to handle each KEY=VALUE line - handle_line = lambda l: l.rstrip().split('=',1) - # parse key/values into pairs - pairs = map(handle_line, lines) - # make sure the pairs are valid - valid_pairs = filter(validate_pair, pairs) - # construct a dictionary of the pairs - result = dict(valid_pairs) - # let the process finish - proc.communicate() - return result - - -def regenerate_qt_resources(src, pyside_rcc_path, pyside_rcc_options): - names = os.listdir(src) - for name in names: - srcname = os.path.join(src, name) - if os.path.isdir(srcname): - regenerate_qt_resources(srcname, - pyside_rcc_path, - pyside_rcc_options) - elif srcname.endswith('.qrc'): - # Replace last occurence of '.qrc' in srcname - srcname_split = srcname.rsplit('.qrc', 1) - dstname = '_rc.py'.join(srcname_split) - if os.path.exists(dstname): - log.info('Regenerating {} from {}'.format(dstname, - os.path.basename(srcname))) - run_process([pyside_rcc_path, - pyside_rcc_options, - srcname, '-o', dstname]) - - -def back_tick(cmd, ret_err=False): - """ - Run command `cmd`, return stdout, or stdout, stderr, - return_code if `ret_err` is True. - - Roughly equivalent to ``check_output`` in Python 2.7 - - Parameters - ---------- - cmd : str - command to execute - ret_err : bool, optional - If True, return stderr and return_code in addition to stdout. - If False, just return stdout - - Returns - ------- - out : str or tuple - If `ret_err` is False, return stripped string containing stdout from - `cmd`. - If `ret_err` is True, return tuple of (stdout, stderr, return_code) - where ``stdout`` is the stripped stdout, and ``stderr`` is the stripped - stderr, and ``return_code`` is the process exit code. - - Raises - ------ - Raises RuntimeError if command returns non-zero exit code when ret_err - isn't set. - """ - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, - stderr=subprocess.PIPE, shell=True) - out, err = proc.communicate() - if not isinstance(out, str): - # python 3 - out = out.decode() - err = err.decode() - retcode = proc.returncode - if retcode is None and not ret_err: - proc.terminate() - raise RuntimeError(cmd + ' process did not terminate') - if retcode != 0 and not ret_err: - raise RuntimeError("{} process returned code {}\n*** {}".format( - (cmd, retcode, err))) - out = out.strip() - if not ret_err: - return out - return out, err.strip(), retcode - - -MACOS_OUTNAME_RE = re.compile(r'\(compatibility version [\d.]+, current version ' - '[\d.]+\)') - -def macos_get_install_names(libpath): - """ - Get macOS library install names from library `libpath` using ``otool`` - - Parameters - ---------- - libpath : str - path to library - - Returns - ------- - install_names : list of str - install names in library `libpath` - """ - out = back_tick('otool -L ' + libpath) - libs = [line for line in out.split('\n')][1:] - return [MACOS_OUTNAME_RE.sub('', lib).strip() for lib in libs] - - -MACOS_RPATH_RE = re.compile(r"path (.+) \(offset \d+\)") - -def macos_get_rpaths(libpath): - """ Get rpath load commands from library `libpath` using ``otool`` - - Parameters - ---------- - libpath : str - path to library - - Returns - ------- - rpaths : list of str - rpath values stored in ``libpath`` - - Notes - ----- - See ``man dyld`` for more information on rpaths in libraries - """ - lines = back_tick('otool -l ' + libpath).split('\n') - ctr = 0 - rpaths = [] - while ctr < len(lines): - line = lines[ctr].strip() - if line != 'cmd LC_RPATH': - ctr += 1 - continue - assert lines[ctr + 1].strip().startswith('cmdsize') - rpath_line = lines[ctr + 2].strip() - match = MACOS_RPATH_RE.match(rpath_line) - if match is None: - raise RuntimeError('Unexpected path line: ' + rpath_line) - rpaths.append(match.groups()[0]) - ctr += 3 - return rpaths - - -def macos_fix_rpaths_for_library(library_path, qt_lib_dir): - """ Adds required rpath load commands to given library. - - This is a necessary post-installation step, to allow loading PySide - modules without setting DYLD_LIBRARY_PATH or DYLD_FRAMEWORK_PATH. - The CMake rpath commands which are added at build time are used only - for testing (make check), and they are stripped once the equivalent - of make install is executed (except for shiboken, which currently - uses CMAKE_INSTALL_RPATH_USE_LINK_PATH, which might be necessary to - remove in the future). - - Parameters - ---------- - library_path : str - path to library for which to set rpaths. - qt_lib_dir : str - rpath to installed Qt lib directory. - """ - - install_names = macos_get_install_names(library_path) - existing_rpath_commands = macos_get_rpaths(library_path) - - needs_loader_path = False - for install_name in install_names: - # Absolute path, skip it. - if install_name[0] == '/': - continue - - # If there are dynamic library install names that contain - # @rpath tokens, we will provide an rpath load command with the - # value of "@loader_path". This will allow loading dependent - # libraries from within the same directory as 'library_path'. - if install_name[0] == '@': - needs_loader_path = True - break - - if needs_loader_path and "@loader_path" not in existing_rpath_commands: - back_tick('install_name_tool -add_rpath {rpath} {library_path}'.format( - rpath="@loader_path", library_path=library_path)) - - # If the library depends on a Qt library, add an rpath load comment - # pointing to the Qt lib directory. - macos_add_qt_rpath(library_path, qt_lib_dir, existing_rpath_commands, - install_names) - -def macos_add_qt_rpath(library_path, qt_lib_dir, - existing_rpath_commands = [], library_dependencies = []): - """ - Adds an rpath load command to the Qt lib directory if necessary - - Checks if library pointed to by 'library_path' has Qt dependencies, - and adds an rpath load command that points to the Qt lib directory - (qt_lib_dir). - """ - if not existing_rpath_commands: - existing_rpath_commands = macos_get_rpaths(library_path) - - # Return early if qt rpath is already present. - if qt_lib_dir in existing_rpath_commands: - return - - # Check if any library dependencies are Qt libraries (hacky). - if not library_dependencies: - library_dependencies = macos_get_install_names(library_path) - - needs_qt_rpath = False - for library in library_dependencies: - if 'Qt' in library: - needs_qt_rpath = True - break - - if needs_qt_rpath: - back_tick('install_name_tool -add_rpath {rpath} {library_path}'.format( - rpath=qt_lib_dir, library_path=library_path)) - -# Find an executable specified by a glob pattern ('foo*') in the OS path -def findGlobInPath(pattern): - result = [] - if sys.platform == 'win32': - pattern += '.exe' - - for path in os.environ.get('PATH', '').split(os.pathsep): - for match in glob.glob(os.path.join(path, pattern)): - result.append(match) - return result - -# Locate the most recent version of llvmConfig in the path. -def findLlvmConfig(): - versionRe = re.compile('(\d+)\.(\d+)\.(\d+)') - result = None - lastVersionString = '000000' - for llvmConfig in findGlobInPath('llvm-config*'): - try: - output = run_process_output([llvmConfig, '--version']) - if output: - match = versionRe.match(output[0]) - if match: - versionString = '%02d%02d%02d' % (int(match.group(1)), - int(match.group(2)), int(match.group(3))) - if (versionString > lastVersionString): - result = llvmConfig - lastVersionString = versionString - except OSError: - pass - return result - -# Add Clang to path for Windows for the shiboken ApiExtractor tests. -# Revisit once Clang is bundled with Qt. -def detectClang(): - source = 'LLVM_INSTALL_DIR' - clangDir = os.environ.get(source, None) - if not clangDir: - source = 'CLANG_INSTALL_DIR' - clangDir = os.environ.get(source, None) - if not clangDir: - source = findLlvmConfig() - try: - if source is not None: - output = run_process_output([source, '--prefix']) - if output: - clangDir = output[0] - except OSError: - pass - if clangDir: - arch = '64' if sys.maxsize > 2**31-1 else '32' - clangDir = clangDir.replace('_ARCH_', arch) - return (clangDir, source) - -def download_and_extract_7z(fileurl, target): - """ Downloads 7z file from fileurl and extract to target """ - print("Downloading fileUrl {} ".format(fileurl)) - info = "" - try: - localfile, info = urllib.urlretrieve(fileurl) - except: - print("Error downloading {} : {}".format(fileurl, info)) - raise RuntimeError(' Error downloading {}'.format(fileurl)) - - try: - outputDir = "-o" + target - print("calling 7z x {} {}".format(localfile, outputDir)) - subprocess.call(["7z", "x", "-y", localfile, outputDir]) - except: - raise RuntimeError(' Error extracting {}'.format(localfile)) - -def split_and_strip(input): - lines = [s.strip() for s in input.splitlines()] - return lines - -def ldd_get_dependencies(executable_path): - """ - Returns a dictionary of dependencies that `executable_path` - depends on. - - The keys are library names and the values are the library paths. - - """ - output = ldd(executable_path) - lines = split_and_strip(output) - pattern = re.compile(r"\s*(.*?)\s+=>\s+(.*?)\s+\(.*\)") - dependencies = {} - for line in lines: - match = pattern.search(line) - if match: - dependencies[match.group(1)] = match.group(2) - return dependencies - -def ldd_get_paths_for_dependencies(dependencies_regex, executable_path = None, - dependencies = None): - """ - Returns file paths to shared library dependencies that match given - `dependencies_regex` against given `executable_path`. - - The function retrieves the list of shared library dependencies using - ld.so for the given `executable_path` in order to search for - libraries that match the `dependencies_regex`, and then returns a - list of absolute paths of the matching libraries. - - If no matching library is found in the list of dependencies, - an empty list is returned. - """ - - if not dependencies and not executable_path: - return None - - if not dependencies: - dependencies = ldd_get_dependencies(executable_path) - - pattern = re.compile(dependencies_regex) - - paths = [] - for key in dependencies: - match = pattern.search(key) - if match: - paths.append(dependencies[key]) - - return paths - -def ldd(executable_path): - """ - Returns ld.so output of shared library dependencies for given - `executable_path`. - - This is a partial port of /usr/bin/ldd from bash to Python. - The dependency list is retrieved by setting the - LD_TRACE_LOADED_OBJECTS=1 environment variable, and executing the - given path via the dynamic loader ld.so. - - Only works on Linux. The port is required to make this work on - systems that might not have ldd. - This is because ldd (on Ubuntu) is shipped in the libc-bin package - that, which might have a - minuscule percentage of not being installed. - - Parameters - ---------- - executable_path : str - path to executable or shared library. - - Returns - ------- - output : str - the raw output retrieved from the dynamic linker. - """ - - chosen_rtld = None - # List of ld's considered by ldd on Ubuntu (here's hoping it's the - # same on all distros). - rtld_list = ["/lib/ld-linux.so.2", "/lib64/ld-linux-x86-64.so.2", - "/libx32/ld-linux-x32.so.2"] - - # Choose appropriate runtime dynamic linker. - for rtld in rtld_list: - if os.path.isfile(rtld) and os.access(rtld, os.X_OK): - (_, _, code) = back_tick(rtld, True) - # Code 127 is returned by ld.so when called without any - # arguments (some kind of sanity check I guess). - if code == 127: - (_, _, code) = back_tick("{} --verify {}".format(rtld, - executable_path), True) - # Codes 0 and 2 mean given executable_path can be - # understood by ld.so. - if code in [0, 2]: - chosen_rtld = rtld - break - - if not chosen_rtld: - raise RuntimeError("Could not find appropriate ld.so to query " - "for dependencies.") - - # Query for shared library dependencies. - rtld_env = "LD_TRACE_LOADED_OBJECTS=1" - rtld_cmd = "{} {} {}".format(rtld_env, chosen_rtld, executable_path) - (out, _, return_code) = back_tick(rtld_cmd, True) - if return_code == 0: - return out - else: - raise RuntimeError("ld.so failed to query for dependent shared " - "libraries of {} ".format(executable_path)) - -def find_files_using_glob(path, pattern): - """ Returns list of files that matched glob `pattern` in `path`. """ - final_pattern = os.path.join(path, pattern) - maybe_files = glob.glob(final_pattern) - return maybe_files - -def find_qt_core_library_glob(lib_dir): - """ Returns path to the QtCore library found in `lib_dir`. """ - maybe_file = find_files_using_glob(lib_dir, "libQt5Core.so.?") - if len(maybe_file) == 1: - return maybe_file[0] - return None - -# @TODO: Possibly fix ICU library copying on macOS and Windows. -# This would require to implement the equivalent of the custom written -# ldd for the specified platforms. -# This has less priority because ICU libs are not used in the default -# Qt configuration build. -def copy_icu_libs(destination_lib_dir): - """ - Copy ICU libraries that QtCore depends on, - to given `destination_lib_dir`. - """ - qt_core_library_path = find_qt_core_library_glob(destination_lib_dir) - - if not qt_core_library_path or not os.path.exists(qt_core_library_path): - raise RuntimeError('QtCore library does not exist at path: {}. ' - 'Failed to copy ICU libraries.'.format(qt_core_library_path)) - - dependencies = ldd_get_dependencies(qt_core_library_path) - - icu_regex = r"^libicu.+" - icu_compiled_pattern = re.compile(icu_regex) - icu_required = False - for dependency in dependencies: - match = icu_compiled_pattern.search(dependency) - if match: - icu_required = True - break - - if icu_required: - paths = ldd_get_paths_for_dependencies(icu_regex, - dependencies=dependencies) - if not paths: - raise RuntimeError("Failed to find the necessary ICU libraries " - "required by QtCore.") - log.info('Copying the detected ICU libraries required by QtCore.') - - if not os.path.exists(destination_lib_dir): - os.makedirs(destination_lib_dir) - - for path in paths: - basename = os.path.basename(path) - destination = os.path.join(destination_lib_dir, basename) - copyfile(path, destination, force_copy_symlink=True) - # Patch the ICU libraries to contain the $ORIGIN rpath - # value, so that only the local package libraries are used. - linuxSetRPaths(destination, '$ORIGIN') - - # Patch the QtCore library to find the copied over ICU libraries - # (if necessary). - log.info("Checking if QtCore library needs a new rpath to make it " - "work with ICU libs.") - rpaths = linuxGetRPaths(qt_core_library_path) - if not rpaths or not rpathsHasOrigin(rpaths): - log.info('Patching QtCore library to contain $ORIGIN rpath.') - rpaths.insert(0, '$ORIGIN') - new_rpaths_string = ":".join(rpaths) - linuxSetRPaths(qt_core_library_path, new_rpaths_string) - -def linuxSetRPaths(executable_path, rpath_string): - """ Patches the `executable_path` with a new rpath string. """ - - if not hasattr(linuxSetRPaths, "patchelf_path"): - script_dir = os.getcwd() - patchelf_path = os.path.join(script_dir, "patchelf") - setattr(linuxSetRPaths, "patchelf_path", patchelf_path) - - cmd = [linuxSetRPaths.patchelf_path, '--set-rpath', - rpath_string, executable_path] - - if run_process(cmd) != 0: - raise RuntimeError("Error patching rpath in {}".format( - executable_path)) - -def linuxGetRPaths(executable_path): - """ - Returns a list of run path values embedded in the executable or just - an empty list. - """ - - cmd = "readelf -d {}".format(executable_path) - (out, err, code) = back_tick(cmd, True) - if code != 0: - raise RuntimeError("Running `readelf -d {}` failed with error " - "output:\n {}. ".format(executable_path, err)) - lines = split_and_strip(out) - pattern = re.compile(r"^.+?\(RUNPATH\).+?\[(.+?)\]$") - - rpath_line = None - for line in lines: - match = pattern.search(line) - if match: - rpath_line = match.group(1) - break - - rpaths = [] - - if rpath_line: - rpaths = rpath_line.split(':') - - return rpaths - -def rpathsHasOrigin(rpaths): - """ - Return True if the specified list of rpaths has an "$ORIGIN" value - (aka current dir). - """ - if not rpaths: - return False - - pattern = re.compile(r"^\$ORIGIN(/)?$") - for rpath in rpaths: - match = pattern.search(rpath) - if match: - return True - return False - -def memoize(function): - """ - Decorator to wrap a function with a memoizing callable. - It returns cached values when the wrapped function is called with - the same arguments. - """ - memo = {} - def wrapper(*args): - if args in memo: - return memo[args] - else: - rv = function(*args) - memo[args] = rv - return rv - return wrapper - -def get_python_dict(python_script_path): - try: - with open(python_script_path) as f: - python_dict = {} - code = compile(f.read(), python_script_path, 'exec') - exec(code, {}, python_dict) - return python_dict - except IOError as e: - print("get_python_dict: Couldn't get dict from python " - "file: {}.".format(python_script_path)) - raise -- cgit v1.2.3 From a245785dd9d0f1088aa95ca8890eaeab4bdc1432 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 29 Mar 2018 11:31:21 +0200 Subject: Start a tabbed browser example Task-number: PYSIDE-363 Change-Id: Idf7037c1b9efe1ccfce4427a49abc86a6631efa7 Reviewed-by: Alexandru Croitor --- .../tabbedbrowser/bookmarkwidget.py | 267 ++++++++++++++ .../tabbedbrowser/browsertabwidget.py | 220 ++++++++++++ .../tabbedbrowser/downloadwidget.py | 144 ++++++++ .../webenginewidgets/tabbedbrowser/findtoolbar.py | 98 ++++++ examples/webenginewidgets/tabbedbrowser/main.py | 382 +++++++++++++++++++++ .../tabbedbrowser/tabbedbrowser.pyqtc | 6 + .../tabbedbrowser/webengineview.py | 90 +++++ 7 files changed, 1207 insertions(+) create mode 100644 examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py create mode 100644 examples/webenginewidgets/tabbedbrowser/browsertabwidget.py create mode 100644 examples/webenginewidgets/tabbedbrowser/downloadwidget.py create mode 100644 examples/webenginewidgets/tabbedbrowser/findtoolbar.py create mode 100644 examples/webenginewidgets/tabbedbrowser/main.py create mode 100644 examples/webenginewidgets/tabbedbrowser/tabbedbrowser.pyqtc create mode 100644 examples/webenginewidgets/tabbedbrowser/webengineview.py diff --git a/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py b/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py new file mode 100644 index 000000000..ebcb724d3 --- /dev/null +++ b/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py @@ -0,0 +1,267 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the PySide examples of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:BSD$ +## You may use this file under the terms of the BSD license as follows: +## +## "Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions are +## met: +## * Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## * Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in +## the documentation and/or other materials provided with the +## distribution. +## * Neither the name of The Qt Company Ltd nor the names of its +## contributors may be used to endorse or promote products derived +## from this software without specific prior written permission. +## +## +## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +## +## $QT_END_LICENSE$ +## +############################################################################# + +import json, os, warnings + +from PySide2 import QtCore +from PySide2.QtCore import (QDir, QFileInfo, QModelIndex, QStandardPaths, Qt, + QUrl) +from PySide2.QtGui import QIcon, QPixmap, QStandardItem, QStandardItemModel +from PySide2.QtWidgets import (QAction, QDockWidget, QMenu, QMessageBox, + QToolBar, QTreeView, QWidget) + +_urlRole = Qt.UserRole + 1 + +# Default bookmarks as an array of arrays which is the form +# used to read from/write to a .json bookmarks file +_defaultBookMarks = [ + ['Tool Bar'], + ['http://qt.io', 'Qt', ':/qt-project.org/qmessagebox/images/qtlogo-64.png'], + ['https://download.qt.io/snapshots/ci/pyside/', 'Downloads'], + ['https://doc-snapshots.qt.io/qtforpython/', 'Documentation'], + ['https://bugreports.qt.io/projects/PYSIDE/', 'Bug Reports'], + ['https://www.python.org/', 'Python', None], + ['https://wiki.qt.io/PySide2', 'Qt for Python', None], + ['Other Bookmarks'] +] + +def _configDir(): + return '{}/QtForPythonBrowser'.format( + QStandardPaths.writableLocation(QStandardPaths.ConfigLocation)) + +_bookmarkFile = 'bookmarks.json' + +def _createFolderItem(title): + result = QStandardItem(title) + result.setFlags(Qt.ItemIsEnabled | Qt.ItemIsSelectable) + return result + +def _createItem(url, title, icon): + result = QStandardItem(title) + result.setFlags(Qt.ItemIsEnabled | Qt.ItemIsSelectable) + result.setData(url, _urlRole) + if icon is not None: + result.setIcon(icon) + return result + +# Create the model from an array of arrays +def _createModel(parent, serializedBookmarks): + result = QStandardItemModel(0, 1, parent) + lastFolderItem = None + for entry in serializedBookmarks: + if len(entry) == 1: + lastFolderItem = _createFolderItem(entry[0]) + result.appendRow(lastFolderItem) + else: + url = QUrl.fromUserInput(entry[0]) + title = entry[1] + icon = QIcon(entry[2]) if len(entry) > 2 and entry[2] else None + lastFolderItem.appendRow(_createItem(url, title, icon)) + return result + +# Serialize model into an array of arrays, writing out the icons +# into .png files under directory in the process +def _serializeModel(model, directory): + result = [] + folderCount = model.rowCount() + for f in range(0, folderCount): + folderItem = model.item(f) + result.append([folderItem.text()]) + itemCount = folderItem.rowCount() + for i in range(0, itemCount): + item = folderItem.child(i) + entry = [item.data(_urlRole).toString(), item.text()] + icon = item.icon() + if not icon.isNull(): + iconSizes = icon.availableSizes() + largestSize = iconSizes[len(iconSizes) - 1] + iconFileName = '{}/icon{:02}_{:02}_{}.png'.format(directory, + f, i, largestSize.width()) + icon.pixmap(largestSize).save(iconFileName, 'PNG') + entry.append(iconFileName) + result.append(entry) + return result + +# Bookmarks as a tree view to be used in a dock widget with +# functionality to persist and populate tool bars and menus. +class BookmarkWidget(QTreeView): + + openBookmark = QtCore.Signal(QUrl) + openBookmarkInNewTab = QtCore.Signal(QUrl) + changed = QtCore.Signal() + + def __init__(self): + super(BookmarkWidget, self).__init__() + self.setRootIsDecorated(False) + self.setUniformRowHeights(True) + self.setHeaderHidden(True) + self._model = _createModel(self, self._readBookmarks()) + self.setModel(self._model) + self.expandAll() + self.activated.connect(self._activated) + self._model.rowsInserted.connect(self._changed) + self._model.rowsRemoved.connect(self._changed) + self._model.dataChanged.connect(self._changed) + self._modified = False + + def _changed(self): + self._modified = True + self.changed.emit() + + def _activated(self, index): + item = self._model.itemFromIndex(index) + self.openBookmark.emit(item.data(_urlRole)) + + def _actionActivated(self, index): + action = self.sender() + self.openBookmark.emit(action.data()) + + def _toolBarItem(self): + return self._model.item(0, 0) + + def _otherItem(self): + return self._model.item(1, 0) + + def addBookmark(self, url, title, icon): + self._otherItem().appendRow(_createItem(url, title, icon)) + + def addToolBarBookmark(self, url, title, icon): + self._toolBarItem().appendRow(_createItem(url, title, icon)) + + # Synchronize the bookmarks under parentItem to a targetObject + # like QMenu/QToolBar, which has a list of actions. Update + # the existing actions, append new ones if needed or hide + # superfluous ones + def _populateActions(self, parentItem, targetObject, firstAction): + existingActions = targetObject.actions() + existingActionCount = len(existingActions) + a = firstAction + rowCount = parentItem.rowCount() + for r in range(0, rowCount): + item = parentItem.child(r) + title = item.text() + icon = item.icon() + url = item.data(_urlRole) + if a < existingActionCount: + action = existingActions[a] + if (title != action.toolTip()): + action.setText(BookmarkWidget.shortTitle(title)) + action.setIcon(icon) + action.setToolTip(title) + action.setData(url) + action.setVisible(True) + else: + action = targetObject.addAction(icon, BookmarkWidget.shortTitle(title)) + action.setToolTip(title) + action.setData(url) + action.triggered.connect(self._actionActivated) + a = a + 1 + while a < existingActionCount: + existingActions[a].setVisible(False) + a = a + 1 + + def populateToolBar(self, toolBar): + self._populateActions(self._toolBarItem(), toolBar, 0) + + def populateOther(self, menu, firstAction): + self._populateActions(self._otherItem(), menu, firstAction) + + def _currentItem(self): + index = self.currentIndex() + if index.isValid(): + item = self._model.itemFromIndex(index) + if item.parent(): # Exclude top level items + return item + return None + + def contextMenuEvent(self, event): + contextMenu = QMenu() + openInNewTabAction = contextMenu.addAction("Open in New Tab") + removeAction = contextMenu.addAction("Remove...") + currentItem = self._currentItem() + openInNewTabAction.setEnabled(currentItem is not None) + removeAction.setEnabled(currentItem is not None) + chosenAction = contextMenu.exec_(event.globalPos()) + if chosenAction == openInNewTabAction: + self.openBookmarkInNewTab.emit(currentItem.data(_urlRole)) + elif chosenAction == removeAction: + self._removeItem(currentItem) + + def _removeItem(self, item): + button = QMessageBox.question(self, "Remove", + "Would you like to remove \"{}\"?".format(item.text()), + QMessageBox.Yes | QMessageBox.No) + if button == QMessageBox.Yes: + item.parent().removeRow(item.row()) + + def writeBookmarks(self): + if not self._modified: + return + dirPath = _configDir() + nativeDirPath = QDir.toNativeSeparators(dirPath) + dir = QFileInfo(dirPath) + if not dir.isDir(): + print('Creating {}...'.format(nativeDirPath)) + if not QDir(dir.absolutePath()).mkpath(dir.fileName()): + warnings.warn('Cannot create {}.'.format(nativeDirPath), + RuntimeWarning) + return + serializedModel = _serializeModel(self._model, dirPath) + bookmarkFileName = os.path.join(nativeDirPath, _bookmarkFile) + print('Writing {}...'.format(bookmarkFileName)) + with open(bookmarkFileName, 'w') as bookmarkFile: + json.dump(serializedModel, bookmarkFile, indent = 4) + + def _readBookmarks(self): + bookmarkFileName = os.path.join(QDir.toNativeSeparators(_configDir()), + _bookmarkFile) + if os.path.exists(bookmarkFileName): + print('Reading {}...'.format(bookmarkFileName)) + return json.load(open(bookmarkFileName)) + return _defaultBookMarks + + # Return a short title for a bookmark action, + # "Qt | Cross Platform.." -> "Qt" + @staticmethod + def shortTitle(t): + i = t.find(' | ') + if i == -1: + i = t.find(' - ') + return t[0:i] if i != -1 else t diff --git a/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py b/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py new file mode 100644 index 000000000..aa0a30240 --- /dev/null +++ b/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py @@ -0,0 +1,220 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the PySide examples of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:BSD$ +## You may use this file under the terms of the BSD license as follows: +## +## "Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions are +## met: +## * Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## * Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in +## the documentation and/or other materials provided with the +## distribution. +## * Neither the name of The Qt Company Ltd nor the names of its +## contributors may be used to endorse or promote products derived +## from this software without specific prior written permission. +## +## +## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +## +## $QT_END_LICENSE$ +## +############################################################################# + +from functools import partial +import sys + +from bookmarkwidget import BookmarkWidget +from webengineview import WebEngineView +from PySide2 import QtCore +from PySide2.QtCore import QPoint, Qt, QUrl +from PySide2.QtWidgets import (QAction, QMenu, QTabBar, QTabWidget) +from PySide2.QtWebEngineWidgets import (QWebEngineDownloadItem, + QWebEnginePage, QWebEngineProfile) + +class BrowserTabWidget(QTabWidget): + + urlChanged = QtCore.Signal(QUrl) + enabledChanged = QtCore.Signal(QWebEnginePage.WebAction, bool) + downloadRequested = QtCore.Signal(QWebEngineDownloadItem) + + def __init__(self, windowFactoryFunction): + super(BrowserTabWidget, self).__init__() + self.setTabsClosable(True) + self._windowFactoryFunction = windowFactoryFunction + self._webengineviews = [] + self.currentChanged.connect(self._currentChanged) + self.tabCloseRequested.connect(self.handleTabCloseRequest) + self._actionsEnabled = {} + for webAction in WebEngineView.webActions(): + self._actionsEnabled[webAction] = False + + tabBar = self.tabBar() + tabBar.setSelectionBehaviorOnRemove(QTabBar.SelectPreviousTab) + tabBar.setContextMenuPolicy(Qt.CustomContextMenu) + tabBar.customContextMenuRequested.connect(self._handleTabContextMenu) + + def addBrowserTab(self): + factoryFunc = partial(BrowserTabWidget.addBrowserTab, self) + webEngineView = WebEngineView(factoryFunc, self._windowFactoryFunction) + index = self.count() + self._webengineviews.append(webEngineView) + title = 'Tab {}'.format(index + 1) + self.addTab(webEngineView, title) + page = webEngineView.page() + page.titleChanged.connect(self._titleChanged) + page.iconChanged.connect(self._iconChanged) + page.profile().downloadRequested.connect(self._downloadRequested) + webEngineView.urlChanged.connect(self._urlChanged) + webEngineView.enabledChanged.connect(self._enabledChanged) + self.setCurrentIndex(index) + return webEngineView + + def load(self, url): + index = self.currentIndex() + if index >= 0 and url.isValid(): + self._webengineviews[index].setUrl(url) + + def find(self, needle, flags): + index = self.currentIndex() + if index >= 0: + self._webengineviews[index].page().findText(needle, flags) + + def url(self): + index = self.currentIndex() + return self._webengineviews[index].url() if index >= 0 else QUrl() + + def _urlChanged(self, url): + index = self.currentIndex() + if index >= 0 and self._webengineviews[index] == self.sender(): + self.urlChanged.emit(url) + + def _titleChanged(self, title): + index = self._indexOfPage(self.sender()) + if (index >= 0): + self.setTabText(index, BookmarkWidget.shortTitle(title)) + + def _iconChanged(self, icon): + index = self._indexOfPage(self.sender()) + if (index >= 0): + self.setTabIcon(index, icon) + + def _enabledChanged(self, webAction, enabled): + index = self.currentIndex() + if index >= 0 and self._webengineviews[index] == self.sender(): + self._checkEmitEnabledChanged(webAction, enabled) + + def _checkEmitEnabledChanged(self, webAction, enabled): + if enabled != self._actionsEnabled[webAction]: + self._actionsEnabled[webAction] = enabled + self.enabledChanged.emit(webAction, enabled) + + def _currentChanged(self, index): + self._updateActions(index) + self.urlChanged.emit(self.url()) + + def _updateActions(self, index): + if index >= 0 and index < len(self._webengineviews): + view = self._webengineviews[index] + for webAction in WebEngineView.webActions(): + enabled = view.isWebActionEnabled(webAction) + self._checkEmitEnabledChanged(webAction, enabled) + + def back(self): + self._triggerAction(QWebEnginePage.Back) + + def forward(self): + self._triggerAction(QWebEnginePage.Forward) + + def reload(self): + self._triggerAction(QWebEnginePage.Reload) + + def undo(self): + self._triggerAction(QWebEnginePage.Undo) + + def redo(self): + self._triggerAction(QWebEnginePage.Redo) + + def cut(self): + self._triggerAction(QWebEnginePage.Cut) + + def copy(self): + self._triggerAction(QWebEnginePage.Copy) + + def paste(self): + self._triggerAction(QWebEnginePage.Paste) + + def selectAll(self): + self._triggerAction(QWebEnginePage.SelectAll) + + def zoomFactor(self): + return self._webengineviews[0].zoomFactor() if self._webengineviews else 1.0 + + def setZoomFactor(self, z): + for w in self._webengineviews: + w.setZoomFactor(z) + + def _handleTabContextMenu(self, point): + index = self.tabBar().tabAt(point) + if index < 0: + return + tabCount = len(self._webengineviews) + contextMenu = QMenu() + duplicateTabAction = contextMenu.addAction("Duplicate Tab") + closeOtherTabsAction = contextMenu.addAction("Close Other Tabs") + closeOtherTabsAction.setEnabled(tabCount > 1) + closeTabsToTheRightAction = contextMenu.addAction("Close Tabs to the Right") + closeTabsToTheRightAction.setEnabled(index < tabCount - 1) + closeTabAction = contextMenu.addAction("&Close Tab") + chosenAction = contextMenu.exec_(self.tabBar().mapToGlobal(point)) + if chosenAction == duplicateTabAction: + currentUrl = self.url() + self.addBrowserTab().load(currentUrl) + elif chosenAction == closeOtherTabsAction: + for t in range(tabCount - 1, -1, -1): + if t != index: + self.handleTabCloseRequest(t) + elif chosenAction == closeTabsToTheRightAction: + for t in range(tabCount - 1, index, -1): + self.handleTabCloseRequest(t) + elif chosenAction == closeTabAction: + self.handleTabCloseRequest(index) + + def handleTabCloseRequest(self, index): + if (index >= 0 and self.count() > 1): + self._webengineviews.remove(self._webengineviews[index]) + self.removeTab(index) + + def closeCurrentTab(self): + self.handleTabCloseRequest(self.currentIndex()) + + def _triggerAction(self, action): + index = self.currentIndex() + if index >= 0: + self._webengineviews[index].page().triggerAction(action) + + def _indexOfPage(self, webPage): + for p in range(0, len(self._webengineviews)): + if (self._webengineviews[p].page() == webPage): + return p + return -1 + + def _downloadRequested(self, item): + self.downloadRequested.emit(item) diff --git a/examples/webenginewidgets/tabbedbrowser/downloadwidget.py b/examples/webenginewidgets/tabbedbrowser/downloadwidget.py new file mode 100644 index 000000000..a49a630de --- /dev/null +++ b/examples/webenginewidgets/tabbedbrowser/downloadwidget.py @@ -0,0 +1,144 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the PySide examples of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:BSD$ +## You may use this file under the terms of the BSD license as follows: +## +## "Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions are +## met: +## * Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## * Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in +## the documentation and/or other materials provided with the +## distribution. +## * Neither the name of The Qt Company Ltd nor the names of its +## contributors may be used to endorse or promote products derived +## from this software without specific prior written permission. +## +## +## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +## +## $QT_END_LICENSE$ +## +############################################################################# + +import sys +from PySide2 import QtCore +from PySide2.QtCore import QDir, QFileInfo, QStandardPaths, Qt, QUrl +from PySide2.QtGui import QDesktopServices +from PySide2.QtWidgets import (QAction, QLabel, QMenu, QProgressBar, + QStyleFactory, QWidget) +from PySide2.QtWebEngineWidgets import QWebEngineDownloadItem + +# A QProgressBar with context menu for displaying downloads in a QStatusBar. +class DownloadWidget(QProgressBar): + + finished = QtCore.Signal() + removeRequested = QtCore.Signal() + + def __init__(self, downloadItem): + super(DownloadWidget, self).__init__() + self._downloadItem = downloadItem + downloadItem.finished.connect(self._finished) + downloadItem.downloadProgress.connect(self._downloadProgress) + downloadItem.stateChanged.connect(self._updateToolTip()) + path = downloadItem.path() + self.setMaximumWidth(300) + # Shorten 'PySide2-5.11.0a1-5.11.0-cp36-cp36m-linux_x86_64.whl'... + description = QFileInfo(path).fileName() + descriptionLength = len(description) + if descriptionLength > 30: + description = '{}...{}'.format(description[0:10], description[descriptionLength - 10:]) + self.setFormat('{} %p%'.format(description)) + self.setOrientation(Qt.Horizontal) + self.setMinimum(0) + self.setValue(0) + self.setMaximum(100) + self._updateToolTip() + # Force progress bar text to be shown on macoS by using 'fusion' style + if sys.platform == 'darwin': + self.setStyle(QStyleFactory.create('fusion')) + + @staticmethod + def openFile(file): + QDesktopServices.openUrl(QUrl.fromLocalFile(file)) + + @staticmethod + def openDownloadDirectory(): + path = QStandardPaths.writableLocation(QStandardPaths.DownloadLocation) + DownloadWidget.openFile(path) + + def state(self): + return self._downloadItem.state() + + def _updateToolTip(self): + path = self._downloadItem.path() + toolTip = "{}\n{}".format(self._downloadItem.url().toString(), + QDir.toNativeSeparators(path)) + totalBytes = self._downloadItem.totalBytes() + if totalBytes > 0: + toolTip += "\n{}K".format(totalBytes / 1024) + state = self.state() + if state == QWebEngineDownloadItem.DownloadRequested: + toolTip += "\n(requested)" + elif state == QWebEngineDownloadItem.DownloadInProgress: + toolTip += "\n(downloading)" + elif state == QWebEngineDownloadItem.DownloadCompleted: + toolTip += "\n(completed)" + elif state == QWebEngineDownloadItem.DownloadCancelled: + toolTip += "\n(cancelled)" + else: + toolTip += "\n(interrupted)" + self.setToolTip(toolTip) + + def _downloadProgress(self, bytesReceived, bytesTotal): + self.setValue(int(100 * bytesReceived / bytesTotal)) + + def _finished(self): + self._updateToolTip() + self.finished.emit() + + def _launch(self): + DownloadWidget.openFile(self._downloadItem.path()) + + def mouseDoubleClickEvent(self, event): + if self.state() == QWebEngineDownloadItem.DownloadCompleted: + self._launch() + + def contextMenuEvent(self, event): + state = self.state() + contextMenu = QMenu() + launchAction = contextMenu.addAction("Launch") + launchAction.setEnabled(state == QWebEngineDownloadItem.DownloadCompleted) + showInFolderAction = contextMenu.addAction("Show in Folder") + showInFolderAction.setEnabled(state == QWebEngineDownloadItem.DownloadCompleted) + cancelAction = contextMenu.addAction("Cancel") + cancelAction.setEnabled(state == QWebEngineDownloadItem.DownloadInProgress) + removeAction = contextMenu.addAction("Remove") + removeAction.setEnabled(state != QWebEngineDownloadItem.DownloadInProgress) + + chosenAction = contextMenu.exec_(event.globalPos()) + if chosenAction == launchAction: + self._launch() + elif chosenAction == showInFolderAction: + DownloadWidget.openFile(QFileInfo(self._downloadItem.path()).absolutePath()) + elif chosenAction == cancelAction: + self._downloadItem.cancel() + elif chosenAction == removeAction: + self.removeRequested.emit() diff --git a/examples/webenginewidgets/tabbedbrowser/findtoolbar.py b/examples/webenginewidgets/tabbedbrowser/findtoolbar.py new file mode 100644 index 000000000..c0c960850 --- /dev/null +++ b/examples/webenginewidgets/tabbedbrowser/findtoolbar.py @@ -0,0 +1,98 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the PySide examples of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:BSD$ +## You may use this file under the terms of the BSD license as follows: +## +## "Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions are +## met: +## * Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## * Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in +## the documentation and/or other materials provided with the +## distribution. +## * Neither the name of The Qt Company Ltd nor the names of its +## contributors may be used to endorse or promote products derived +## from this software without specific prior written permission. +## +## +## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +## +## $QT_END_LICENSE$ +## +############################################################################# + +from PySide2 import QtCore +from PySide2.QtCore import Qt, QUrl +from PySide2.QtGui import QIcon, QKeySequence +from PySide2.QtWidgets import (QAction, QCheckBox, QDockWidget, QHBoxLayout, + QLabel, QLineEdit, QToolBar, QToolButton, QWidget) +from PySide2.QtWebEngineWidgets import QWebEnginePage + +# A Find tool bar (bottom area) +class FindToolBar(QToolBar): + + find = QtCore.Signal(str, QWebEnginePage.FindFlags) + + def __init__(self): + super(FindToolBar, self).__init__() + self._lineEdit = QLineEdit() + self._lineEdit.setClearButtonEnabled(True) + self._lineEdit.setPlaceholderText("Find...") + self._lineEdit.setMaximumWidth(300) + self._lineEdit.returnPressed.connect(self._findNext) + self.addWidget(self._lineEdit) + + self._previousButton = QToolButton() + self._previousButton.setIcon(QIcon(':/qt-project.org/styles/commonstyle/images/up-32.png')) + self._previousButton.clicked.connect(self._findPrevious) + self.addWidget(self._previousButton) + + self._nextButton = QToolButton() + self._nextButton.setIcon(QIcon(':/qt-project.org/styles/commonstyle/images/down-32.png')) + self._nextButton.clicked.connect(self._findNext) + self.addWidget(self._nextButton) + + self._caseSensitiveCheckBox = QCheckBox('Case Sensitive') + self.addWidget(self._caseSensitiveCheckBox) + + self._hideButton = QToolButton() + self._hideButton.setShortcut(QKeySequence(Qt.Key_Escape)) + self._hideButton.setIcon(QIcon(':/qt-project.org/styles/macstyle/images/closedock-16.png')) + self._hideButton.clicked.connect(self.hide) + self.addWidget(self._hideButton) + + def focusFind(self): + self._lineEdit.setFocus() + + def _emitFind(self, backward): + needle = self._lineEdit.text().strip() + if needle: + flags = QWebEnginePage.FindFlags() + if self._caseSensitiveCheckBox.isChecked(): + flags |= QWebEnginePage.FindCaseSensitively + if backward: + flags |= QWebEnginePage.FindBackward + self.find.emit(needle, flags) + + def _findNext(self): + self._emitFind(False) + + def _findPrevious(self): + self._emitFind(True) diff --git a/examples/webenginewidgets/tabbedbrowser/main.py b/examples/webenginewidgets/tabbedbrowser/main.py new file mode 100644 index 000000000..c46d95b07 --- /dev/null +++ b/examples/webenginewidgets/tabbedbrowser/main.py @@ -0,0 +1,382 @@ +#!/usr/bin/env python + +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the PySide examples of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:BSD$ +## You may use this file under the terms of the BSD license as follows: +## +## "Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions are +## met: +## * Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## * Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in +## the documentation and/or other materials provided with the +## distribution. +## * Neither the name of The Qt Company Ltd nor the names of its +## contributors may be used to endorse or promote products derived +## from this software without specific prior written permission. +## +## +## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +## +## $QT_END_LICENSE$ +## +############################################################################# + +"""PySide2 WebEngineWidgets Example""" + +import sys +from bookmarkwidget import BookmarkWidget +from browsertabwidget import BrowserTabWidget +from downloadwidget import DownloadWidget +from findtoolbar import FindToolBar +from webengineview import QWebEnginePage, WebEngineView +from PySide2 import QtCore +from PySide2.QtCore import Qt, QUrl +from PySide2.QtGui import QCloseEvent, QKeySequence, QIcon +from PySide2.QtWidgets import (qApp, QAction, QApplication, QDesktopWidget, + QDockWidget, QLabel, QLineEdit, QMainWindow, QMenu, QMenuBar, QPushButton, + QStatusBar, QToolBar) +from PySide2.QtWebEngineWidgets import (QWebEngineDownloadItem, QWebEnginePage, + QWebEngineView) + +mainWindows = [] + +def createMainWindow(): + mainWin = MainWindow() + mainWindows.append(mainWin) + availableGeometry = app.desktop().availableGeometry(mainWin) + mainWin.resize(availableGeometry.width() * 2 / 3, availableGeometry.height() * 2 / 3) + mainWin.show() + return mainWin + +def createMainWindowWithBrowser(): + mainWin = createMainWindow() + return mainWin.addBrowserTab() + +class MainWindow(QMainWindow): + + def __init__(self): + super(MainWindow, self).__init__() + + self.setWindowTitle('PySide2 Tabbed Browser Example') + + self._tabWidget = BrowserTabWidget(createMainWindowWithBrowser) + self._tabWidget.enabledChanged.connect(self._enabledChanged) + self._tabWidget.downloadRequested.connect(self._downloadRequested) + self.setCentralWidget(self._tabWidget) + self.connect(self._tabWidget, QtCore.SIGNAL("urlChanged(QUrl)"), + self.urlChanged) + + self._bookmarkDock = QDockWidget() + self._bookmarkDock.setWindowTitle('Bookmarks') + self._bookmarkWidget = BookmarkWidget() + self._bookmarkWidget.openBookmark.connect(self.loadUrl) + self._bookmarkWidget.openBookmarkInNewTab.connect(self.loadUrlInNewTab) + self._bookmarkDock.setWidget(self._bookmarkWidget) + self.addDockWidget(Qt.LeftDockWidgetArea, self._bookmarkDock) + + self._findToolBar = None + + self._actions = {} + self._createMenu() + + self._toolBar = QToolBar() + self.addToolBar(self._toolBar) + for action in self._actions.values(): + if not action.icon().isNull(): + self._toolBar.addAction(action) + + self._addressLineEdit = QLineEdit() + self._addressLineEdit.setClearButtonEnabled(True) + self._addressLineEdit.returnPressed.connect(self.load) + self._toolBar.addWidget(self._addressLineEdit) + self._zoomLabel = QLabel() + self.statusBar().addPermanentWidget(self._zoomLabel) + self._updateZoomLabel() + + self._bookmarksToolBar = QToolBar() + self.addToolBar(Qt.TopToolBarArea, self._bookmarksToolBar) + self.insertToolBarBreak(self._bookmarksToolBar) + self._bookmarkWidget.changed.connect(self._updateBookmarks) + self._updateBookmarks() + + def _updateBookmarks(self): + self._bookmarkWidget.populateToolBar(self._bookmarksToolBar) + self._bookmarkWidget.populateOther(self._bookmarkMenu, 3) + + def _createMenu(self): + fileMenu = self.menuBar().addMenu("&File") + exitAction = QAction(QIcon.fromTheme("application-exit"), "E&xit", + self, shortcut = "Ctrl+Q", triggered=qApp.quit) + fileMenu.addAction(exitAction) + + navigationMenu = self.menuBar().addMenu("&Navigation") + + styleIcons = ':/qt-project.org/styles/commonstyle/images/' + backAction = QAction(QIcon.fromTheme("go-previous", + QIcon(styleIcons + 'left-32.png')), + "Back", self, + shortcut = QKeySequence(QKeySequence.Back), + triggered = self._tabWidget.back) + self._actions[QWebEnginePage.Back] = backAction + backAction.setEnabled(False) + navigationMenu.addAction(backAction) + forwardAction = QAction(QIcon.fromTheme("go-next", + QIcon(styleIcons + 'right-32.png')), + "Forward", self, + shortcut = QKeySequence(QKeySequence.Forward), + triggered = self._tabWidget.forward) + forwardAction.setEnabled(False) + self._actions[QWebEnginePage.Forward] = forwardAction + + navigationMenu.addAction(forwardAction) + reloadAction = QAction(QIcon(styleIcons + 'refresh-32.png'), + "Reload", self, + shortcut = QKeySequence(QKeySequence.Refresh), + triggered = self._tabWidget.reload) + self._actions[QWebEnginePage.Reload] = reloadAction + reloadAction.setEnabled(False) + navigationMenu.addAction(reloadAction) + + navigationMenu.addSeparator() + + newTabAction = QAction("New Tab", self, + shortcut = 'Ctrl+T', + triggered = self.addBrowserTab) + navigationMenu.addAction(newTabAction) + + closeTabAction = QAction("Close Current Tab", self, + shortcut = "Ctrl+W", + triggered = self._closeCurrentTab) + navigationMenu.addAction(closeTabAction) + + editMenu = self.menuBar().addMenu("&Edit") + + findAction = QAction("Find", self, + shortcut = QKeySequence(QKeySequence.Find), + triggered = self._showFind) + editMenu.addAction(findAction) + + editMenu.addSeparator() + undoAction = QAction("Undo", self, + shortcut = QKeySequence(QKeySequence.Undo), + triggered = self._tabWidget.undo) + self._actions[QWebEnginePage.Undo] = undoAction + undoAction.setEnabled(False) + editMenu.addAction(undoAction) + + redoAction = QAction("Redo", self, + shortcut = QKeySequence(QKeySequence.Redo), + triggered = self._tabWidget.redo) + self._actions[QWebEnginePage.Redo] = redoAction + redoAction.setEnabled(False) + editMenu.addAction(redoAction) + + editMenu.addSeparator() + + cutAction = QAction("Cut", self, + shortcut = QKeySequence(QKeySequence.Cut), + triggered = self._tabWidget.cut) + self._actions[QWebEnginePage.Cut] = cutAction + cutAction.setEnabled(False) + editMenu.addAction(cutAction) + + copyAction = QAction("Copy", self, + shortcut = QKeySequence(QKeySequence.Copy), + triggered = self._tabWidget.copy) + self._actions[QWebEnginePage.Copy] = copyAction + copyAction.setEnabled(False) + editMenu.addAction(copyAction) + + pasteAction = QAction("Paste", self, + shortcut = QKeySequence(QKeySequence.Paste), + triggered = self._tabWidget.paste) + self._actions[QWebEnginePage.Paste] = pasteAction + pasteAction.setEnabled(False) + editMenu.addAction(pasteAction) + + editMenu.addSeparator() + + selectAllAction = QAction("Select All", self, + shortcut = QKeySequence(QKeySequence.SelectAll), + triggered = self._tabWidget.selectAll) + self._actions[QWebEnginePage.SelectAll] = selectAllAction + selectAllAction.setEnabled(False) + editMenu.addAction(selectAllAction) + + self._bookmarkMenu = self.menuBar().addMenu("&Bookmarks") + addBookmarkAction = QAction("&Add Bookmark", self, + triggered = self._addBookmark) + self._bookmarkMenu.addAction(addBookmarkAction) + addToolBarBookmarkAction = QAction("&Add Bookmark to Tool Bar", self, + triggered = self._addToolBarBookmark) + self._bookmarkMenu.addAction(addToolBarBookmarkAction) + self._bookmarkMenu.addSeparator() + + toolsMenu = self.menuBar().addMenu("&Tools") + downloadAction = QAction("Open Downloads", self, + triggered = DownloadWidget.openDownloadDirectory) + toolsMenu.addAction(downloadAction) + + windowMenu = self.menuBar().addMenu("&Window") + + windowMenu.addAction(self._bookmarkDock.toggleViewAction()) + + windowMenu.addSeparator() + + zoomInAction = QAction(QIcon.fromTheme("zoom-in"), + "Zoom In", self, + shortcut = QKeySequence(QKeySequence.ZoomIn), + triggered = self._zoomIn) + windowMenu.addAction(zoomInAction) + zoomOutAction = QAction(QIcon.fromTheme("zoom-out"), + "Zoom Out", self, + shortcut = QKeySequence(QKeySequence.ZoomOut), + triggered = self._zoomOut) + windowMenu.addAction(zoomOutAction) + + resetZoomAction = QAction(QIcon.fromTheme("zoom-original"), + "Reset Zoom", self, + shortcut = "Ctrl+0", + triggered = self._resetZoom) + windowMenu.addAction(resetZoomAction) + + aboutMenu = self.menuBar().addMenu("&About") + aboutAction = QAction("About Qt", self, + shortcut = QKeySequence(QKeySequence.HelpContents), + triggered=qApp.aboutQt) + aboutMenu.addAction(aboutAction) + + def addBrowserTab(self): + return self._tabWidget.addBrowserTab() + + def _closeCurrentTab(self): + if self._tabWidget.count() > 1: + self._tabWidget.closeCurrentTab() + else: + self.close() + + def closeEvent(self, event): + mainWindows.remove(self) + event.accept() + + def load(self): + urlString = self._addressLineEdit.text().strip() + if urlString: + self.loadUrlString(urlString) + + def loadUrlString(self, urlS): + url = QUrl.fromUserInput(urlS) + if (url.isValid()): + self.loadUrl(url) + + def loadUrl(self, url): + self._tabWidget.load(url) + + def loadUrlInNewTab(self, url): + self.addBrowserTab().load(url) + + def urlChanged(self, url): + self._addressLineEdit.setText(url.toString()) + + def _enabledChanged(self, webAction, enabled): + action = self._actions[webAction] + if action: + action.setEnabled(enabled) + + def _addBookmark(self): + index = self._tabWidget.currentIndex() + if index >= 0: + url = self._tabWidget.url() + title = self._tabWidget.tabText(index) + icon = self._tabWidget.tabIcon(index) + self._bookmarkWidget.addBookmark(url, title, icon) + + def _addToolBarBookmark(self): + index = self._tabWidget.currentIndex() + if index >= 0: + url = self._tabWidget.url() + title = self._tabWidget.tabText(index) + icon = self._tabWidget.tabIcon(index) + self._bookmarkWidget.addToolBarBookmark(url, title, icon) + + def _zoomIn(self): + newZoom = self._tabWidget.zoomFactor() * 1.5 + if (newZoom <= WebEngineView.maximumZoomFactor()): + self._tabWidget.setZoomFactor(newZoom) + self._updateZoomLabel() + + def _zoomOut(self): + newZoom = self._tabWidget.zoomFactor() / 1.5 + if (newZoom >= WebEngineView.minimumZoomFactor()): + self._tabWidget.setZoomFactor(newZoom) + self._updateZoomLabel() + + def _resetZoom(self): + self._tabWidget.setZoomFactor(1) + self._updateZoomLabel() + + def _updateZoomLabel(self): + percent = int(self._tabWidget.zoomFactor() * 100) + self._zoomLabel.setText("{}%".format(percent)) + + def _downloadRequested(self, item): + # Remove old downloads before opening a new one + for oldDownload in self.statusBar().children(): + if type(oldDownload).__name__ == 'DownloadWidget' and \ + oldDownload.state() != QWebEngineDownloadItem.DownloadInProgress: + self.statusBar().removeWidget(oldDownload) + del oldDownload + + item.accept() + downloadWidget = DownloadWidget(item) + downloadWidget.removeRequested.connect(self._removeDownloadRequested, + Qt.QueuedConnection) + self.statusBar().addWidget(downloadWidget) + + def _removeDownloadRequested(self): + downloadWidget = self.sender() + self.statusBar().removeWidget(downloadWidget) + del downloadWidget + + def _showFind(self): + if self._findToolBar is None: + self._findToolBar = FindToolBar() + self._findToolBar.find.connect(self._tabWidget.find) + self.addToolBar(Qt.BottomToolBarArea, self._findToolBar) + else: + self._findToolBar.show() + self._findToolBar.focusFind() + + def writeBookmarks(self): + self._bookmarkWidget.writeBookmarks() + +if __name__ == '__main__': + app = QApplication(sys.argv) + mainWin = createMainWindow() + initialUrls = sys.argv[1:] + if not initialUrls: + initialUrls.append('http://qt.io') + for url in initialUrls: + mainWin.loadUrlInNewTab(QUrl.fromUserInput(url)) + exitCode = app.exec_() + mainWin.writeBookmarks() + sys.exit(exitCode) diff --git a/examples/webenginewidgets/tabbedbrowser/tabbedbrowser.pyqtc b/examples/webenginewidgets/tabbedbrowser/tabbedbrowser.pyqtc new file mode 100644 index 000000000..1ad61c350 --- /dev/null +++ b/examples/webenginewidgets/tabbedbrowser/tabbedbrowser.pyqtc @@ -0,0 +1,6 @@ +main.py +bookmarkwidget.py +browsertabwidget.py +downloadwidget.py +findtoolbar.py +webengineview.py diff --git a/examples/webenginewidgets/tabbedbrowser/webengineview.py b/examples/webenginewidgets/tabbedbrowser/webengineview.py new file mode 100644 index 000000000..b1b21930b --- /dev/null +++ b/examples/webenginewidgets/tabbedbrowser/webengineview.py @@ -0,0 +1,90 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: http://www.qt.io/licensing/ +## +## This file is part of the PySide examples of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:BSD$ +## You may use this file under the terms of the BSD license as follows: +## +## "Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions are +## met: +## * Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## * Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in +## the documentation and/or other materials provided with the +## distribution. +## * Neither the name of The Qt Company Ltd nor the names of its +## contributors may be used to endorse or promote products derived +## from this software without specific prior written permission. +## +## +## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +## +## $QT_END_LICENSE$ +## +############################################################################# + +import sys +from PySide2.QtWebEngineWidgets import QWebEnginePage, QWebEngineView + +from PySide2 import QtCore + +_webActions = [QWebEnginePage.Back, QWebEnginePage.Forward, + QWebEnginePage.Reload, + QWebEnginePage.Undo, QWebEnginePage.Redo, + QWebEnginePage.Cut, QWebEnginePage.Copy, + QWebEnginePage.Paste, QWebEnginePage.SelectAll] + +class WebEngineView(QWebEngineView): + + enabledChanged = QtCore.Signal(QWebEnginePage.WebAction, bool) + + @staticmethod + def webActions(): + return _webActions + + @staticmethod + def minimumZoomFactor(): + return 0.25 + + @staticmethod + def maximumZoomFactor(): + return 5 + + def __init__(self, tabFactoryFunc, windowFactoryFunc): + super(WebEngineView, self).__init__() + self._tabFactoryFunc = tabFactoryFunc + self._windowFactoryFunc = windowFactoryFunc + page = self.page() + self._actions = {} + for webAction in WebEngineView.webActions(): + action = page.action(webAction) + action.changed.connect(self._enabledChanged) + self._actions[action] = webAction + + def isWebActionEnabled(self, webAction): + return self.page().action(webAction).isEnabled() + + def createWindow(self, windowType): + if windowType == QWebEnginePage.WebBrowserTab or windowType == QWebEnginePage.WebBrowserBackgroundTab: + return self._tabFactoryFunc() + return self._windowFactoryFunc() + + def _enabledChanged(self): + action = self.sender() + webAction = self._actions[action] + self.enabledChanged.emit(webAction, action.isEnabled()) -- cgit v1.2.3 From aadfb8afc9d7f9ae00bdb53b72e39ff0b2bebe6d Mon Sep 17 00:00:00 2001 From: Boxiang Sun Date: Sat, 28 Apr 2018 10:29:30 +0800 Subject: Implement Python slicing support for QByteArray PySide2 for Python 3 didn't support get item by slice, e.g. ``` >>> from PySide2.QtCore import QByteArray >>> ba = QByteArray('1234567890') >>> ba[2:4] Traceback (most recent call last): File "", line 1, in TypeError: sequence index must be integer, not 'slice' ``` This is because get item by slice is supported by mp_subscript. But current PySide2 doesn't implemented it. So I added __mgetitem__ in QByteArray. And we also need to keep __getitem__ to support iterate over QByteArray. Also removed the __getslice__ from QByteArray. Task-number: PYSIDE-567 Change-Id: I01f79cc2ab8700da92155cfad96be2e98bb8b331 Reviewed-by: Alexandru Croitor --- .../PySide2/QtCore/glue/qbytearray_mgetitem.cpp | 87 ++++++++++++++++++++++ .../PySide2/QtCore/typesystem_core_common.xml | 14 +--- sources/pyside2/tests/QtCore/qbytearray_test.py | 21 ++++-- 3 files changed, 103 insertions(+), 19 deletions(-) create mode 100644 sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp diff --git a/sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp b/sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp new file mode 100644 index 000000000..19b05e162 --- /dev/null +++ b/sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp @@ -0,0 +1,87 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of the Qt for Python project. +** +** $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 The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/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 3 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL3 included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 3 requirements +** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 2.0 or (at your option) the GNU General +** Public license version 3 or any later version approved by the KDE Free +** Qt Foundation. The licenses are as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-2.0.html and +** https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +if (PyIndex_Check(_key)) { + Py_ssize_t _i; + _i = PyNumber_AsSsize_t(_key, PyExc_IndexError); + if (_i < 0 || _i >= %CPPSELF.size()) { + PyErr_SetString(PyExc_IndexError, "index out of bounds"); + return 0; + } else { + char res[2]; + res[0] = %CPPSELF.at(_i); + res[1] = 0; + return PyBytes_FromStringAndSize(res, 1); + } +} else if (PySlice_Check(_key)) { + Py_ssize_t start, stop, step, slicelength, cur; + +#ifdef IS_PY3K + PyObject *key = _key; +#else + PySliceObject *key = reinterpret_cast(_key); +#endif + if (PySlice_GetIndicesEx(key, %CPPSELF.count(), &start, &stop, &step, &slicelength) < 0) { + return NULL; + } + + QByteArray ba; + if (slicelength <= 0) { + return %CONVERTTOPYTHON[QByteArray](ba); + } else if (step == 1) { + Py_ssize_t max = %CPPSELF.count(); + start = qBound(Py_ssize_t(0), start, max); + stop = qBound(Py_ssize_t(0), stop, max); + QByteArray ba; + if (start < stop) + ba = %CPPSELF.mid(start, stop - start); + return %CONVERTTOPYTHON[QByteArray](ba); + } else { + QByteArray ba; + for (cur = start; slicelength > 0; cur += static_cast(step), slicelength--) { + ba.append(%CPPSELF.at(cur)); + } + return %CONVERTTOPYTHON[QByteArray](ba); + } +} else { + PyErr_Format(PyExc_TypeError, + "list indices must be integers or slices, not %.200s", + _key->ob_type->tp_name); + return NULL; +} diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml index 0e83f6228..907ff4359 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml @@ -2793,6 +2793,9 @@ } + + + %CPPSELF.remove(_i, 1); @@ -2803,17 +2806,6 @@ return !result ? -1 : 0; - - - Py_ssize_t max = %CPPSELF.count(); - _i1 = qBound(Py_ssize_t(0), _i1, max); - _i2 = qBound(Py_ssize_t(0), _i2, max); - QByteArray ba; - if (_i1 < _i2) - ba = %CPPSELF.mid(_i1, _i2 - _i1); - return %CONVERTTOPYTHON[QByteArray](ba); - - diff --git a/sources/pyside2/tests/QtCore/qbytearray_test.py b/sources/pyside2/tests/QtCore/qbytearray_test.py index c6008cf12..0be972c0a 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_test.py @@ -152,15 +152,20 @@ class QByteArrayOnQVariant(unittest.TestCase): a = QSettings().value("some_prop", QByteArray()) self.assertEqual(type(a), QByteArray) -class TestBug666(unittest.TestCase): - '''QByteArray does not support slices''' +class TestBug567(unittest.TestCase): + ''' + QByteArray should support slices + ''' def testIt(self): - if not py3k.IS_PY3K: - ba = QByteArray('1234567890') - self.assertEqual(ba[2:4], '34') - self.assertEqual(ba[:4], '1234') - self.assertEqual(ba[4:], '567890') - self.assertEqual(len(ba[4:1]), 0) + ba = QByteArray('1234567890') + self.assertEqual(ba[2:4], '34') + self.assertEqual(ba[:4], '1234') + self.assertEqual(ba[4:], '567890') + self.assertEqual(len(ba[4:1]), 0) + self.assertEqual(ba[::-1], '0987654321') + self.assertEqual(ba[::2], '13579') + self.assertEqual(ba[::-2], '08642') + self.assertEqual(ba[2:8:3], '36') class QByteArrayBug514(unittest.TestCase): def testIt(self): -- cgit v1.2.3 From 6b42ecdcc3878d4f31a207e76e5c27136a45fa34 Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Mon, 30 Apr 2018 13:03:57 +0200 Subject: Doc: Use additional include paths for some Qt modules Some of the Qt documentation modules use custom module headers that pull in additional content into the build. On a normal Qt documentation build, these are implemented as relative paths - these are incorrect when the doc build is invoked externally in PySide. To fix this, add absolute qdocconf include path entries for each module that needs them. This cuts down the number of QDoc warnings significantly. Change-Id: I22756cc3170e7e2ff678986a46e117faf43a735d Reviewed-by: Friedemann Kleint --- sources/pyside2/doc/qtmodules/pyside-qt3dextras.qdocconf.in | 1 + sources/pyside2/doc/qtmodules/pyside-qtmultimedia.qdocconf.in | 1 + sources/pyside2/doc/qtmodules/pyside-qtquickwidgets.qdocconf.in | 1 + sources/pyside2/doc/qtmodules/pyside-qttexttospeech.qdocconf.in | 1 + 4 files changed, 4 insertions(+) diff --git a/sources/pyside2/doc/qtmodules/pyside-qt3dextras.qdocconf.in b/sources/pyside2/doc/qtmodules/pyside-qt3dextras.qdocconf.in index 5bc4e8c9c..20bd8d730 100644 --- a/sources/pyside2/doc/qtmodules/pyside-qt3dextras.qdocconf.in +++ b/sources/pyside2/doc/qtmodules/pyside-qt3dextras.qdocconf.in @@ -1,2 +1,3 @@ include(@QT_SRC_DIR@/../qt3d/src/doc/qt3d.qdocconf) +includepaths += -I @QT_SRC_DIR@/../qt3d/src/doc include(../pyside-config.qdocconf) diff --git a/sources/pyside2/doc/qtmodules/pyside-qtmultimedia.qdocconf.in b/sources/pyside2/doc/qtmodules/pyside-qtmultimedia.qdocconf.in index 35bf1bc6a..5415c392c 100644 --- a/sources/pyside2/doc/qtmodules/pyside-qtmultimedia.qdocconf.in +++ b/sources/pyside2/doc/qtmodules/pyside-qtmultimedia.qdocconf.in @@ -1,2 +1,3 @@ include(@QT_SRC_DIR@/../qtmultimedia/src/multimedia/doc/qtmultimedia.qdocconf) +includepaths += -I @QT_SRC_DIR@/../qtmultimedia/src/multimedia/doc include(../pyside-config.qdocconf) diff --git a/sources/pyside2/doc/qtmodules/pyside-qtquickwidgets.qdocconf.in b/sources/pyside2/doc/qtmodules/pyside-qtquickwidgets.qdocconf.in index 242dc3c02..6f59645f3 100644 --- a/sources/pyside2/doc/qtmodules/pyside-qtquickwidgets.qdocconf.in +++ b/sources/pyside2/doc/qtmodules/pyside-qtquickwidgets.qdocconf.in @@ -1,2 +1,3 @@ include(@QT_SRC_DIR@/../qtdeclarative/src/quick/doc/qtquick.qdocconf) +includepaths += -I @QT_SRC_DIR@/../qtdeclarative/src/quick/doc include(../pyside-config.qdocconf) diff --git a/sources/pyside2/doc/qtmodules/pyside-qttexttospeech.qdocconf.in b/sources/pyside2/doc/qtmodules/pyside-qttexttospeech.qdocconf.in index 2bf722f23..ed49121c1 100644 --- a/sources/pyside2/doc/qtmodules/pyside-qttexttospeech.qdocconf.in +++ b/sources/pyside2/doc/qtmodules/pyside-qttexttospeech.qdocconf.in @@ -1,2 +1,3 @@ include(@QT_SRC_DIR@/../qtspeech/src/doc/qtspeech.qdocconf) +includepaths += -I @QT_SRC_DIR@/../qtspeech/src/doc include(../pyside-config.qdocconf) -- cgit v1.2.3 From faefb8130908da20b4a738dd1d3f1eac7e87bde5 Mon Sep 17 00:00:00 2001 From: Venugopal Shivashankar Date: Fri, 27 Apr 2018 15:51:36 +0200 Subject: Doc: Update the footer CSS style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The copyright text at the bottom of the page doesn't wrap without it. Change-Id: I28a275c4c96b63573dd3fe1af554e98a593880e4 Reviewed-by: Topi Reiniö --- sources/pyside2/doc/_themes/pysidedocs/static/pysidedocs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/pyside2/doc/_themes/pysidedocs/static/pysidedocs.css b/sources/pyside2/doc/_themes/pysidedocs/static/pysidedocs.css index 1692dc3ba..6b1c4274e 100644 --- a/sources/pyside2/doc/_themes/pysidedocs/static/pysidedocs.css +++ b/sources/pyside2/doc/_themes/pysidedocs/static/pysidedocs.css @@ -38,7 +38,7 @@ strong { text-align:center; background-color: white; border-top: 2px solid #e0e0e0; - white-space: nowrap; + white-space: normal; height: 90px; width: 100%; } -- cgit v1.2.3 From d2fa0f63f08f5cca57be306b9569cb9a76af7cea Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 6 Apr 2018 16:24:34 +0200 Subject: Add tool for creating a license page Add a tool which runs qtattributionsscanner and converts its JSON output to .rst to create an additional license page It differs from the Qt usage in that the license text is extracted from triple quotes of the referenced file. Task-number: PYSIDE-363 Change-Id: Idef9b0ada06bec5947aac210d7fec25fd0742ab8 Reviewed-by: Alexandru Croitor --- sources/pyside2/doc/CMakeLists.txt | 12 +- sources/pyside2/doc/qtattributionsscannertorst.py | 141 ++++++++++++++++++++++ 2 files changed, 152 insertions(+), 1 deletion(-) create mode 100644 sources/pyside2/doc/qtattributionsscannertorst.py diff --git a/sources/pyside2/doc/CMakeLists.txt b/sources/pyside2/doc/CMakeLists.txt index 326e5ae7d..e40602b97 100644 --- a/sources/pyside2/doc/CMakeLists.txt +++ b/sources/pyside2/doc/CMakeLists.txt @@ -98,7 +98,17 @@ add_custom_target("docrsts" WORKING_DIRECTORY ${${module}_SOURCE_DIR} COMMENT "Running generator to generate documentation..." ) -add_dependencies(apidoc docrsts) + +add_custom_target("licensedocrsts" + COMMAND ${PYTHON_EXECUTABLE} + ${CMAKE_CURRENT_LIST_DIR}/qtattributionsscannertorst.py + ${CMAKE_CURRENT_LIST_DIR}/../../.. + ${CMAKE_CURRENT_BINARY_DIR}/rst/licenses.rst + COMMENT "Creating 3rdparty license documentation..." +) + +add_dependencies(apidoc docrsts licensedocrsts) +add_dependencies(licensedocrsts docrsts) add_dependencies(docrsts qdoc) # #create devhelp file diff --git a/sources/pyside2/doc/qtattributionsscannertorst.py b/sources/pyside2/doc/qtattributionsscannertorst.py new file mode 100644 index 000000000..fa1e1d2de --- /dev/null +++ b/sources/pyside2/doc/qtattributionsscannertorst.py @@ -0,0 +1,141 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +""" +Tool to run qtattributionsscanner and convert its output to rst +""" + +import os, json, subprocess, sys + +def indent(lines, indent): + result = '' + for l in lines: + result += "{}{}\n".format(indent, l) + return result + +rstHeader="""Licenses Used in Qt for Python +****************************** + +Qt for Python contains some code that is not provided under the +GNU Lesser General Public License (LGPL) or the Qt Commercial License, +but rather under specific licenses from the original authors. + +Qt for Python contains some code that is not provided under the +GNU Lesser General Public License (LGPL) or the Qt Commercial License, +but rather under specific licenses from the original authors. +The Qt Company gratefully acknowledges these and other contributions +to Qt for Python. We recommend that programs that use Qt for Python +also acknowledge these contributions, and quote these license +statements in an appendix to the documentation. + +Note: You only need to comply with (and acknowledge) the licenses of +the third-party components that you are using with your application. +Click the name of the component to see the licensing details. + +Third-party Licenses +^^^^^^^^^^^^^^^^^^^^ + +The following table lists parts of Qt for Python that incorporate code +licensed under third-party open-source licenses: + +""" + +rstEntryFormat = """{} + +{} + +{} + +{} + +`Project Homepage <{}>`_ , upstream version: {} + +:: + +{} + + +""" + +# Extract the license which is embedded in triple quotes +def extractLicense(fileName): + result = [] + with open(fileName, 'r') as file: + recording = False + for line in file.readlines(): + line = line.strip("\n\r\xc2\xb6") + if line == '"""': + if recording: + break + else: + recording = True + elif recording: + result.append(line) + return result + +def runScanner(directory, targetFileName): + # qtattributionsscanner recursively searches for qt_attribution.json files + # and outputs them in JSON with the paths of the 'LicenseFile' made absolute + command = 'qtattributionsscanner --output-format json {}'.format(directory) + jsonS = subprocess.check_output(command, shell=True) + if not jsonS: + raise RuntimeError('{} failed to produce output.'.format(command)) + + with open(targetFileName, 'w') as targetFile: + targetFile.write(rstHeader) + for entry in json.loads(jsonS): + name = entry['Name'] + title = "{}\n{}".format(name, '-' * len(name)) + brief = entry['License'] + url = entry['Homepage'] + version = entry['Version'] + description = entry['Description'] + qtUsage = entry['QtUsage'] + content = extractLicense(entry['LicenseFile']) + rst = rstEntryFormat.format(title, brief, description, qtUsage, + url, version, indent(content, ' ')) + targetFile.write(rst) + +if len(sys.argv) < 3: + print("Usage: qtattributionsscannertorst [directory] [file]'") + sys.exit(0) + +directory = sys.argv[1] +targetFileName = sys.argv[2] +runScanner(directory, targetFileName) -- cgit v1.2.3 From 2159f4fdf5e0497c0df96ab200753761e3668700 Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Tue, 10 Apr 2018 16:43:31 +0200 Subject: Avoid set parent for QLabel.pixmap() Setting owner as default to not allow Python to create a copy of the QPixmap associated with the QLabel. The C++ object pointer is acquired through the pixmap() method. A test case was included. Task-number: PYSIDE-150 Change-Id: Ie6975c39cbf49a59ebd478db0e1a0c30fc14864a Reviewed-by: Qt CI Bot Reviewed-by: Alexandru Croitor --- .../QtWidgets/typesystem_widgets_common.xml | 9 ++- sources/pyside2/tests/CMakeLists.txt | 1 + sources/pyside2/tests/QtWidgets/CMakeLists.txt | 1 + sources/pyside2/tests/QtWidgets/bug_714.py | 8 +- sources/pyside2/tests/QtWidgets/qlabel_test.py | 89 ++++++++++++++++++++++ 5 files changed, 105 insertions(+), 3 deletions(-) create mode 100644 sources/pyside2/tests/QtWidgets/qlabel_test.py diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml index 488f5081d..27b772064 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml @@ -2593,7 +2593,14 @@ - + + + + + + + diff --git a/sources/pyside2/tests/CMakeLists.txt b/sources/pyside2/tests/CMakeLists.txt index 3440c1591..199192b3c 100644 --- a/sources/pyside2/tests/CMakeLists.txt +++ b/sources/pyside2/tests/CMakeLists.txt @@ -6,6 +6,7 @@ else() endif() # tests/QtWidgets/qstandarditemmodel_test.py needs shiboken2 + # tests/QtWidgets/qlabel_test.py needs shiboken2 if(WIN32) set(TEST_PYTHONPATH "${CMAKE_BINARY_DIR};${CMAKE_SOURCE_DIR}/tests/util;${CMAKE_BINARY_DIR}/tests/pysidetest;${CMAKE_BINARY_DIR}/../shiboken2/shibokenmodule;$ENV{PYTHONPATH}") set(TEST_LIBRARY_PATH "${libpyside_BINARY_DIR};${pysidetest_BINARY_DIR};${SHIBOKEN_INCLUDE_DIR}/../../bin;$ENV{PATH}") diff --git a/sources/pyside2/tests/QtWidgets/CMakeLists.txt b/sources/pyside2/tests/QtWidgets/CMakeLists.txt index 9caf7e365..b350133f9 100644 --- a/sources/pyside2/tests/QtWidgets/CMakeLists.txt +++ b/sources/pyside2/tests/QtWidgets/CMakeLists.txt @@ -99,6 +99,7 @@ PYSIDE_TEST(qgraphicsscene_test.py) PYSIDE_TEST(qimage_test.py) PYSIDE_TEST(qinputdialog_get_test.py) PYSIDE_TEST(qkeysequenceedit_test.py) +PYSIDE_TEST(qlabel_test.py) PYSIDE_TEST(qlayout_ref_test.py) PYSIDE_TEST(qlayout_test.py) PYSIDE_TEST(qlcdnumber_test.py) diff --git a/sources/pyside2/tests/QtWidgets/bug_714.py b/sources/pyside2/tests/QtWidgets/bug_714.py index 93dee6630..35d4f6d62 100644 --- a/sources/pyside2/tests/QtWidgets/bug_714.py +++ b/sources/pyside2/tests/QtWidgets/bug_714.py @@ -38,8 +38,12 @@ class TestLabelPixmap(unittest.TestCase): l.setPixmap(p) # doesn't increment pixmap ref because this makes a copy self.assertEqual(sys.getrefcount(p), 2) - p = l.pixmap() # this increment the reference because this is an internal pointer - self.assertEqual(sys.getrefcount(p), 3) + p = l.pixmap() + # this used to increment the reference because this is + # an internal pointer, but not anymore since we don't create + # a copy + # self.assertEqual(sys.getrefcount(p), 3) + self.assertEqual(sys.getrefcount(p), 2) p2 = l.pixmap() self.assertEqual(p, p2) diff --git a/sources/pyside2/tests/QtWidgets/qlabel_test.py b/sources/pyside2/tests/QtWidgets/qlabel_test.py new file mode 100644 index 000000000..3f2ae78c6 --- /dev/null +++ b/sources/pyside2/tests/QtWidgets/qlabel_test.py @@ -0,0 +1,89 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the test suite of PySide2. +## +## $QT_BEGIN_LICENSE:GPL-EXCEPT$ +## 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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/contact-us. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 3 as published by the Free Software +## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +'''Test cases for QLabel''' + +import unittest + +from PySide2.QtGui import QPixmap +from PySide2.QtWidgets import QLabel +try: + # The normal import statement when PySide2 is installed. + from PySide2 import shiboken2 as shiboken +except ImportError: + # When running make test in shiboken build dir, or when running + # testrunner.py, shiboken2 is not part of the PySide2 module, + # so it needs to be imported as a standalone module. + import shiboken2 as shiboken + +from helper import UsesQApplication + +class QLabelTest(UsesQApplication): + '''Test case for calling QLabel.setPixmap''' + + def setUp(self): + super(QLabelTest, self).setUp() + self.label = QLabel() + + def tearDown(self): + del self.label + super(QLabelTest, self).tearDown() + + def testSetPixmap(self): + + p1 = QPixmap(5, 5) + p2 = QPixmap(10, 10) + + self.label.setPixmap(p1) + self.assertIsNotNone(self.label.pixmap()) + + + # PYSIDE-150: + # When a new QPixmap is assigned to a QLabel, + # the previous one needs to be cleared. + # This means we should not keep a copy of the QPixmap + # on Python-side. + + # Getting pointer to the QPixmap + ret_p = self.label.pixmap() + self.assertIsNot(p1, ret_p) + # Save the address of the pointer + ret_p_addr = shiboken.getCppPointer(ret_p) + # Remove the QPixmap + del ret_p + # Set new QPixmap + self.label.setPixmap(p2) + + # There should be no pointers remaining with the same + # address that our QPixmap p1 because it was deleted + # using `del ret_p` + self.assertTrue(all(shiboken.getCppPointer(o) != ret_p_addr + for o in shiboken.getAllValidWrappers())) + +if __name__ == '__main__': + unittest.main() -- cgit v1.2.3 From 5f83ff14270cbe63492c08b5aa279d30a6c2677b Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Wed, 2 May 2018 10:11:11 +0200 Subject: Re-add QShortcutEvent removed methods They seem to work, no need to reject them. Task-number: PYSIDE-655 Change-Id: I20e5a0ddd03392bacac8875158159d84bf16cdb9 Reviewed-by: Friedemann Kleint --- sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml index 488d9861a..b0d8e6e30 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml @@ -1786,11 +1786,6 @@ - - - - - -- cgit v1.2.3 From 103aeab4c13f9969fbbd4f3d64e650373c35a141 Mon Sep 17 00:00:00 2001 From: Venugopal Shivashankar Date: Wed, 14 Mar 2018 14:20:44 +0100 Subject: Doc: Update the QML advanced tutorial - Switch the languague to 2nd person - Update the Qt Quick import statements - Replace instances of "elements" that referred to QML types or items. Change-Id: Iabac624270dbd8685bf1f4d2dec198984e7a3c68 Reviewed-by: Paul Wicking Reviewed-by: Friedemann Kleint --- .../doc/tutorials/qmladvancedtutorial/index.rst | 19 +-- .../samegame/samegame1/Block.qml | 2 +- .../samegame/samegame1/Button.qml | 2 +- .../samegame/samegame1/samegame.qml | 2 +- .../samegame/samegame2/Block.qml | 2 +- .../samegame/samegame2/Button.qml | 2 +- .../samegame/samegame2/samegame.qml | 2 +- .../samegame/samegame3/Block.qml | 2 +- .../samegame/samegame3/Button.qml | 2 +- .../samegame/samegame3/Dialog.qml | 2 +- .../samegame/samegame3/samegame.qml | 2 +- .../samegame/samegame4/content/BoomBlock.qml | 2 +- .../samegame/samegame4/content/Button.qml | 2 +- .../samegame/samegame4/content/Dialog.qml | 2 +- .../samegame/samegame4/samegame.qml | 2 +- .../tutorials/qmladvancedtutorial/samegame1.rst | 43 +++--- .../tutorials/qmladvancedtutorial/samegame2.rst | 25 ++- .../tutorials/qmladvancedtutorial/samegame3.rst | 73 ++++++--- .../tutorials/qmladvancedtutorial/samegame4.rst | 170 +++++++++++++-------- 19 files changed, 217 insertions(+), 141 deletions(-) diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/index.rst b/sources/pyside2/doc/tutorials/qmladvancedtutorial/index.rst index 5b5a367d0..d40af59d7 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/index.rst +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/index.rst @@ -3,23 +3,24 @@ QML Advanced Tutorial ********************* -This tutorial walks step-by-step through the creation of a full application using QML. +This tutorial walks you through the steps of creating an application using QML. It assumes that you already know the basics of QML (for example, from reading the :ref:`qmltutorial`. -In this tutorial we write a game, *Same Game*, based on the Same Game application -included in the declarative demos directory, which looks like this: +In this tutorial, you will develop the game, *Same Game*. It is based on the +Same Game application included in the declarative demos directory, and looks +like this: .. figure:: declarative-samegame.png :align: center -We will cover concepts for producing a fully functioning application, including -JavaScript integration, using QML States and Behaviors to -manage components and enhance your interface, and storing persistent application data. +The tutorial covers concepts related to producing a fully functional application, +including JavaScript integration, using QML states and behaviors to manage +components and enhance your interface, and storing persistent application data. -An understanding of JavaScript is helpful to understand parts of this tutorial, but if you don't -know JavaScript you can still get a feel for how you can integrate backend logic to create and -control QML elements. +Prior knowledge of JavaScript is useful to understand parts of this +tutorial, but if you don't know it, you can still get a feel of +integrating the backend logic that creates and controls QML items. Tutorial chapters: diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml index 27520cef4..fb78c473c 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml @@ -49,7 +49,7 @@ ****************************************************************************/ //![0] -import QtQuick 1.0 +import QtQuick 2.0 Item { id: block diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml index 64d86d527..c612655f0 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml @@ -49,7 +49,7 @@ ****************************************************************************/ //![0] -import QtQuick 1.0 +import QtQuick 2.0 Rectangle { id: container diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml index 18f256a05..aa40b2bff 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml @@ -49,7 +49,7 @@ ****************************************************************************/ //![0] -import QtQuick 1.0 +import QtQuick 2.0 Rectangle { id: screen diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml index ac1ae7616..4306d9ecb 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 Item { id: block diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml index 0e0aef7e2..abfba0725 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 Rectangle { id: container diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml index 7e8257b25..179835e96 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 //![2] import "samegame.js" as SameGame //![2] diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml index 4d4f9f3c5..6e35ad0e2 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml @@ -49,7 +49,7 @@ ****************************************************************************/ //![0] -import QtQuick 1.0 +import QtQuick 2.0 Item { id: block diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml index 0e0aef7e2..abfba0725 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 Rectangle { id: container diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml index 637e8ade7..dd626977e 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml @@ -49,7 +49,7 @@ ****************************************************************************/ //![0] -import QtQuick 1.0 +import QtQuick 2.0 Rectangle { id: container diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml index 7ad4bd0bb..c1e21f218 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml @@ -49,7 +49,7 @@ ****************************************************************************/ //![0] -import QtQuick 1.0 +import QtQuick 2.0 import "samegame.js" as SameGame Rectangle { diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml index 7392e3e37..cf767f2d5 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 import Qt.labs.particles 1.0 Item { diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml index 0e0aef7e2..abfba0725 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 Rectangle { id: container diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml index a46ee74bb..979904f28 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 //![0] Rectangle { diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml index 6053136c3..bb8a5f9dd 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml @@ -48,7 +48,7 @@ ** ****************************************************************************/ -import QtQuick 1.0 +import QtQuick 2.0 import "content" import "content/samegame.js" as SameGame diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame1.rst b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame1.rst index c8638ce06..f48c0672b 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame1.rst +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame1.rst @@ -8,7 +8,7 @@ Creating the application screen The first step is to create the basic QML items in your application. -To begin with, we create our Same Game application with a main screen like this: +To begin with, create a main screen like this: .. figure:: declarative-adv-tutorial1.png :align: center @@ -18,21 +18,21 @@ This is defined by the main application file, ``samegame.qml``, which looks like .. pysideinclude:: samegame/samegame1/samegame.qml :snippet: 0 -This gives you a basic game window that includes the main canvas for the -blocks, a "New Game" button and a score display. +It gives a basic game window that includes the main canvas for the +blocks, a "New Game" button, and a score display. -One item you may not recognize here -is the SystemPalette item. This provides access to the Qt system palette -and is used to give the button a more native look-and-feel. +One item you may not recognize here is the SystemPalette item. This provides +access to the Qt system palette and is used to give the button a more native +look-and-feel. -Notice the anchors for the ``Item``, ``Button`` and ``Text`` elements are set using +Notice the anchors for the ``Item``, ``Button``, and ``Text`` items are set using group notation for readability. -Adding Button and Block components +Adding button and block components ================================== The ``Button`` item in the code above is defined in a separate component file named ``Button.qml``. -To create a functional button, we use the QML elements Text and MouseArea inside a Rectangle. +To create a functional button, use the Text and MouseArea QML types inside a Rectangle. Here is the ``Button.qml`` code: .. pysideinclude:: samegame/samegame1/Button.qml @@ -43,28 +43,29 @@ has an ``onClicked()`` handler that is implemented to emit the ``clicked()`` sig ``container`` when the area is clicked. In Same Game, the screen is filled with small blocks when the game begins. -Each block is just an item that contains an image. The block -code is defined in a separate ``Block.qml`` file: +Each block is an item that contains an image. The block +is defined in the ``Block.qml`` file: .. pysideinclude:: samegame/samegame1/Block.qml :snippet: 0 At the moment, the block doesn't do anything; it is just an image. As the -tutorial progresses we will animate and give behaviors to the blocks. -We have not added any code yet to create the blocks; we will do this -in the next chapter. +tutorial progresses, you will animate and give behaviors to the blocks. +You have not added any code yet to create the blocks; this +will be done in the next chapter. -We have set the image to be the size of its parent Item using ``anchors.fill: parent``. -This means that when we dynamically create and resize the block items +You have set the image to be the size of its parent Item using ``anchors.fill: parent``. +This means that when you dynamically create and resize the block items later on in the tutorial, the image will be scaled automatically to the correct size. -Notice the relative path for the Image element's ``source`` property. -This path is relative to the location of the file that contains the Image element. +Notice the relative path for the Image item's ``source`` property. +It is relative to the location of the file that contains the Image item. Alternatively, you could set the Image source to an absolute file path or a URL that contains an image. -You should be familiar with the code so far. We have just created some basic -elements to get started. Next, we will populate the game canvas with some blocks. +You should be familiar with the code so far, as you have created some basic +items to get started. In the next chapter, you will populate the game canvas +with some blocks. -[Previous :ref:`qmladvancedtutorial`] [Next :ref:`samegame2`] \ No newline at end of file +[Previous :ref:`qmladvancedtutorial`] [Next :ref:`samegame2`] diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame2.rst b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame2.rst index 6cc12d5ca..7f3ee8845 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame2.rst +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame2.rst @@ -6,13 +6,12 @@ QML Advanced Tutorial 2 - Populating the Game Canvas Generating the blocks in JavaScript =================================== -Now that we've written some basic elements, let's start writing the game. +Now that the basic elements are in place, start writing the game. The first task is to generate the game blocks. Each time the New Game button is clicked, the game canvas is populated with a new, random set of -blocks. Since we need to dynamically generate new blocks for each new game, -we cannot use Repeater to define the blocks. Instead, we will -create the blocks in JavaScript. +blocks that are generated dynamically. You can achieve this by creating +the blocks using JavaScript intead of a Repeater. Here is the JavaScript code for generating the blocks, contained in a new file, ``samegame.js``. The code is explained below. @@ -29,11 +28,11 @@ The ``createBlock()`` function creates a block from the ``Block.qml`` file and moves the new block to its position on the game canvas. This involves several steps: * ``Qt.createComponent()`` is called to - generate an element from ``Block.qml``. If the component is ready, + generate an instance of ``Block.qml``. If the component is ready, we can call ``createObject()`` to create an instance of the ``Block`` item. -* If ``createObject()`` returned null (i.e. if there was an error +* If ``createObject()`` returned null (that is, if there was an error while loading the object), print the error information. * Place the block in its position on the board and set its width and @@ -46,26 +45,26 @@ and moves the new block to its position on the game canvas. This involves severa Connecting JavaScript components to QML ======================================= -Now we need to call the JavaScript code in ``samegame.js`` from our QML files. -To do this, we add this line to ``samegame.qml`` which imports +Now, call the JavaScript code in ``samegame.js`` from your QML files. +To do this, add the following line to ``samegame.qml`` to import the JavaScript file as a module: .. pysideinclude:: samegame/samegame2/samegame.qml :snippet: 2 -This allows us to refer to any functions within ``samegame.js`` using "SameGame" +This lets you to refer to any functions within ``samegame.js`` using "SameGame" as a prefix: for example, ``SameGame.startNewGame()`` or ``SameGame.createBlock()``. -This means we can now connect the New Game button's ``onClicked`` handler to the ``startNewGame()`` +This means you can now connect the New Game button's ``onClicked`` handler to the ``startNewGame()`` function, like this: .. pysideinclude:: samegame/samegame2/samegame.qml :snippet: 1 -So, when you click the New Game button, ``startNewGame()`` is called and generates a field of blocks, like this: +So, when you click the New Game button, ``startNewGame()`` is called to generate a field of blocks, like this: .. figure:: declarative-adv-tutorial2.png :align: center -Now, we have a screen of blocks, and we can begin to add the game mechanics. +Now that the screen of blocks is ready, you can start adding the game mechanics. -[Previous :ref:`samegame1`] [Next :ref:`samegame3`] \ No newline at end of file +[Previous :ref:`samegame1`] [Next :ref:`samegame3`] diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame3.rst b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame3.rst index a1fe44edd..b3c794ec2 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame3.rst +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame3.rst @@ -6,11 +6,11 @@ QML Advanced Tutorial 3 - Implementing the Game Logic Making a playable game ====================== -Now that we have all the game components, we can add the game logic that -dictates how a player interacts with the blocks and plays the game +Now that all the UI components are ready, add the game logic that +dictates how a player interacts with the blocks and plays the game, until it is won or lost. -To do this, we have added the following functions to ``samegame.js``: +To achieve this, add the following functions to ``samegame.js``: * ``handleClick(x,y)`` @@ -19,56 +19,82 @@ To do this, we have added the following functions to ``samegame.js``: * ``victoryCheck()`` * ``floodMoveCheck(xIdx, yIdx, type)`` -As this is a tutorial about QML, not game design, we will only discuss ``handleClick()`` and ``victoryCheck()`` below since they interface directly with the QML elements. Note that although the game logic here is written in JavaScript, it could have been written in Python and then exposed to QML. +As this is a tutorial about QML, not game design, only the ``handleClick()`` +and ``victoryCheck()`` functions that interface directly with the QML items +are discussed. + +.. Note:: Although the game logic here is written in JavaScript, + it could have been written in Python and then exposed to QML. Enabling mouse click interaction ================================ -To make it easier for the JavaScript code to interface with the QML elements, we have added an Item called ``gameCanvas`` to ``samegame.qml``. It replaces the background as the item which contains the blocks. It also accepts mouse input from the user. Here is the item code: +To make it easier for the JavaScript code to interface with the QML items, +an Item called ``gameCanvas`` is added to ``samegame.qml``. It replaces the +background as the item which contains the blocks. It also accepts mouse input +from the user. Here is the item code: .. pysideinclude:: samegame/samegame3/samegame.qml :snippet: 1 -The ``gameCanvas`` item is the exact size of the board, and has a ``score`` property and a MouseArea to handle mouse clicks. -The blocks are now created as its children, and its dimensions are used to determine the board size so that -the application scales to the available screen size. -Since its size is bound to a multiple of ``blockSize``, ``blockSize`` was moved out of ``samegame.js`` and into ``samegame.qml`` as a QML property. -Note that it can still be accessed from the script. +The ``gameCanvas`` item is of the same size as the board, and has a ``score`` +property and a MouseArea to handle mouse clicks. The blocks are now created as +its children, and its dimensions are used to determine the board size +so that the application scales to the available screen size. As the item's size +is bound to a multiple of ``blockSize``, ``blockSize`` is moved into ``samegame.qml`` +from ``samegame.js``, as a QML property. + +.. Note:: The ``blockSize`` can still be accessed from the script. -When clicked, the MouseArea calls ``handleClick()`` in ``samegame.js``, which determines whether the player's click should cause any blocks to be removed, and updates ``gameCanvas.score`` with the current score if necessary. Here is the ``handleClick()`` function: +When clicked, the MouseArea calls ``handleClick()`` in ``samegame.js``, which +determines whether the player's click should cause any blocks to be removed, +and updates ``gameCanvas.score`` with the current score if necessary. Here is +the ``handleClick()`` function: .. pysideinclude:: samegame/samegame3/samegame.js :snippet: 1 -Note that if ``score`` was a global variable in the ``samegame.js`` file you would not be able to bind to it. You can only bind to QML properties. +.. Note:: If ``score`` was a global variable in the ``samegame.js`` file, + you would not be able to bind to it. You can only bind to QML properties. Updating the score ================== -When the player clicks a block and triggers \c handleClick(), \c handleClick() also calls \c victoryCheck() to update the score and to check whether the player has completed the game. Here is the \c victoryCheck() code: +When the player clicks a block and triggers \c handleClick(), \c handleClick() +also calls \c victoryCheck() to update the score and to check whether the +player has completed the game. Here is the \c victoryCheck() code: .. pysideinclude:: samegame/samegame3/samegame.js :snippet: 2 -This updates the ``gameCanvas.score`` value and displays a "Game Over" dialog if the game is finished. +This updates the ``gameCanvas.score`` value and displays a "Game Over" dialog +if the game is finished. -The Game Over dialog is created using a ``Dialog`` element that is defined in ``Dialog.qml``. Here is the ``Dialog.qml`` code. Notice how it is designed to be usable imperatively from the script file, via the functions and signals: +The Game Over dialog is created using a ``Dialog`` item that is defined in +``Dialog.qml``. Here is the ``Dialog.qml`` code: .. pysideinclude:: samegame/samegame3/Dialog.qml :snippet: 0 -And this is how it is used in the main ``samegame.qml`` file: +Notice how it is designed to be usable imperatively from the script file, via +the functions and signals. And this is how it is used in the main +``samegame.qml`` file: .. pysideinclude:: samegame/samegame3/samegame.qml :snippet: 2 -We give the dialog a ``z`` value of 100 to ensure it is displayed on top of our other components. The default ``z`` value for an item is 0. +Give the dialog a ``z`` value of 100 to ensure it is displayed on top of our +other components. The default ``z`` value for an item is 0. A dash of color --------------- -It's not much fun to play Same Game if all the blocks are the same color, so we've modified the ``createBlock()`` function in ``samegame.js`` to randomly create a different type of block (for either red, green or blue) each time it is called. ``Block.qml`` has also changed so that each block contains a different image depending on its type: +It's not much fun to play Same Game if all the blocks are of the same color, so +the ``createBlock()`` function in ``samegame.js`` randomly changes the color +to create a different type of block (for either red, green or blue) each time +it is called. ``Block.qml`` has also changed so that each block contains a +different image depending on its type: .. pysideinclude:: samegame/samegame3/Block.qml :snippet: 0 @@ -77,7 +103,8 @@ It's not much fun to play Same Game if all the blocks are the same color, so we' A working game ============== -Now we now have a working game! The blocks can be clicked, the player can score, and the game can end (and then you can start a new one). +You now have a working game! The blocks can be clicked, the player can +score, and the game can end (and then you can start a new one). Here is a screenshot of what has been accomplished so far: .. figure:: declarative-adv-tutorial3.png @@ -88,8 +115,10 @@ This is what ``samegame.qml`` looks like now: .. pysideinclude:: samegame/samegame3/samegame.qml :snippet: 0 -The game works, but it's a little boring right now. Where are the smooth animated transitions? Where are the high scores? -If you were a QML expert you could have written these in the first iteration, but in this tutorial they've been saved -until the next chapter - where your application becomes alive! +The game works, but it's a little boring right now. Where are the smooth +animated transitions? Where are the high scores? +If you were a QML expert, you could have written these in the first +iteration, but in this tutorial they've been saved until the next chapter +- where your application becomes alive! [Previous :ref:`samegame2`] [Next :ref:`samegame4`] diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame4.rst b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame4.rst index 50aaff16a..5ea38a5ad 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame4.rst +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame4.rst @@ -6,48 +6,59 @@ QML Advanced Tutorial 4 - Finishing Touches Adding some flair ================= -Now we're going to do two things to liven up the game: animate the blocks and add a High Score system. +In this chapter, you are going to do two things to enhance the game +experience: animate the blocks and add a High Score system. -We've also cleaned up the directory structure for our application files. We now have a lot of files, so all the -JavaScript and QML files outside of ``samegame.qml`` have been moved into a new sub-directory named "content". +You should clean up the directory structure, now that there are a +lot of files. Move all the JavaScript and QML files outside of ``samegame.qml`` +into a new sub-directory named "content". -In anticipation of the new block animations, ``Block.qml`` file is now renamed to ``BoomBlock.qml``. +In anticipation of the new block animations, ``Block.qml`` file is now renamed +to ``BoomBlock.qml``. Animating block movement ------------------------ -First we will animate the blocks so that they move in a fluid manner. QML has a number of methods for adding fluid -movement, and in this case we're going to use the Behavior element to add a SpringAnimation. -In ``BoomBlock.qml``, we apply a SpringAnimation behavior to the ``x`` and ``y`` properties so that the -block will follow and animate its movement in a spring-like fashion towards the specified position (whose -values will be set by ``samegame.js``).Here is the code added to ``BoomBlock.qml``: +First, you will animate the blocks so that they move in a fluid manner. QML has +a number of methods for adding fluid movement, and in this case you are going to +use the Behavior type to add a SpringAnimation. In ``BoomBlock.qml``, apply a +SpringAnimation behavior to the ``x`` and ``y`` properties so that the +block follows and animate its movement in a spring-like fashion towards the +specified position (whose values are set by ``samegame.js``). Here is the code +added to ``BoomBlock.qml``: .. pysideinclude:: samegame/samegame4/content/BoomBlock.qml :snippet: 1 -The ``spring`` and ``damping`` values can be changed to modify the spring-like effect of the animation. +The ``spring`` and ``damping`` values can be changed to modify the spring-like +effect of the animation. -The ``enabled: spawned`` setting refers to the ``spawned`` value that is set from ``createBlock()`` in ``samegame.js``. -This ensures the SpringAnimation on the ``x`` is only enabled after ``createBlock()`` has set the block to -the correct position. Otherwise, the blocks will slide out of the corner (0,0) when a game begins, instead of falling -from the top in rows. (Try commenting out ``enabled: spawned`` and see for yourself.) +The ``enabled: spawned`` setting refers to the ``spawned`` value that comes from +the ``createBlock()`` function in ``samegame.js``. This ensures that the +SpringAnimation on ``x`` is only enabled after ``createBlock()`` has set the +block to the correct position. Otherwise, the blocks will slide out of the +corner (0,0) when a game begins, instead of falling from the top in rows. +Try commenting out the line, ``enabled: spawned``, and see the effect for +yourself. Animating block opacity changes ------------------------------- -Next, we will add a smooth exit animation. For this, we'll use a Behavior element, which allows us to specify -a default animation when a property change occurs. In this case, when the ``opacity`` of a Block changes, we will -animate the opacity value so that it gradually fades in and out, instead of abruptly changing between fully -visible and invisible. To do this, we'll apply a Behavior on the ``opacity`` property of the ``Image`` -element in ``BoomBlock.qml``: +Next, add a smooth exit animation. For this, use a Behavior type, which +allows us to specify a default animation when a property change occurs. In this +case, when the ``opacity`` of a Block changes, animate the opacity value so that +it gradually fades in and out, instead of abruptly changing between fully +visible and invisible. To do this, apply a Behavior on the ``opacity`` property +of the ``Image`` item in ``BoomBlock.qml``: .. pysideinclude:: samegame/samegame4/content/BoomBlock.qml :snippet: 2 -Note the ``opacity: 0`` which means the block is transparent when it is first created. We could set the opacity -in ``samegame.js`` when we create and destroy the blocks, -but instead we'll use states, since this is useful for the next animation we're going to add. -Initially, we add these States to the root element of ``BoomBlock.qml``: +Note the ``opacity: 0``, which means the block is transparent when it is first +created. You could set the opacity in ``samegame.js`` when we create and +destroy the blocks, but use states instead, as this is useful for the next +animation you are going to add. Initially, add these States to the root +item of ``BoomBlock.qml``: :: @@ -61,42 +72,53 @@ Initially, we add these States to the root element of ``BoomBlock.qml``: } ] -Now blocks will automatically fade in, as we already set ``spawned`` to true when we implemented the block animations. -To fade out, we set ``dying`` to true instead of setting opacity to 0 when a block is destroyed (in the ``floodFill()`` function). +Now blocks will automatically fade in, as ``spawned`` is set to true when +you implemented the block animations. To fade out, set ``dying`` to true +instead of setting opacity to 0 when a block is destroyed (in the +``floodFill()`` function). Adding particle effects ----------------------- -Finally, we'll add a cool-looking particle effect to the blocks when they are destroyed. To do this, we first add a Particles element in -``BoomBlock.qml``, like so: +Finally, add a cool-looking particle effect to the blocks when they are +destroyed. To do this, first add a Particles item in +``BoomBlock.qml``, like this: .. pysideinclude:: samegame/samegame4/content/BoomBlock.qml :snippet: 3 -To fully understand this you should read the Particles documentation, but it's important to note that ``emissionRate`` is set -to zero so that particles are not emitted normally. -Also, we extend the ``dying`` State, which creates a burst of particles by calling the ``burst()`` method on the particles element. The code for the states now look -like this: +To fully understand this you should read the Particles documentation, +but it's important to note that ``emissionRate`` is set to zero so that +particles are not emitted normally. Also, extend the ``dying`` State, +which creates a burst of particles by calling the ``burst()`` method on the +particles item. The code for the states now look like this: .. pysideinclude:: samegame/samegame4/content/BoomBlock.qml :snippet: 4 -Now the game is beautifully animated, with subtle (or not-so-subtle) animations added for all of the -player's actions. The end result is shown below, with a different set of images to demonstrate basic theming: +Now the gaming experience is pleasing with these animations. With a few +more simple animations for all of the player's actions, it will look even better. +The end result is shown below, with a different set of images to demonstrate +the basic theme: .. figure:: declarative-adv-tutorial4.gif :align: center -The theme change here is produced simply by replacing the block images. This can be done at runtime by changing the \l Image \c source property, so for a further challenge, you could add a button that toggles between themes with different images. +The theme change here is produced simply by replacing the block images. This +can be done at runtime by changing the ``source`` property of the Image. You +could go a step further and add a button that toggles between themes with +different images. -Keeping a High Scores table +Keeping a high scores table =========================== -Another feature we might want to add to the game is a method of storing and retrieving high scores. +Another feature you might want to add to the game is a method of storing and +retrieving high scores. -To do this, we will show a dialog when the game is over to request the player's name and add it to a High Scores table. -This requires a few changes to ``Dialog.qml``. In addition to a ``Text`` element, it now has a -``TextInput`` child item for receiving keyboard text input: +To do this, show a dialog when the game is over to request the player's name +and add it to a High Scores table. This requires a few changes to +``Dialog.qml``. In addition to a ``Text`` item, it now has a ``TextInput`` +child item for receiving keyboard text input: .. pysideinclude:: samegame/samegame4/content/Dialog.qml :snippet: 2 @@ -106,9 +128,10 @@ This requires a few changes to ``Dialog.qml``. In addition to a ``Text`` element } -We'll also add a ``showWithInput()`` function. The text input will only be visible if this function -is called instead of ``show()``. When the dialog is closed, it emits a ``closed()`` signal, and -other elements can retrieve the text entered by the user through an ``inputText`` property: +Also, add a ``showWithInput()`` function. The text input will only be visible if +this function is called instead of ``show()``. When the dialog is closed, it +emits a ``closed()`` signal, and other items can retrieve the text entered by +the user through the ``inputText`` property: .. pysideinclude:: samegame/samegame4/content/Dialog.qml :snippet: 1 @@ -122,9 +145,12 @@ Now the dialog can be used in ``samegame.qml``: .. pysideinclude:: samegame/samegame4/samegame.qml :snippet: 0 -When the dialog emits the ``closed`` signal, we call the new ``saveHighScore()`` function in ``samegame.js``, which stores the high score locally in an SQL database and also send the score to an online database if possible. +When the dialog emits the ``closed`` signal, we call the new ``saveHighScore()`` +function in ``samegame.js``, to store the high score locally in an SQL database +and also send the score to an online database if possible. -The ``nameInputDialog`` is activated in the ``victoryCheck()`` function in ``samegame.js``: +The ``nameInputDialog`` is activated in the ``victoryCheck()`` function in +``samegame.js``: .. pysideinclude:: samegame/samegame4/content/samegame.js :snippet: 4 @@ -134,40 +160,60 @@ The ``nameInputDialog`` is activated in the ``victoryCheck()`` function in ``sam Storing high scores offline --------------------------- -Now we need to implement the functionality to actually save the High Scores table. +Now, you need to implement the functionality to actually save the High Scores table. Here is the ``saveHighScore()`` function in ``samegame.js``: .. pysideinclude:: samegame/samegame4/content/samegame.js :snippet: 2 -First we call ``sendHighScore()`` (explained in the section below) if it is possible to send the high scores to an online database. - -Then, we use the Offline Storage API to maintain a persistant SQL database unique to this application. We create an offline storage database for the high scores using ``openDatabase()`` and prepare the data and SQL query that we want to use to save it. The offline storage API uses SQL queries for data manipulation and retrival, and in the ``db.transaction()`` call we use three SQL queries to initialize the database (if necessary), and then add to and retrieve high scores. To use the returned data, we turn it into a string with one line per row returned, and show a dialog containing that string. - -This is one way of storing and displaying high scores locally, but certainly not the only way. A more complex alternative would be to create a high score dialog component, and pass it the results for processing and display (instead of reusing the ``Dialog``). This would allow a more themeable dialog that could beter present the high scores. If your QML is the UI for a Python application, you could also have passed the score to a Python function to store it locally in a variety of ways, including a simple format without SQL or in another SQL database. +First, call ``sendHighScore()`` to send the high scores to an online database. + +Then, use the Offline Storage API to maintain a persistent SQL database, unique +to this application. Create an offline storage database for the high scores +using ``openDatabase()``, then prepare the data and SQL query that we want to use +to save it. The offline storage API uses SQL queries for data manipulation and +retrieval. The ``db.transaction()`` uses three SQL queries: + * To initialize the database, if necessary. + * To add high scores to the database. + * To retrieve the high score records. + +To use the returned records, turn it into a string with one line per row, and show +a dialog containing that string. + +This is one way of storing and displaying high scores locally, but certainly +not the only way. A more complex alternative would be to create a high score +dialog component, and pass it the results for processing and display (instead +of reusing the ``Dialog``). This allows for a more themeable dialog that could +present the high scores in a better way. If you are using QML-based UI for a +Python application, you can also pass the score to a function that stores it +locally in a variety of ways. This can be a simple format without SQL, or in +another SQL database. Storing high scores online -------------------------- -You've seen how you can store high scores locally, but it is also easy to integrate a web-enabled high score storage into your QML application. The implementation we've done here is very -simple: the high score data is posted to a php script running on a server somewhere, and that server then stores it and -displays it to visitors. You could also request an XML or QML file from that same server, which contains and displays the scores, -but that's beyond the scope of this tutorial. The php script we use here is available in the ``examples`` directory. - -If the player entered their name we can send the data to the web service us +You've seen how you can store high scores locally, but it is also easy to +integrate a web-enabled high score storage into your application. The +implementation we've done here is very simple: the high score data is posted to +a php script running on a server somewhere, and that server then stores it and +displays it to visitors. You could also request an XML or QML file, which +contains and displays the scores, but that's beyond the scope of this tutorial. +The php script used here is available in the ``examples`` directory. -If the player enters a name, we send the data to the service using this code in ``samegame.js``: +If the player entered their name, you can send the data to an online database +service. The following code snippet from ``samegame.js`` demonstrates this well: .. pysideinclude:: samegame/samegame4/content/samegame.js :snippet: 1 -The XMLHttpRequest in this code is the same as the ``XMLHttpRequest()`` as you'll find in standard browser JavaScript, and can be used in the same way to dynamically get XML -or QML from the web service to display the high scores. We don't worry about the response in this case - we just post the high +The XMLHttpRequest in this code is the same as the ``XMLHttpRequest()`` as you'll +find in standard browser JavaScript, and can be used in the same way to +dynamically get XML or QML from the web service to display the high scores. We don't worry about the response in this case - we just post the high score data to the web server. If it had returned a QML file (or a URL to a QML file) you could instantiate it in much the same way as you did with the blocks. -An alternate way to access and submit web-based data would be to use QML elements designed for this purpose. XmlListModel +An alternate way to access and submit web-based data would be to use QML items designed for this purpose. XmlListModel makes it very easy to fetch and display XML based data such as RSS in a QML application (see the Flickr demo for an example). @@ -176,7 +222,7 @@ That's it! By following this tutorial you've seen how you can write a fully functional application in QML: -* Build your application with QML elements. +* Build your application with QML items. * Add application logic with JavaScript code. * Add animations with Behaviors and states. * Store persistent application data using, for example, the Offline Storage API or XMLHttpRequest. @@ -184,4 +230,4 @@ By following this tutorial you've seen how you can write a fully functional appl There is so much more to learn about QML that we haven't been able to cover in this tutorial. Check out all the demos and examples and the documentation to see all the things you can do with QML! -[Previous :ref:`samegame3`] \ No newline at end of file +[Previous :ref:`samegame3`] -- cgit v1.2.3 From d90fcd0f0f0e1279676714f6835fd9ae3c1258db Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 30 Apr 2018 15:36:56 +0200 Subject: Add Positioning, Location and Sensors to documentation Task-number: PYSIDE-363 Change-Id: Idc4418b6313c2f6b7946fcfb80abc772caec361b Reviewed-by: Alexandru Croitor --- sources/pyside2/doc/index.rst | 8 ++++++++ sources/pyside2/doc/qtmodules/pyside-qtlocation.qdocconf.in | 3 +++ sources/pyside2/doc/qtmodules/pyside-qtpositioning.qdocconf.in | 3 +++ sources/pyside2/doc/qtmodules/pyside-qtsensors.qdocconf.in | 3 +++ 4 files changed, 17 insertions(+) create mode 100644 sources/pyside2/doc/qtmodules/pyside-qtlocation.qdocconf.in create mode 100644 sources/pyside2/doc/qtmodules/pyside-qtpositioning.qdocconf.in create mode 100644 sources/pyside2/doc/qtmodules/pyside-qtsensors.qdocconf.in diff --git a/sources/pyside2/doc/index.rst b/sources/pyside2/doc/index.rst index c8345597f..c8cd2fa79 100644 --- a/sources/pyside2/doc/index.rst +++ b/sources/pyside2/doc/index.rst @@ -88,7 +88,15 @@ Qt Modules Enables synchronizing frames with the Qt 3D backend. - `Qt 3D Render `_ Contains functionality to support 2D and 3D rendering using Qt 3D. + * - `Qt Positioning `_ + Provides positioning information via QML and Python interfaces. + - `Qt Location `_ + Helps you create viable mapping solutions using the data available from some of the popular location services. + * - `Qt Sensors `_ + Provides access to sensor hardware via QML and Python interfaces and a motion gesture recognition API for devices. + - +provides access to sensor hardware via QML and C++ interfaces. The Qt Sensors API also provides a motion gesture recognition API for devices. .. toctree:: :maxdepth: 2 diff --git a/sources/pyside2/doc/qtmodules/pyside-qtlocation.qdocconf.in b/sources/pyside2/doc/qtmodules/pyside-qtlocation.qdocconf.in new file mode 100644 index 000000000..5536e0c8b --- /dev/null +++ b/sources/pyside2/doc/qtmodules/pyside-qtlocation.qdocconf.in @@ -0,0 +1,3 @@ +include(@QT_SRC_DIR@/../qtlocation/src/location/doc/qtlocation.qdocconf) +includepaths += -I @QT_SRC_DIR@/../qtlocation/src/location/doc +include(../pyside-config.qdocconf) diff --git a/sources/pyside2/doc/qtmodules/pyside-qtpositioning.qdocconf.in b/sources/pyside2/doc/qtmodules/pyside-qtpositioning.qdocconf.in new file mode 100644 index 000000000..4a2c677d5 --- /dev/null +++ b/sources/pyside2/doc/qtmodules/pyside-qtpositioning.qdocconf.in @@ -0,0 +1,3 @@ +include(@QT_SRC_DIR@/../qtlocation/src/positioning/doc/qtpositioning.qdocconf) +includepaths += -I @QT_SRC_DIR@/../qtlocation/src/positioning/doc +include(../pyside-config.qdocconf) diff --git a/sources/pyside2/doc/qtmodules/pyside-qtsensors.qdocconf.in b/sources/pyside2/doc/qtmodules/pyside-qtsensors.qdocconf.in new file mode 100644 index 000000000..b407db75c --- /dev/null +++ b/sources/pyside2/doc/qtmodules/pyside-qtsensors.qdocconf.in @@ -0,0 +1,3 @@ +include(@QT_SRC_DIR@/../qtsensors/src/sensors/doc/qtsensors.qdocconf) +includepaths += -I @QT_SRC_DIR@/../qtsensors/src/sensors/doc +include(../pyside-config.qdocconf) -- cgit v1.2.3 From d5581049f8789eae86e91372f34ec8ed794272aa Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 2 May 2018 10:21:55 +0200 Subject: Add option to create additional documentation Add an option taking a list of files under the webxml directory that are run though the Sphinx converter to create .rst files. This can be used for tutorials and example descriptions. Task-number: PYSIDE-363 Change-Id: Ifa6df32517a2b336cd3f755523947d70c5c24f2e Reviewed-by: Alexandru Croitor --- sources/pyside2/doc/CMakeLists.txt | 1 + sources/pyside2/doc/additionaldocs.lst | 583 +++++++++++++++++++++ .../shiboken2/generator/qtdoc/qtdocgenerator.cpp | 96 +++- sources/shiboken2/generator/qtdoc/qtdocgenerator.h | 9 + 4 files changed, 685 insertions(+), 4 deletions(-) create mode 100644 sources/pyside2/doc/additionaldocs.lst diff --git a/sources/pyside2/doc/CMakeLists.txt b/sources/pyside2/doc/CMakeLists.txt index e40602b97..5b2ab224e 100644 --- a/sources/pyside2/doc/CMakeLists.txt +++ b/sources/pyside2/doc/CMakeLists.txt @@ -94,6 +94,7 @@ add_custom_target("docrsts" --output-directory=${CMAKE_CURRENT_BINARY_DIR}/rst --documentation-code-snippets-dir=${CMAKE_CURRENT_SOURCE_DIR}/codesnippets/doc/src/snippets${PATH_SEP}${CMAKE_CURRENT_SOURCE_DIR}/codesnippets/examples --documentation-extra-sections-dir=${CMAKE_CURRENT_SOURCE_DIR}/extras + --additional-documentation=${CMAKE_CURRENT_LIST_DIR}/additionaldocs.lst ${CMAKE_CURRENT_BINARY_DIR}/typesystem_doc.xml WORKING_DIRECTORY ${${module}_SOURCE_DIR} COMMENT "Running generator to generate documentation..." diff --git a/sources/pyside2/doc/additionaldocs.lst b/sources/pyside2/doc/additionaldocs.lst new file mode 100644 index 000000000..057464df9 --- /dev/null +++ b/sources/pyside2/doc/additionaldocs.lst @@ -0,0 +1,583 @@ +############################################################################# +## +## Copyright (C) 2018 The Qt Company Ltd. +## Contact: https://www.qt.io/licensing/ +## +## This file is part of the Qt for Python project. +## +## $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 The Qt Company. For licensing terms +## and conditions see https://www.qt.io/terms-conditions. For further +## information use the contact form at https://www.qt.io/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 3 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL3 included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 3 requirements +## will be met: https://www.gnu.org/licenses/lgpl-3.0.html. +## +## GNU General Public License Usage +## Alternatively, this file may be used under the terms of the GNU +## General Public License version 2.0 or (at your option) the GNU General +## Public license version 3 or any later version approved by the KDE Free +## Qt Foundation. The licenses are as published by the Free Software +## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 +## included in the packaging of this file. Please review the following +## information to ensure the GNU General Public License requirements will +## be met: https://www.gnu.org/licenses/gpl-2.0.html and +## https://www.gnu.org/licenses/gpl-3.0.html. +## +## $QT_END_LICENSE$ +## +############################################################################# + +# This is a list of additional documentation files created by the below script +# and some hand-editing. +# for F in *.webxml +# do +# echo "$F" | egrep '(-index)|(-module)|(-qmlmodule)\.webxml$' > /dev/null +# if [ $? -ne 0 ] +# then +# if fgrep '' "$F" > /dev/null # Exclude reference only +# then +# egrep "( /dev/null || echo $F +# fi +# fi +# done + +animation-overview.webxml +animation.webxml +application-windows.webxml +audiooverview.webxml +bearer-management.webxml +cameraoverview.webxml +# changes.webxml +codec-big5.webxml +codec-big5hkscs.webxml +codec-eucjp.webxml +codec-euckr.webxml +codec-gbk.webxml +codec-sjis.webxml +codec-tscii.webxml +codecs-jis.webxml +compatmap.webxml +# containers.webxml +coordsys.webxml +creating-a-sensor-plugin.webxml +custom-types.webxml +datastreamformat.webxml +datavisualization-examples.webxml +determining-the-default-sensor-for-a-type.webxml +dialogs.webxml +dnd.webxml +dynamic-sensor-backend-registration.webxml +events.webxml +eventsandfilters.webxml +examples-desktop.webxml +examples-dialogs.webxml +examples-graphicsview.webxml +examples-itemviews.webxml +examples-mainwindow.webxml +examples-network.webxml +examples-painting.webxml +examples-qthelp.webxml +examples-qtuitools.webxml +examples-richtext.webxml +examples-widgets-opengl.webxml +examples-widgets.webxml +focus.webxml +gallery.webxml +genericbackend.webxml +gestures-overview.webxml +graphicsview.webxml +guibooks.webxml +helpsystem.webxml +implicit-sharing.webxml +io-functions.webxml +io.webxml +json.webxml +layout.webxml +location-cpp-qml.webxml +location-maps-cpp.webxml +location-maps-qml.webxml +location-places-backend.webxml +location-places-cpp.webxml +location-places-qml.webxml +location-plugin-esri.webxml +location-plugin-here.webxml +location-plugin-itemsoverlay.webxml +location-plugin-mapbox.webxml +location-plugin-mapboxgl.webxml +location-plugin-osm.webxml +location-positioning-cpp.webxml +location-positioning-qml.webxml +mainwindow.webxml +metaobjects.webxml +model-view-programming.webxml +modelview.webxml +multimedia-examples.webxml +multimediabackend.webxml +multimediaoverview.webxml +object.webxml +objecttrees.webxml +painting.webxml +paintsystem-devices.webxml +paintsystem-drawing.webxml +paintsystem-images.webxml +paintsystem.webxml +pdf-licensing.webxml +plugins.webxml +positioning-cpp-qml.webxml +properties.webxml +qfloat16.webxml +qml-advtutorial.webxml +qml-dynamicview-tutorial.webxml +qml-location5-maps.webxml +qml-multimedia.webxml +qml-qtlocation5-maps.webxml +qml-tutorial.webxml +qml-tutorial1.webxml +qml-tutorial2.webxml +qml-tutorial3.webxml +qmlexampletoggleswitch.webxml +qt3d-advancedcustommaterial-example.webxml +qt3d-audio-visualizer-qml-example.webxml +qt3d-basicshapes-cpp-example.webxml +qt3d-cpp.webxml +qt3d-examples.webxml +qt3d-multiviewport-example.webxml +qt3d-overview.webxml +qt3d-pbr-materials-example.webxml +qt3d-planets-qml-example.webxml +qt3d-qml.webxml +qt3d-scene2d-example.webxml +qt3d-scene3d-example.webxml +qt3d-shadow-map-qml-example.webxml +qt3d-simple-cpp-example.webxml +qt3d-simple-qml-example.webxml +qt3d-simplecustommaterial-example.webxml +qt3d-wave-example.webxml +qt3d-widgets-scene3d-example.webxml +qt3d-wireframe-example.webxml +qt3drender-framegraph.webxml +qt3drender-geometry.webxml +qt3drender-protips.webxml +qtalgorithms.webxml +qtconcurrent-imagescaling-example.webxml +qtconcurrent-map-example.webxml +qtconcurrent-progressdialog-example.webxml +qtconcurrent-runfunction-example.webxml +qtconcurrent-wordcount-example.webxml +qtconcurrentfilter.webxml +qtconcurrentmap.webxml +qtconcurrentrun.webxml +qtcore-ipc-localfortuneclient-example.webxml +qtcore-ipc-localfortuneserver-example.webxml +qtcore-ipc-sharedmemory-example.webxml +qtcore-mimetypes-mimetypebrowser-example.webxml +qtcore-serialization-savegame-example.webxml +qtcore-threads-mandelbrot-example.webxml +qtcore-threads-queuedcustomtype-example.webxml +qtcore-threads-semaphores-example.webxml +qtcore-threads-waitconditions-example.webxml +qtcore-tools-contiguouscache-example.webxml +qtcore-tools-customtype-example.webxml +qtdatavisualization-audiolevels-example.webxml +qtdatavisualization-bars-example.webxml +qtdatavisualization-custominput-example.webxml +qtdatavisualization-customitems-example.webxml +qtdatavisualization-customproxy-example.webxml +qtdatavisualization-data-handling.webxml +qtdatavisualization-draggableaxes-example.webxml +qtdatavisualization-interacting-with-data.webxml +qtdatavisualization-itemmodel-example.webxml +qtdatavisualization-known-issues.webxml +qtdatavisualization-overview.webxml +qtdatavisualization-qmlaxisdrag-example.webxml +qtdatavisualization-qmlaxisformatter-example.webxml +qtdatavisualization-qmlbars-example.webxml +qtdatavisualization-qmlcustominput-example.webxml +qtdatavisualization-qmllegend-example.webxml +qtdatavisualization-qmlmultigraph-example.webxml +qtdatavisualization-qmloscilloscope-example.webxml +qtdatavisualization-qmlscatter-example.webxml +qtdatavisualization-qmlspectrogram-example.webxml +qtdatavisualization-qmlsurface-example.webxml +qtdatavisualization-qmlsurfacelayers-example.webxml +qtdatavisualization-rotations-example.webxml +qtdatavisualization-scatter-example.webxml +qtdatavisualization-surface-example.webxml +qtdatavisualization-texturesurface-example.webxml +qtdatavisualization-volumetric-example.webxml +qtest-overview.webxml +qtest-tutorial.webxml +qtglobal.webxml +qtgui-analogclock-example.webxml +qtgui-hellovulkancubes-example.webxml +qtgui-hellovulkantexture-example.webxml +qtgui-hellovulkantriangle-example.webxml +qtgui-hellovulkanwidget-example.webxml +qtgui-hellovulkanwindow-example.webxml +qtgui-openglwindow-example.webxml +qtgui-rasterwindow-example.webxml +qthelp-framework.webxml +qthelpproject.webxml +qtlocation-changes.webxml +qtlocation-cpp.webxml +qtlocation-examples.webxml +qtlocation-geoservices.webxml +qtlocation-mapviewer-example.webxml +qtlocation-minimal-map-example.webxml +qtlocation-places-example.webxml +qtlocation-places-list-example.webxml +qtlocation-places-map-example.webxml +qtlocation-planespotter-example.webxml +qtmath.webxml +qtmultimedia-ios.webxml +qtmultimedia-multimedia-audiodevices-example.webxml +qtmultimedia-multimedia-audioengine-example.webxml +qtmultimedia-multimedia-audioinput-example.webxml +qtmultimedia-multimedia-audiooutput-example.webxml +qtmultimedia-multimedia-audiorecorder-example.webxml +qtmultimedia-multimedia-declarative-camera-example.webxml +qtmultimedia-multimedia-declarative-radio-example.webxml +qtmultimedia-multimedia-spectrum-example.webxml +qtmultimedia-multimedia-video-qmlvideo-example.webxml +qtmultimedia-multimedia-video-qmlvideofx-example.webxml +qtmultimedia-multimediawidgets-camera-example.webxml +qtmultimedia-multimediawidgets-player-example.webxml +qtmultimedia-multimediawidgets-videographicsitem-example.webxml +qtmultimedia-multimediawidgets-videowidget-example.webxml +qtmultimedia-windows.webxml +qtnetwork-blockingfortuneclient-example.webxml +qtnetwork-broadcastreceiver-example.webxml +qtnetwork-broadcastsender-example.webxml +qtnetwork-download-example.webxml +qtnetwork-downloadmanager-example.webxml +qtnetwork-fortuneclient-example.webxml +qtnetwork-fortuneserver-example.webxml +qtnetwork-googlesuggest-example.webxml +qtnetwork-http-example.webxml +qtnetwork-loopback-example.webxml +qtnetwork-multicastreceiver-example.webxml +qtnetwork-multicastsender-example.webxml +qtnetwork-network-chat-example.webxml +qtnetwork-programming.webxml +qtnetwork-securesocketclient-example.webxml +qtnetwork-threadedfortuneserver-example.webxml +qtnetwork-torrent-example.webxml +qtopengl-2dpainting-example.webxml +qtopengl-cube-example.webxml +qtopengl-hellogl2-example.webxml +qtpositioning-examples.webxml +qtpositioning-geoflickr-example.webxml +qtpositioning-logfilepositionsource-example.webxml +qtpositioning-plugins.webxml +qtpositioning-satelliteinfo-example.webxml +qtpositioning-weatherinfo-example.webxml +qtquick-animation-example.webxml +qtquick-bestpractices.webxml +qtquick-canvas-example.webxml +qtquick-codesamples.webxml +qtquick-convenience-topic.webxml +qtquick-cppextensionpoints.webxml +qtquick-customitems-dialcontrol-example.webxml +qtquick-customitems-flipable-example.webxml +qtquick-customitems-painteditem-example.webxml +qtquick-customitems-scrollbar-example.webxml +qtquick-customitems-tabwidget-example.webxml +qtquick-demos-calqlatr-example.webxml +qtquick-demos-clocks-example.webxml +qtquick-demos-maroon-example.webxml +qtquick-demos-photosurface-example.webxml +qtquick-demos-photoviewer-example.webxml +qtquick-demos-rssnews-example.webxml +qtquick-demos-samegame-example.webxml +qtquick-demos-stocqt-example.webxml +qtquick-demos-tweetsearch-example.webxml +qtquick-draganddrop-example.webxml +qtquick-effects-particles.webxml +qtquick-effects-sprites.webxml +qtquick-effects-topic.webxml +qtquick-effects-transformations.webxml +qtquick-externaldraganddrop-example.webxml +qtquick-imageelements-example.webxml +qtquick-imageprovider-example.webxml +qtquick-imageresponseprovider-example.webxml +qtquick-input-focus.webxml +qtquick-input-mouseevents.webxml +qtquick-input-textinput.webxml +qtquick-input-topic.webxml +qtquick-keyinteraction-example.webxml +qtquick-layouts-example.webxml +qtquick-localstorage-example.webxml +qtquick-modelviewsdata-cppmodels.webxml +qtquick-modelviewsdata-modelview.webxml +qtquick-modelviewsdata-topic.webxml +qtquick-mousearea-example.webxml +qtquick-particles-affectors-example.webxml +qtquick-particles-customparticle-example.webxml +qtquick-particles-emitters-example.webxml +qtquick-particles-imageparticle-example.webxml +qtquick-particles-performance.webxml +qtquick-particles-system-example.webxml +qtquick-positioners-example.webxml +qtquick-positioning-anchors.webxml +qtquick-positioning-layouts.webxml +qtquick-positioning-righttoleft.webxml +qtquick-positioning-topic.webxml +qtquick-quick-accessibility-example.webxml +qtquick-righttoleft-example.webxml +qtquick-scenegraph-customgeometry-example.webxml +qtquick-scenegraph-materials.webxml +qtquick-scenegraph-nodes.webxml +qtquick-scenegraph-openglunderqml-example.webxml +qtquick-scenegraph-simplematerial-example.webxml +qtquick-shadereffects-example.webxml +qtquick-shapes-example.webxml +qtquick-statesanimations-animations.webxml +qtquick-statesanimations-behaviors.webxml +qtquick-statesanimations-states.webxml +qtquick-statesanimations-topic.webxml +qtquick-text-example.webxml +qtquick-text-validator.webxml +qtquick-threading-example.webxml +qtquick-threading-threadedlistmodel-example.webxml +qtquick-tools-and-utilities.webxml +qtquick-touchinteraction-example.webxml +qtquick-tutorials-dynamicview-dynamicview1-example.webxml +qtquick-tutorials-dynamicview-dynamicview2-example.webxml +qtquick-tutorials-dynamicview-dynamicview3-example.webxml +qtquick-tutorials-dynamicview-dynamicview4-example.webxml +qtquick-tutorials-samegame-samegame1-example.webxml +qtquick-tutorials-samegame-samegame2-example.webxml +qtquick-tutorials-samegame-samegame3-example.webxml +qtquick-tutorials-samegame-samegame4-example.webxml +qtquick-views-example.webxml +qtquick-visualcanvas-adaptations-d3d12.webxml +qtquick-visualcanvas-adaptations-openvg.webxml +qtquick-visualcanvas-adaptations-software.webxml +qtquick-visualcanvas-adaptations.webxml +qtquick-visualcanvas-coordinates.webxml +qtquick-visualcanvas-scenegraph-renderer.webxml +qtquick-visualcanvas-scenegraph.webxml +qtquick-visualcanvas-topic.webxml +qtquick-visualcanvas-visualparent.webxml +qtquick-visualtypes-topic.webxml +qtquick-window-example.webxml +qtquicklayouts-overview.webxml +qtsensorgestures-cpp.webxml +qtsensors-accelbubble-example.webxml +qtsensors-cpp.webxml +qtsensors-examples.webxml +qtsensors-grue-example.webxml +qtsensors-maze-example.webxml +qtsensors-porting.webxml +qtsensors-qmlqtsensors-example.webxml +qtsensors-qmlsensorgestures-example.webxml +qtsensors-sensor-explorer-example.webxml +qtsensors-sensorgestures-example.webxml +qtsensors-shakeit-example.webxml +qtsql-books-example.webxml +qtsql-cachedtable-example.webxml +qtsql-drilldown-example.webxml +qtsql-masterdetail-example.webxml +qtsql-sqlwidgetmapper-example.webxml +qtsvg-richtext-textobject-example.webxml +qtsvg-svggenerator-example.webxml +qtsvg-svgviewer-example.webxml +qttestlib-tutorial1-example.webxml +qttestlib-tutorial2-example.webxml +qttestlib-tutorial3-example.webxml +qttestlib-tutorial4-example.webxml +qttestlib-tutorial5-example.webxml +qttestlib-tutorial6.webxml +qtuitools-multipleinheritance-example.webxml +qtuitools-textfinder-example.webxml +qtwidgets-animation-easing-example.webxml +qtwidgets-animation-moveblocks-example.webxml +qtwidgets-animation-stickman-example.webxml +qtwidgets-animation-sub-attaq-example.webxml +qtwidgets-desktop-screenshot-example.webxml +qtwidgets-desktop-systray-example.webxml +qtwidgets-dialogs-classwizard-example.webxml +qtwidgets-dialogs-extension-example.webxml +qtwidgets-dialogs-findfiles-example.webxml +qtwidgets-dialogs-licensewizard-example.webxml +qtwidgets-dialogs-tabdialog-example.webxml +qtwidgets-dialogs-trivialwizard-example.webxml +qtwidgets-draganddrop-draggableicons-example.webxml +qtwidgets-draganddrop-dropsite-example.webxml +qtwidgets-draganddrop-fridgemagnets-example.webxml +qtwidgets-draganddrop-puzzle-example.webxml +qtwidgets-effects-blurpicker-example.webxml +qtwidgets-effects-fademessage-example.webxml +qtwidgets-gestures-imagegestures-example.webxml +qtwidgets-graphicsview-anchorlayout-example.webxml +qtwidgets-graphicsview-basicgraphicslayouts-example.webxml +qtwidgets-graphicsview-boxes-example.webxml +qtwidgets-graphicsview-chip-example.webxml +qtwidgets-graphicsview-collidingmice-example.webxml +qtwidgets-graphicsview-diagramscene-example.webxml +qtwidgets-graphicsview-dragdroprobot-example.webxml +qtwidgets-graphicsview-elasticnodes-example.webxml +qtwidgets-graphicsview-embeddeddialogs-example.webxml +qtwidgets-graphicsview-flowlayout-example.webxml +qtwidgets-graphicsview-padnavigator-example.webxml +qtwidgets-graphicsview-simpleanchorlayout-example.webxml +qtwidgets-graphicsview-weatheranchorlayout-example.webxml +qtwidgets-itemviews-addressbook-example.webxml +qtwidgets-itemviews-chart-example.webxml +qtwidgets-itemviews-coloreditorfactory-example.webxml +qtwidgets-itemviews-combowidgetmapper-example.webxml +qtwidgets-itemviews-customsortfiltermodel-example.webxml +qtwidgets-itemviews-dirview-example.webxml +qtwidgets-itemviews-editabletreemodel-example.webxml +qtwidgets-itemviews-fetchmore-example.webxml +qtwidgets-itemviews-frozencolumn-example.webxml +qtwidgets-itemviews-pixelator-example.webxml +qtwidgets-itemviews-puzzle-example.webxml +qtwidgets-itemviews-simpledommodel-example.webxml +qtwidgets-itemviews-simpletreemodel-example.webxml +qtwidgets-itemviews-simplewidgetmapper-example.webxml +qtwidgets-itemviews-spinboxdelegate-example.webxml +qtwidgets-itemviews-stardelegate-example.webxml +qtwidgets-layouts-basiclayouts-example.webxml +qtwidgets-layouts-borderlayout-example.webxml +qtwidgets-layouts-dynamiclayouts-example.webxml +qtwidgets-layouts-flowlayout-example.webxml +qtwidgets-mainwindows-application-example.webxml +qtwidgets-mainwindows-dockwidgets-example.webxml +qtwidgets-mainwindows-menus-example.webxml +qtwidgets-painting-affine-example.webxml +qtwidgets-painting-basicdrawing-example.webxml +qtwidgets-painting-composition-example.webxml +qtwidgets-painting-concentriccircles-example.webxml +qtwidgets-painting-deform-example.webxml +qtwidgets-painting-fontsampler-example.webxml +qtwidgets-painting-gradients-example.webxml +qtwidgets-painting-imagecomposition-example.webxml +qtwidgets-painting-painterpaths-example.webxml +qtwidgets-painting-pathstroke-example.webxml +qtwidgets-painting-transformations-example.webxml +qtwidgets-richtext-calendar-example.webxml +qtwidgets-richtext-orderform-example.webxml +qtwidgets-richtext-syntaxhighlighter-example.webxml +qtwidgets-statemachine-eventtransitions-example.webxml +qtwidgets-statemachine-factorial-example.webxml +qtwidgets-statemachine-pingpong-example.webxml +qtwidgets-statemachine-rogue-example.webxml +qtwidgets-statemachine-trafficlight-example.webxml +qtwidgets-statemachine-twowaybutton-example.webxml +qtwidgets-tools-codecs-example.webxml +qtwidgets-tools-completer-example.webxml +qtwidgets-tools-customcompleter-example.webxml +qtwidgets-tools-echoplugin-example.webxml +qtwidgets-tools-plugandpaint-app-example.webxml +qtwidgets-tools-plugandpaint-plugins-basictools-example.webxml +qtwidgets-tools-plugandpaint-plugins-extrafilters-example.webxml +qtwidgets-tools-regularexpression-example.webxml +qtwidgets-tools-styleplugin-example.webxml +qtwidgets-tools-treemodelcompleter-example.webxml +qtwidgets-tools-undo-example.webxml +qtwidgets-tools-undoframework-example.webxml +qtwidgets-tutorials-addressbook-part1-example.webxml +qtwidgets-tutorials-addressbook-part2-example.webxml +qtwidgets-tutorials-addressbook-part3-example.webxml +qtwidgets-tutorials-addressbook-part4-example.webxml +qtwidgets-tutorials-addressbook-part5-example.webxml +qtwidgets-tutorials-addressbook-part6-example.webxml +qtwidgets-tutorials-addressbook-part7-example.webxml +qtwidgets-tutorials-notepad-example.webxml +qtwidgets-tutorials-widgets-childwidget-example.webxml +qtwidgets-tutorials-widgets-nestedlayouts-example.webxml +qtwidgets-tutorials-widgets-toplevel-example.webxml +qtwidgets-tutorials-widgets-windowlayout-example.webxml +qtwidgets-widgets-analogclock-example.webxml +qtwidgets-widgets-calculator-example.webxml +qtwidgets-widgets-calendarwidget-example.webxml +qtwidgets-widgets-charactermap-example.webxml +qtwidgets-widgets-codeeditor-example.webxml +qtwidgets-widgets-digitalclock-example.webxml +qtwidgets-widgets-elidedlabel-example.webxml +qtwidgets-widgets-groupbox-example.webxml +qtwidgets-widgets-icons-example.webxml +qtwidgets-widgets-imageviewer-example.webxml +qtwidgets-widgets-lineedits-example.webxml +qtwidgets-widgets-mousebuttons-example.webxml +qtwidgets-widgets-movie-example.webxml +qtwidgets-widgets-scribble-example.webxml +qtwidgets-widgets-shapedclock-example.webxml +qtwidgets-widgets-sliders-example.webxml +qtwidgets-widgets-spinboxes-example.webxml +qtwidgets-widgets-styles-example.webxml +qtwidgets-widgets-stylesheet-example.webxml +qtwidgets-widgets-tablet-example.webxml +qtwidgets-widgets-tetrix-example.webxml +qtwidgets-widgets-tooltips-example.webxml +qtwidgets-widgets-wiggly-example.webxml +qtwidgets-widgets-windowflags-example.webxml +qtxml-dombookmarks-example.webxml +qtxml-saxbookmarks-example.webxml +qtxml-streambookmarks-example.webxml +qtxml-xmlstreamlint-example.webxml +qtxmlpatterns-filetree-example.webxml +qtxmlpatterns-recipes-example.webxml +qtxmlpatterns-schema-example.webxml +qtxmlpatterns-xquery-example.webxml +qwidget-styling.webxml +radiooverview.webxml +resources.webxml +richtext-advanced-processing.webxml +richtext-common-tasks.webxml +richtext-cursor.webxml +richtext-html-subset.webxml +richtext-layouts.webxml +richtext-structure.webxml +richtext.webxml +senorfwbackend.webxml +sensorgesture-emulator-topics.webxml +sensorgesture-plugins-topics.webxml +sensors-backend-topics.webxml +shared.webxml +signalsandslots.webxml +sql-connecting.webxml +sql-driver.webxml +sql-forms.webxml +sql-model.webxml +sql-presenting.webxml +sql-programming.webxml +sql-sqlstatements.webxml +sql-types.webxml +ssl.webxml +statemachine-api.webxml +statemachine.webxml +style-reference.webxml +stylesheet-customizing.webxml +stylesheet-designer.webxml +stylesheet-examples.webxml +stylesheet-reference.webxml +stylesheet-syntax.webxml +stylesheet.webxml +svgrendering.webxml +textedit-example.webxml +timers.webxml +tutorials-addressbook.webxml +videooverview.webxml +widget-classes.webxml +widgets-tutorial.webxml +xml-dom-tml.webxml +xml-namespaces.webxml +xml-processing.webxml +xml-sax.webxml +xml-streaming.webxml +xml-tools.webxml +xmlpattern-examples.webxml +xmlprocessing.webxml +xquery-introduction.webxml diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp index cefce32fa..7b9f25369 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp @@ -45,6 +45,8 @@ static Indentor INDENT; +static inline QString additionalDocumentationOption() { return QStringLiteral("additional-documentation"); } + static bool shouldSkip(const AbstractMetaFunction* func) { // Constructors go to separate section @@ -1119,6 +1121,26 @@ void QtXmlToSphinx::handleQuoteFileTag(QXmlStreamReader& reader) } } +bool QtXmlToSphinx::convertToRst(QtDocGenerator *generator, + const QString &sourceFileName, + const QString &targetFileName, + const QString &context, QString *errorMessage) +{ + QFile sourceFile(sourceFileName); + if (!sourceFile.open(QIODevice::ReadOnly | QIODevice::Text)) { + if (errorMessage) + *errorMessage = FileOut::msgCannotOpenForReading(sourceFile); + return false; + } + const QString doc = QString::fromUtf8(sourceFile.readAll()); + sourceFile.close(); + + FileOut targetFile(targetFileName); + QtXmlToSphinx x(generator, doc, context); + targetFile.stream << x; + return targetFile.done(errorMessage) != FileOut::Failure; +} + void QtXmlToSphinx::Table::normalize() { if (m_normalized || isEmpty()) @@ -1910,9 +1932,15 @@ static void writeFancyToc(QTextStream& s, const QStringList& items, int cols = 4 bool QtDocGenerator::finishGeneration() { - if (classes().isEmpty()) - return true; + if (!classes().isEmpty()) + writeModuleDocumentation(); + if (!m_additionalDocumentationList.isEmpty()) + writeAdditionalDocumentation(); + return true; +} +void QtDocGenerator::writeModuleDocumentation() +{ QMap::iterator it = m_packages.begin(); for (; it != m_packages.end(); ++it) { QString key = it.key(); @@ -1984,7 +2012,63 @@ bool QtDocGenerator::finishGeneration() } } } - return true; +} + +static inline QString msgNonExistentAdditionalDocFile(const QString &dir, + const QString &fileName) +{ + const QString result = QLatin1Char('"') + fileName + + QLatin1String("\" does not exist in ") + + QDir::toNativeSeparators(dir) + QLatin1Char('.'); + return result; +} + +void QtDocGenerator::writeAdditionalDocumentation() +{ + QFile additionalDocumentationFile(m_additionalDocumentationList); + if (!additionalDocumentationFile.open(QIODevice::ReadOnly | QIODevice::Text)) { + qCWarning(lcShiboken, "%s", + qPrintable(FileOut::msgCannotOpenForReading(additionalDocumentationFile))); + return; + } + const QByteArray contents = additionalDocumentationFile.readAll(); + const QStringList lines = QFile::decodeName(contents).split(QLatin1Char('\n')); + QFileInfoList additionalDocFiles; + additionalDocFiles.reserve(lines.size()); + for (const QString &lineIn : lines) { + const QString line = lineIn.trimmed(); + if (!line.isEmpty() && !line.startsWith(QLatin1Char('#'))) { + QFileInfo fi(m_docDataDir + QLatin1Char('/') + line); + if (fi.isFile()) { + additionalDocFiles.append(fi); + } else { + qCWarning(lcShiboken, "%s", + qPrintable(msgNonExistentAdditionalDocFile(m_docDataDir, line))); + } + } + } + additionalDocumentationFile.close(); + + const QString rstPrefix = outputDirectory() + QLatin1Char('/'); + const QString rstSuffix = fileNameSuffix(); + + QString errorMessage; + int successCount = 0; + for (const QFileInfo &additionalDocFile : additionalDocFiles) { + const QString rstFileName = additionalDocFile.baseName() + rstSuffix; + const QString rstFile = rstPrefix + rstFileName; + if (QtXmlToSphinx::convertToRst(this, additionalDocFile.absoluteFilePath(), + rstFile, QString(), &errorMessage)) { + ++successCount; + qCDebug(lcShiboken).nospace().noquote() << __FUNCTION__ + << " converted " << additionalDocFile.fileName() + << ' ' << rstFileName; + } else { + qCWarning(lcShiboken, "%s", qPrintable(errorMessage)); + } + } + qCInfo(lcShiboken, "Created %d/%d additional documentation files.", + successCount, additionalDocFiles.size()); } bool QtDocGenerator::doSetup(const QMap& args) @@ -2012,6 +2096,7 @@ bool QtDocGenerator::doSetup(const QMap& args) m_docParser->setDocumentationDataDirectory(m_docDataDir); m_docParser->setLibrarySourceDirectory(m_libSourceDir); } + m_additionalDocumentationList = args.value(additionalDocumentationOption()); return true; } @@ -2029,6 +2114,9 @@ Generator::OptionDescriptions QtDocGenerator::options() const << qMakePair(QLatin1String("documentation-extra-sections-dir"), QLatin1String("Directory used to search for extra documentation sections")) << qMakePair(QLatin1String("library-source-dir"), - QLatin1String("Directory where library source code is located")); + QLatin1String("Directory where library source code is located")) + << qMakePair(additionalDocumentationOption(), + QLatin1String("List of additional XML files to be converted to .rst files\n" + "(for example, tutorials).")); } diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h index f7a627127..04d3a3e62 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h @@ -102,6 +102,12 @@ public: QtXmlToSphinx(QtDocGenerator* generator, const QString& doc, const QString& context = QString()); + static bool convertToRst(QtDocGenerator *generator, + const QString &sourceFileName, + const QString &targetFileName, + const QString &context = QString(), + QString *errorMessage = nullptr); + QString result() const { return m_result; @@ -254,6 +260,8 @@ private: bool writeInjectDocumentation(QTextStream& s, TypeSystem::DocModificationMode mode, const AbstractMetaClass* cppClass, const AbstractMetaFunction* func); void writeDocSnips(QTextStream &s, const CodeSnipList &codeSnips, TypeSystem::CodeSnipPosition position, TypeSystem::Language language); + void writeModuleDocumentation(); + void writeAdditionalDocumentation(); QString parseArgDocStyle(const AbstractMetaClass *cppClass, const AbstractMetaFunction *func); QString translateToPythonType(const AbstractMetaType *type, const AbstractMetaClass *cppClass); @@ -265,6 +273,7 @@ private: QStringList m_functionList; QMap m_packages; DocParser* m_docParser; + QString m_additionalDocumentationList; }; #endif // DOCGENERATOR_H -- cgit v1.2.3 From c5582d3120249a902681454b2319df765ffa2cd8 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 30 Apr 2018 16:52:16 +0200 Subject: QtXmlToSphinx: Refactor label handling Add utility functions to remove invalid characters and a helper for streaming Task-number: PYSIDE-363 Change-Id: I45eb33ed60deed82912262a99551436c538eee22 Reviewed-by: Alexandru Croitor Reviewed-by: Cristian Maureira-Fredes --- .../shiboken2/generator/qtdoc/qtdocgenerator.cpp | 42 +++++++++++++++++++--- sources/shiboken2/generator/qtdoc/qtdocgenerator.h | 2 +- 2 files changed, 38 insertions(+), 6 deletions(-) diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp index 7b9f25369..b90077e84 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp @@ -167,6 +167,36 @@ static void formatSince(QTextStream &s, const char *what, const TypeEntry *te) } } +// RST anchor string: Anything else but letters, numbers, '_' or '.' replaced by '-' +static inline bool isValidRstLabelChar(QChar c) +{ + return c.isLetterOrNumber() || c == QLatin1Char('_') || c == QLatin1Char('.'); +} + +static QString toRstLabel(QString s) +{ + for (int i = 0, size = s.size(); i < size; ++i) { + if (!isValidRstLabelChar(s.at(i))) + s[i] = QLatin1Char('-'); + } + return s; +} + +class rstLabel +{ +public: + explicit rstLabel(const QString &l) : m_label(l) {} + + friend QTextStream &operator<<(QTextStream &str, const rstLabel &a) + { + str << ".. _" << toRstLabel(a.m_label) << ':' << endl << endl; + return str; + } + +private: + const QString &m_label; +}; + static QString msgTagWarning(const QXmlStreamReader &reader, const QString &context, const QString &tag, const QString &message) { @@ -851,9 +881,11 @@ void QtXmlToSphinx::handleLinkTag(QXmlStreamReader& reader) } } -QtXmlToSphinx::LinkContext *QtXmlToSphinx::handleLinkStart(const QString &type, const QString &ref) const +QtXmlToSphinx::LinkContext *QtXmlToSphinx::handleLinkStart(const QString &type, QString ref) const { - LinkContext *result = new LinkContext(ref, type); + ref.replace(QLatin1String("::"), QLatin1String(".")); + ref.remove(QLatin1String("()")); + LinkContext *result = new LinkContext(toRstLabel(ref), type); result->linkTagEnding = QLatin1String("` "); if (m_insideBold) { @@ -864,8 +896,6 @@ QtXmlToSphinx::LinkContext *QtXmlToSphinx::handleLinkStart(const QString &type, result->linkTagEnding.append(QLatin1Char('*')); } - result->linkRef.replace(QLatin1String("::"), QLatin1String(".")); - result->linkRef.remove(QLatin1String("()")); if (result->type == functionLinkType() && !m_context.isEmpty()) { result->linkTag = QLatin1String(" :meth:`"); @@ -1094,7 +1124,9 @@ void QtXmlToSphinx::handleAnchorTag(QXmlStreamReader& reader) anchor = reader.attributes().value(QLatin1String("name")).toString(); if (!anchor.isEmpty() && m_opened_anchor != anchor) { m_opened_anchor = anchor; - m_output << INDENT << ".. _" << m_context << "_" << anchor.toLower() << ":" << endl << endl; + if (!m_context.isEmpty()) + anchor.prepend(m_context + QLatin1Char('_')); + m_output << INDENT << rstLabel(anchor); } } else if (token == QXmlStreamReader::EndElement) { m_opened_anchor.clear(); diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h index 04d3a3e62..df0e5ef9c 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h @@ -158,7 +158,7 @@ private: void handleUselessTag(QXmlStreamReader& reader); void handleAnchorTag(QXmlStreamReader& reader); - LinkContext *handleLinkStart(const QString &type, const QString &ref) const; + LinkContext *handleLinkStart(const QString &type, QString ref) const; void handleLinkText(LinkContext *linkContext, QString linktext) const; void handleLinkEnd(LinkContext *linkContext); -- cgit v1.2.3 From 1deea556725a6599576b3b6becbf98bd90216000 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Mon, 30 Apr 2018 16:57:48 +0200 Subject: QtXmlToSphinx: Add support for more elements Add support for and elements for the additional documentation sections. Task-number: PYSIDE-363 Change-Id: I0b04106fbe6ae1779625de333368e18bbc31b962 Reviewed-by: Alexandru Croitor --- .../shiboken2/generator/qtdoc/qtdocgenerator.cpp | 41 ++++++++++++++++++++-- sources/shiboken2/generator/qtdoc/qtdocgenerator.h | 2 ++ 2 files changed, 41 insertions(+), 2 deletions(-) diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp index b90077e84..b3b918088 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp @@ -47,6 +47,11 @@ static Indentor INDENT; static inline QString additionalDocumentationOption() { return QStringLiteral("additional-documentation"); } +static inline QString nameAttribute() { return QStringLiteral("name"); } +static inline QString titleAttribute() { return QStringLiteral("title"); } +static inline QString fullTitleAttribute() { return QStringLiteral("fulltitle"); } +static inline QString briefAttribute() { return QStringLiteral("brief"); } + static bool shouldSkip(const AbstractMetaFunction* func) { // Constructors go to separate section @@ -262,7 +267,8 @@ QtXmlToSphinx::QtXmlToSphinx(QtDocGenerator* generator, const QString& doc, cons m_handlerMap.insert(QLatin1String("tableofcontents"), &QtXmlToSphinx::handleIgnoredTag); m_handlerMap.insert(QLatin1String("quotefromfile"), &QtXmlToSphinx::handleIgnoredTag); m_handlerMap.insert(QLatin1String("skipto"), &QtXmlToSphinx::handleIgnoredTag); - m_handlerMap.insert(QLatin1String("target"), &QtXmlToSphinx::handleIgnoredTag); + m_handlerMap.insert(QLatin1String("target"), &QtXmlToSphinx::handleTargetTag); + m_handlerMap.insert(QLatin1String("page"), &QtXmlToSphinx::handlePageTag); // useless tags m_handlerMap.insert(QLatin1String("description"), &QtXmlToSphinx::handleUselessTag); @@ -632,7 +638,7 @@ void QtXmlToSphinx::handleSeeAlsoTag(QXmlStreamReader& reader) handleLinkEnd(m_seeAlsoContext.data()); m_seeAlsoContext.reset(); } - m_output << endl; + m_output << endl << endl; break; default: break; @@ -729,6 +735,8 @@ void QtXmlToSphinx::handleDotsTag(QXmlStreamReader& reader) if (consecutiveSnippet) { m_output.flush(); m_output.string()->chop(2); + } else { + m_output << INDENT << "::\n\n"; } Indentation indentation(INDENT); pushOutputBuffer(); @@ -1103,6 +1111,35 @@ void QtXmlToSphinx::handleSuperScriptTag(QXmlStreamReader& reader) } } +void QtXmlToSphinx::handlePageTag(QXmlStreamReader &reader) +{ + if (reader.tokenType() != QXmlStreamReader::StartElement) + return; + + const QStringRef title = reader.attributes().value(titleAttribute()); + if (!title.isEmpty()) + m_output << rstLabel(title.toString()); + + const QStringRef fullTitle = reader.attributes().value(fullTitleAttribute()); + if (!fullTitle.isEmpty()) { + const int size = writeEscapedRstText(m_output, fullTitle); + m_output << endl << Pad('*', size) << endl << endl; + } + + const QStringRef brief = reader.attributes().value(briefAttribute()); + if (!brief.isEmpty()) + m_output << escape(brief) << endl << endl; +} + +void QtXmlToSphinx::handleTargetTag(QXmlStreamReader &reader) +{ + if (reader.tokenType() != QXmlStreamReader::StartElement) + return; + const QStringRef name = reader.attributes().value(nameAttribute()); + if (!name.isEmpty()) + m_output << INDENT << rstLabel(name.toString()); +} + void QtXmlToSphinx::handleIgnoredTag(QXmlStreamReader&) { } diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h index df0e5ef9c..f4db588f0 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h @@ -152,6 +152,8 @@ private: void handleItemTag(QXmlStreamReader& reader); void handleRawTag(QXmlStreamReader& reader); void handleCodeTag(QXmlStreamReader& reader); + void handlePageTag(QXmlStreamReader&); + void handleTargetTag(QXmlStreamReader&); void handleIgnoredTag(QXmlStreamReader& reader); void handleUnknownTag(QXmlStreamReader& reader); -- cgit v1.2.3 From a9f0d5afdc037942d6525d890502fae815bfd6f2 Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Thu, 3 May 2018 09:42:37 +0200 Subject: Fix typo on build_scripts/utils.py Change-Id: I338d38358f63af544e3cc58c9e6208a8616f98a6 Reviewed-by: Friedemann Kleint --- build_scripts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_scripts/utils.py b/build_scripts/utils.py index e69c9a58a..58efda5b7 100644 --- a/build_scripts/utils.py +++ b/build_scripts/utils.py @@ -229,7 +229,7 @@ def init_msvc_env(platform_arch, build_type): if not vcdir_path: raise DistutilsSetupError( "Failed to find the MSVC compiler version {} on your " - "system.".formar(MSVC_VERSION)) + "system.".format(MSVC_VERSION)) else: log.info("Found {}".format(vcdir_path)) -- cgit v1.2.3 From f1f5ec715dd9faf1f5002bfe9bfecc3f2c25b469 Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Wed, 2 May 2018 17:10:51 +0200 Subject: Change license from all the files Removing the word 'project' from all the headers, and changing the PySide reference from the examples to Qt for Python: The following line was used inside the source/ and build_scripts/ directory: for i in $(grep -r "the Qt for Python project" * |grep -v "pyside2-tools" | awk '{print $1}' | sed 's/:.*//g');do sed -i 's/the\ Qt\ for\ Python\ project/Qt\ for\ Python/g' $i;done and the following line was used inside the examples/ directory: for i in $(grep -r "of the PySide" * |grep -v "pyside2-tools" | awk '{print $1}' | sed 's/:.*//g');do sed -i 's/of\ the\ PySide/of\ the\ Qt\ for\ Python/g' $i;done Change-Id: Ic480714686ad62ac4d81c670f87f1c2033d4ffa1 Reviewed-by: Friedemann Kleint Reviewed-by: Alex Blasche --- build_scripts/__init__.py | 2 +- build_scripts/main.py | 2 +- build_scripts/options.py | 2 +- build_scripts/platforms/__init__.py | 2 +- build_scripts/platforms/linux.py | 2 +- build_scripts/platforms/macos.py | 2 +- build_scripts/platforms/unix.py | 2 +- build_scripts/platforms/windows_desktop.py | 2 +- build_scripts/qtinfo.py | 2 +- build_scripts/utils.py | 2 +- checklibs.py | 2 +- docs/conf.py | 2 +- docs/make.bat | 2 +- examples/3d/simple3d.py | 2 +- examples/axcontainer/axviewer.py | 2 +- examples/charts/audio.py | 2 +- examples/charts/callout.py | 2 +- examples/charts/lineandbar.py | 2 +- examples/charts/memoryusage.py | 2 +- examples/corelib/threads/mandelbrot.py | 2 +- examples/corelib/tools/codecs/codecs.py | 2 +- examples/corelib/tools/regexp.py | 2 +- examples/corelib/tools/settingseditor/settingseditor.py | 2 +- examples/datavisualization/bars3d.py | 2 +- examples/declarative/extending/chapter1-basics/app.qml | 2 +- examples/declarative/extending/chapter1-basics/basics.py | 2 +- examples/declarative/extending/chapter2-methods/app.qml | 2 +- examples/declarative/extending/chapter2-methods/methods.py | 2 +- examples/declarative/extending/chapter3-bindings/app.qml | 2 +- examples/declarative/extending/chapter3-bindings/bindings.py | 2 +- examples/declarative/extending/chapter4-customPropertyTypes/app.qml | 2 +- .../extending/chapter4-customPropertyTypes/customPropertyTypes.py | 2 +- examples/declarative/extending/chapter5-listproperties/app.qml | 2 +- .../declarative/extending/chapter5-listproperties/listproperties.py | 2 +- examples/declarative/scrolling.py | 2 +- examples/declarative/signals/pytoqml1/main.py | 2 +- examples/declarative/signals/pytoqml1/view.qml | 2 +- examples/declarative/signals/qmltopy1/main.py | 2 +- examples/declarative/signals/qmltopy1/view.qml | 2 +- examples/declarative/signals/qmltopy2/main.py | 2 +- examples/declarative/signals/qmltopy2/view.qml | 2 +- examples/declarative/signals/qmltopy3/main.py | 2 +- examples/declarative/signals/qmltopy3/view.qml | 2 +- examples/declarative/signals/qmltopy4/main.py | 2 +- examples/declarative/signals/qmltopy4/view.qml | 2 +- examples/declarative/usingmodel.py | 2 +- examples/declarative/view.qml | 2 +- examples/macextras/macpasteboardmime.py | 2 +- examples/multimedia/audiooutput.py | 2 +- examples/multimedia/camera.py | 2 +- examples/multimedia/player.py | 2 +- examples/network/blockingfortuneclient.py | 2 +- examples/network/fortuneclient.py | 2 +- examples/network/fortuneserver.py | 2 +- examples/network/threadedfortuneserver.py | 2 +- examples/opengl/2dpainting.py | 2 +- examples/opengl/contextinfo.py | 2 +- examples/opengl/grabber.py | 2 +- examples/opengl/hellogl.py | 2 +- examples/opengl/hellogl2.py | 2 +- examples/opengl/overpainting.py | 2 +- examples/opengl/samplebuffers.py | 2 +- examples/opengl/textures/textures.py | 2 +- examples/opengl/textures/textures_rc.py | 2 +- examples/script/helloscript.py | 2 +- examples/scriptableapplication/main.cpp | 2 +- examples/scriptableapplication/mainwindow.cpp | 2 +- examples/scriptableapplication/mainwindow.h | 2 +- examples/scriptableapplication/pyside2_config.py | 2 +- examples/scriptableapplication/pythonutils.cpp | 2 +- examples/scriptableapplication/pythonutils.h | 2 +- examples/scriptableapplication/scriptableapplication.xml | 2 +- examples/scriptableapplication/wrappedclasses.h | 2 +- examples/texttospeech/texttospeech.py | 2 +- examples/tutorial/t1.py | 2 +- examples/tutorial/t10.py | 2 +- examples/tutorial/t11.py | 2 +- examples/tutorial/t12.py | 2 +- examples/tutorial/t13.py | 2 +- examples/tutorial/t14.py | 2 +- examples/tutorial/t2.py | 2 +- examples/tutorial/t3.py | 2 +- examples/tutorial/t4.py | 2 +- examples/tutorial/t5.py | 2 +- examples/tutorial/t6.py | 2 +- examples/tutorial/t7.py | 2 +- examples/tutorial/t8.py | 2 +- examples/tutorial/t9.py | 2 +- examples/utils/utils.py | 2 +- examples/webenginewidgets/simplebrowser.py | 2 +- examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py | 2 +- examples/webenginewidgets/tabbedbrowser/browsertabwidget.py | 2 +- examples/webenginewidgets/tabbedbrowser/downloadwidget.py | 2 +- examples/webenginewidgets/tabbedbrowser/findtoolbar.py | 2 +- examples/webenginewidgets/tabbedbrowser/main.py | 2 +- examples/webenginewidgets/tabbedbrowser/webengineview.py | 2 +- examples/widgets/animation/animatedtiles/animatedtiles.py | 2 +- examples/widgets/animation/animatedtiles/animatedtiles_rc.py | 2 +- examples/widgets/animation/appchooser/appchooser.py | 2 +- examples/widgets/animation/appchooser/appchooser_rc.py | 2 +- examples/widgets/animation/easing/easing.py | 2 +- examples/widgets/animation/easing/easing_rc.py | 2 +- examples/widgets/animation/states/states.py | 2 +- examples/widgets/animation/states/states_rc.py | 2 +- examples/widgets/dialogs/classwizard/classwizard.py | 2 +- examples/widgets/dialogs/classwizard/classwizard_rc.py | 2 +- examples/widgets/dialogs/extension.py | 2 +- examples/widgets/dialogs/findfiles.py | 2 +- examples/widgets/dialogs/standarddialogs.py | 2 +- examples/widgets/dialogs/trivialwizard.py | 2 +- examples/widgets/draganddrop/draggabletext/draggabletext.py | 2 +- examples/widgets/draganddrop/draggabletext/draggabletext_rc.py | 2 +- examples/widgets/effects/lighting.py | 2 +- examples/widgets/graphicsview/anchorlayout.py | 2 +- examples/widgets/graphicsview/collidingmice/collidingmice.py | 2 +- examples/widgets/graphicsview/collidingmice/mice_rc.py | 2 +- examples/widgets/graphicsview/diagramscene/diagramscene.py | 2 +- examples/widgets/graphicsview/diagramscene/diagramscene_rc.py | 2 +- examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py | 2 +- examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py | 2 +- examples/widgets/graphicsview/elasticnodes.py | 2 +- examples/widgets/itemviews/addressbook/adddialogwidget.py | 2 +- examples/widgets/itemviews/addressbook/addressbook.py | 2 +- examples/widgets/itemviews/addressbook/addresswidget.py | 2 +- examples/widgets/itemviews/addressbook/newaddresstab.py | 2 +- examples/widgets/itemviews/addressbook/tablemodel.py | 2 +- examples/widgets/itemviews/basicsortfiltermodel.py | 2 +- examples/widgets/itemviews/fetchmore.py | 2 +- examples/widgets/itemviews/stardelegate/stardelegate.py | 2 +- examples/widgets/itemviews/stardelegate/stareditor.py | 2 +- examples/widgets/itemviews/stardelegate/starrating.py | 2 +- examples/widgets/layouts/basiclayouts.py | 2 +- examples/widgets/layouts/dynamiclayouts.py | 2 +- examples/widgets/layouts/flowlayout.py | 2 +- examples/widgets/mainwindows/application/application.py | 2 +- examples/widgets/mainwindows/application/application_rc.py | 2 +- examples/widgets/mainwindows/dockwidgets/dockwidgets.py | 2 +- examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py | 2 +- examples/widgets/mainwindows/mdi/mdi.py | 2 +- examples/widgets/mainwindows/mdi/mdi_rc.py | 2 +- examples/widgets/painting/basicdrawing/basicdrawing.py | 2 +- examples/widgets/painting/basicdrawing/basicdrawing_rc.py | 2 +- examples/widgets/painting/concentriccircles.py | 2 +- examples/widgets/richtext/orderform.py | 2 +- examples/widgets/richtext/syntaxhighlighter.py | 2 +- examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py | 2 +- examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter_rc.py | 2 +- examples/widgets/richtext/textobject/textobject.py | 2 +- examples/widgets/state-machine/eventtrans.py | 2 +- examples/widgets/state-machine/factstates.py | 2 +- examples/widgets/state-machine/pingpong.py | 2 +- examples/widgets/state-machine/rogue.py | 2 +- examples/widgets/state-machine/trafficlight.py | 2 +- examples/widgets/state-machine/twowaybutton.py | 2 +- examples/widgets/tutorials/addressbook/part1.py | 2 +- examples/widgets/tutorials/addressbook/part2.py | 2 +- examples/widgets/tutorials/addressbook/part3.py | 2 +- examples/widgets/tutorials/addressbook/part4.py | 2 +- examples/widgets/tutorials/addressbook/part5.py | 2 +- examples/widgets/tutorials/addressbook/part6.py | 2 +- examples/widgets/tutorials/addressbook/part7.py | 2 +- examples/widgets/widgets/hellogl_openglwidget_legacy.py | 2 +- examples/widgets/widgets/tetrix.py | 2 +- examples/xml/dombookmarks/dombookmarks.py | 2 +- examples/xmlpatterns/schema/schema.py | 2 +- examples/xmlpatterns/schema/schema_rc.py | 2 +- ez_setup.py | 2 +- missing_bindings.py | 2 +- popenasync.py | 2 +- sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml | 2 +- sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml | 2 +- sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml | 2 +- sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml | 2 +- sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml | 2 +- sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml | 2 +- sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml | 2 +- sources/pyside2/PySide2/QtCharts/typesystem_charts.xml | 2 +- sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml | 2 +- sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h | 2 +- sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp | 2 +- sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core.xml.in | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_common.xml | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_win.xml | 2 +- sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml | 2 +- .../PySide2/QtDataVisualization/typesystem_datavisualization.xml | 2 +- sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml | 2 +- sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml | 2 +- sources/pyside2/PySide2/QtHelp/typesystem_help.xml | 2 +- sources/pyside2/PySide2/QtLocation/typesystem_location.xml | 2 +- sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml | 2 +- sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml | 2 +- sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml | 2 +- .../PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml | 2 +- .../PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml | 2 +- sources/pyside2/PySide2/QtNetwork/typesystem_network.xml | 2 +- sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml | 2 +- sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml | 2 +- sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml | 2 +- sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp | 2 +- sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h | 2 +- sources/pyside2/PySide2/QtQml/typesystem_qml.xml | 2 +- sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp | 2 +- sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h | 2 +- sources/pyside2/PySide2/QtQuick/typesystem_quick.xml | 2 +- sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml | 2 +- sources/pyside2/PySide2/QtScript/typesystem_script.xml | 2 +- sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml | 2 +- sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml | 2 +- sources/pyside2/PySide2/QtSql/typesystem_sql.xml | 2 +- sources/pyside2/PySide2/QtSvg/typesystem_svg.xml | 2 +- sources/pyside2/PySide2/QtTest/typesystem_test.xml | 2 +- sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml | 2 +- sources/pyside2/PySide2/QtUiTools/glue/plugins.h | 2 +- sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp | 2 +- sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml | 2 +- sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml | 2 +- sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml | 2 +- .../pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml | 2 +- sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml | 2 +- sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml | 2 +- sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml | 2 +- sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml | 2 +- sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml | 2 +- sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml | 2 +- sources/pyside2/PySide2/QtXml/typesystem_xml.xml | 2 +- sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml | 2 +- sources/pyside2/PySide2/global.h.in | 2 +- sources/pyside2/PySide2/licensecomment.txt | 2 +- sources/pyside2/PySide2/pysideqtesttouch.h | 2 +- sources/pyside2/PySide2/pysidewtypes.h | 2 +- sources/pyside2/PySide2/qpytextobject.cpp | 2 +- sources/pyside2/PySide2/qpytextobject.h | 2 +- sources/pyside2/PySide2/support/__init__.py | 2 +- sources/pyside2/PySide2/support/signature/__init__.py | 2 +- sources/pyside2/PySide2/support/signature/backport_inspect.py | 2 +- sources/pyside2/PySide2/support/signature/fix-complaints.py | 2 +- sources/pyside2/PySide2/support/signature/inspect.py | 2 +- sources/pyside2/PySide2/support/signature/loader.py | 2 +- sources/pyside2/PySide2/support/signature/mapping.py | 2 +- sources/pyside2/PySide2/support/signature/parser.py | 2 +- sources/pyside2/PySide2/support/signature/typing27.py | 2 +- sources/pyside2/PySide2/support/signature/typing36.py | 2 +- sources/pyside2/PySide2/typesystem_templates.xml | 2 +- sources/pyside2/doc/additionaldocs.lst | 2 +- .../doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h | 2 +- .../doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc | 2 +- .../doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp | 2 +- .../doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp | 2 +- .../doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp | 2 +- .../doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp | 2 +- .../src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp | 2 +- .../src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp | 2 +- .../doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp | 2 +- .../doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp | 2 +- .../doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp | 2 +- .../doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp | 2 +- .../doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp | 2 +- .../doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp | 2 +- .../doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp | 2 +- .../doc/src/snippets/code/src_gui_accessible_qaccessible.cpp | 2 +- .../doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp | 2 +- .../doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp | 2 +- .../src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp | 2 +- .../doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp | 2 +- .../doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp | 2 +- .../doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp | 2 +- .../doc/src/snippets/code/src_gui_painting_qpainterpath.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp | 2 +- .../doc/src/snippets/code/src_gui_painting_qregion_unix.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp | 2 +- .../doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp | 2 +- .../doc/src/snippets/code/src_gui_util_qdesktopservices.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp | 2 +- .../doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp | 2 +- .../doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp | 2 +- .../doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp | 2 +- .../doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp | 2 +- .../doc/src/snippets/code/src_network_kernel_qhostaddress.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp | 2 +- .../doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qabstractsocket.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp | 2 +- .../doc/src/snippets/code/src_network_socket_qudpsocket.cpp | 2 +- .../doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp | 2 +- .../doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp | 2 +- .../doc/src/snippets/code/src_script_qscriptengineagent.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp | 2 +- .../doc/src/snippets/code/src_script_qscriptvalueiterator.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp | 2 +- .../doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp | 2 +- .../codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp | 2 +- .../doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp | 2 +- .../src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp | 2 +- .../code/tools_designer_src_lib_extension_default_extensionfactory.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_extension_extension.cpp | 2 +- .../code/tools_designer_src_lib_extension_qextensionmanager.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp | 2 +- .../code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp | 2 +- .../code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp | 2 +- .../code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp | 2 +- .../snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp | 2 +- .../src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp | 2 +- .../snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp | 2 +- .../doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp | 2 +- .../src/snippets/code/tools_patternist_qapplicationargumentparser.cpp | 2 +- .../snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp | 2 +- .../snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp | 2 +- .../snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp | 2 +- .../src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp | 2 +- .../doc/src/snippets/designer/autoconnection/imagedialog.cpp | 2 +- .../codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h | 2 +- .../doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp | 2 +- .../doc/src/snippets/designer/multipleinheritance/imagedialog.cpp | 2 +- .../doc/src/snippets/designer/multipleinheritance/imagedialog.h | 2 +- .../codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp | 2 +- .../doc/src/snippets/designer/noautoconnection/imagedialog.cpp | 2 +- .../doc/src/snippets/designer/noautoconnection/imagedialog.h | 2 +- .../codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp | 2 +- .../doc/src/snippets/designer/singleinheritance/imagedialog.cpp | 2 +- .../doc/src/snippets/designer/singleinheritance/imagedialog.h | 2 +- .../codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h | 2 +- .../doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp | 2 +- .../codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp | 2 +- .../codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h | 2 +- .../doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/printing-qprinter/object.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h | 2 +- .../doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h | 2 +- .../doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp | 2 +- .../codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h | 2 +- .../doc/src/snippets/qsortfilterproxymodel-details/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp | 2 +- .../codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h | 2 +- .../doc/src/snippets/qtreewidgetitemiterator-using/main.cpp | 2 +- .../doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp | 2 +- .../doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp | 2 +- .../codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp | 2 +- .../doc/src/snippets/qtscript/registeringobjects/myobject.cpp | 2 +- .../doc/src/snippets/qtscript/registeringobjects/myobject.h | 2 +- .../codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h | 2 +- .../doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/reading-selections/window.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/separations/screenwidget.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h | 2 +- .../codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h | 2 +- .../doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp | 2 +- .../doc/src/snippets/textdocument-selections/mainwindow.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp | 2 +- .../codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h | 2 +- .../doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/model.h | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/window.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/updating-selections/window.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp | 2 +- sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp | 2 +- .../codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp | 2 +- .../doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp | 2 +- .../codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp | 2 +- .../doc/src/snippets/widgets-tutorial/windowlayout/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h | 2 +- .../pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp | 2 +- .../doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h | 2 +- sources/pyside2/doc/codesnippets/examples/dbus/example-client.py | 2 +- sources/pyside2/doc/codesnippets/examples/dbus/example-server.py | 2 +- .../codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp | 2 +- .../codesnippets/examples/declarative/cppextensions/plugins/plugins.qml | 2 +- .../pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp | 2 +- .../doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp | 2 +- .../pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp | 2 +- .../doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp | 2 +- .../doc/codesnippets/examples/imageprovider/imageprovider-example.qml | 2 +- .../pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp | 2 +- .../examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp | 2 +- .../doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp | 2 +- .../doc/codesnippets/examples/mainwindows/application/mainwindow.cpp | 2 +- .../doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp | 2 +- sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp | 2 +- .../pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp | 2 +- sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml | 2 +- .../codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp | 2 +- .../doc/codesnippets/examples/richtext/textobject/svgtextobject.h | 2 +- sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp | 2 +- .../pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp | 2 +- sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp | 2 +- sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp | 2 +- .../pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp | 2 +- .../doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp | 2 +- .../doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp | 2 +- sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp | 2 +- sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp | 2 +- sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp | 2 +- sources/pyside2/doc/pyhtml2devhelp.py | 2 +- sources/pyside2/doc/qtattributionsscannertorst.py | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml | 2 +- .../qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml | 2 +- .../tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml | 2 +- .../tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml | 2 +- .../doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml | 2 +- sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml | 2 +- sources/pyside2/doc/typesystem_doc.xml.in | 2 +- sources/pyside2/libpyside/destroylistener.cpp | 2 +- sources/pyside2/libpyside/destroylistener.h | 2 +- sources/pyside2/libpyside/dynamicqmetaobject.cpp | 2 +- sources/pyside2/libpyside/dynamicqmetaobject.h | 2 +- sources/pyside2/libpyside/dynamicqmetaobject_p.h | 2 +- sources/pyside2/libpyside/globalreceiver.cpp | 2 +- sources/pyside2/libpyside/globalreceiver.h | 2 +- sources/pyside2/libpyside/globalreceiverv2.cpp | 2 +- sources/pyside2/libpyside/globalreceiverv2.h | 2 +- sources/pyside2/libpyside/pyside.cpp | 2 +- sources/pyside2/libpyside/pyside.h | 2 +- sources/pyside2/libpyside/pysideclassinfo.cpp | 2 +- sources/pyside2/libpyside/pysideclassinfo.h | 2 +- sources/pyside2/libpyside/pysideclassinfo_p.h | 2 +- sources/pyside2/libpyside/pysidemacros.h | 2 +- sources/pyside2/libpyside/pysidemetafunction.cpp | 2 +- sources/pyside2/libpyside/pysidemetafunction.h | 2 +- sources/pyside2/libpyside/pysidemetafunction_p.h | 2 +- sources/pyside2/libpyside/pysideproperty.cpp | 2 +- sources/pyside2/libpyside/pysideproperty.h | 2 +- sources/pyside2/libpyside/pysideproperty_p.h | 2 +- sources/pyside2/libpyside/pysideqflags.cpp | 2 +- sources/pyside2/libpyside/pysideqflags.h | 2 +- sources/pyside2/libpyside/pysidesignal.cpp | 2 +- sources/pyside2/libpyside/pysidesignal.h | 2 +- sources/pyside2/libpyside/pysidesignal_p.h | 2 +- sources/pyside2/libpyside/pysideslot.cpp | 2 +- sources/pyside2/libpyside/pysideslot_p.h | 2 +- sources/pyside2/libpyside/pysideweakref.cpp | 2 +- sources/pyside2/libpyside/pysideweakref.h | 2 +- sources/pyside2/libpyside/signalmanager.cpp.in | 2 +- sources/pyside2/libpyside/signalmanager.h | 2 +- sources/pyside2/plugins/customwidget.cpp | 2 +- sources/pyside2/plugins/customwidget.h | 2 +- sources/pyside2/plugins/customwidgets.cpp | 2 +- sources/pyside2/plugins/customwidgets.h | 2 +- sources/pyside2/pyside_version.py | 2 +- sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py | 2 +- sources/pyside2/tests/QtCharts/qcharts_test.py | 2 +- sources/pyside2/tests/QtCore/blocking_signals_test.py | 2 +- sources/pyside2/tests/QtCore/bug_1019.py | 2 +- sources/pyside2/tests/QtCore/bug_1031.py | 2 +- sources/pyside2/tests/QtCore/bug_1063.py | 2 +- sources/pyside2/tests/QtCore/bug_1069.py | 2 +- sources/pyside2/tests/QtCore/bug_278_test.py | 2 +- sources/pyside2/tests/QtCore/bug_332.py | 2 +- sources/pyside2/tests/QtCore/bug_408.py | 2 +- sources/pyside2/tests/QtCore/bug_428.py | 2 +- sources/pyside2/tests/QtCore/bug_462.py | 2 +- sources/pyside2/tests/QtCore/bug_505.py | 2 +- sources/pyside2/tests/QtCore/bug_515.py | 2 +- sources/pyside2/tests/QtCore/bug_606.py | 2 +- sources/pyside2/tests/QtCore/bug_656.py | 2 +- sources/pyside2/tests/QtCore/bug_686.py | 2 +- sources/pyside2/tests/QtCore/bug_699.py | 2 +- sources/pyside2/tests/QtCore/bug_706.py | 2 +- sources/pyside2/tests/QtCore/bug_820.py | 2 +- sources/pyside2/tests/QtCore/bug_826.py | 2 +- sources/pyside2/tests/QtCore/bug_829.py | 2 +- sources/pyside2/tests/QtCore/bug_835.py | 2 +- sources/pyside2/tests/QtCore/bug_920.py | 2 +- sources/pyside2/tests/QtCore/bug_927.py | 2 +- sources/pyside2/tests/QtCore/bug_931.py | 2 +- sources/pyside2/tests/QtCore/bug_938.py | 2 +- sources/pyside2/tests/QtCore/bug_953.py | 2 +- sources/pyside2/tests/QtCore/bug_987.py | 2 +- sources/pyside2/tests/QtCore/bug_994.py | 2 +- sources/pyside2/tests/QtCore/bug_PYSIDE-164.py | 2 +- sources/pyside2/tests/QtCore/bug_PYSIDE-42.py | 2 +- sources/pyside2/tests/QtCore/child_event_test.py | 2 +- sources/pyside2/tests/QtCore/classinfo_test.py | 2 +- sources/pyside2/tests/QtCore/deepcopy_test.py | 2 +- sources/pyside2/tests/QtCore/deletelater_test.py | 2 +- sources/pyside2/tests/QtCore/destroysignal_test.py | 2 +- sources/pyside2/tests/QtCore/duck_punching_test.py | 2 +- sources/pyside2/tests/QtCore/hash_test.py | 2 +- sources/pyside2/tests/QtCore/inherits_test.py | 2 +- sources/pyside2/tests/QtCore/max_signals.py | 2 +- sources/pyside2/tests/QtCore/missing_symbols_test.py | 2 +- sources/pyside2/tests/QtCore/mockclass_test.py | 2 +- sources/pyside2/tests/QtCore/python_conversion.py | 2 +- sources/pyside2/tests/QtCore/qabs_test.py | 2 +- sources/pyside2/tests/QtCore/qabstractitemmodel_test.py | 2 +- sources/pyside2/tests/QtCore/qabstracttransition_test.py | 2 +- sources/pyside2/tests/QtCore/qanimationgroup_test.py | 2 +- sources/pyside2/tests/QtCore/qbitarray_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_operator_test.py | 2 +- sources/pyside2/tests/QtCore/qbytearray_test.py | 2 +- sources/pyside2/tests/QtCore/qcollator_test.py | 2 +- sources/pyside2/tests/QtCore/qcommandlineparser_test.py | 2 +- sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py | 2 +- sources/pyside2/tests/QtCore/qdatastream_test.py | 2 +- sources/pyside2/tests/QtCore/qdate_test.py | 2 +- sources/pyside2/tests/QtCore/qdatetime_test.py | 2 +- sources/pyside2/tests/QtCore/qeasingcurve_test.py | 2 +- sources/pyside2/tests/QtCore/qenum_test.py | 2 +- sources/pyside2/tests/QtCore/qevent_test.py | 2 +- sources/pyside2/tests/QtCore/qfile_test.py | 2 +- sources/pyside2/tests/QtCore/qfileinfo_test.py | 2 +- sources/pyside2/tests/QtCore/qfileread_test.py | 2 +- sources/pyside2/tests/QtCore/qflags_test.py | 2 +- sources/pyside2/tests/QtCore/qhandle_test.py | 2 +- sources/pyside2/tests/QtCore/qinstallmsghandler_test.py | 2 +- sources/pyside2/tests/QtCore/qlinef_test.py | 2 +- sources/pyside2/tests/QtCore/qlocale_test.py | 2 +- sources/pyside2/tests/QtCore/qmetaobject_test.py | 2 +- sources/pyside2/tests/QtCore/qmimedatabase_test.py | 2 +- sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_children_segfault_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_connect_notify_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_destructor.py | 2 +- sources/pyside2/tests/QtCore/qobject_event_filter_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_inherits_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_objectproperty_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_parent_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_property_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_protected_methods_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_timer_event_test.py | 2 +- sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py | 2 +- sources/pyside2/tests/QtCore/qpoint_test.py | 2 +- sources/pyside2/tests/QtCore/qprocess_test.py | 2 +- sources/pyside2/tests/QtCore/qproperty_decorator.py | 2 +- sources/pyside2/tests/QtCore/qrect_test.py | 2 +- sources/pyside2/tests/QtCore/qregexp_test.py | 2 +- sources/pyside2/tests/QtCore/qregularexpression_test.py | 2 +- sources/pyside2/tests/QtCore/qresource_test.py | 2 +- sources/pyside2/tests/QtCore/qsize_test.py | 2 +- sources/pyside2/tests/QtCore/qslot_object_test.py | 2 +- sources/pyside2/tests/QtCore/qsrand_test.py | 2 +- sources/pyside2/tests/QtCore/qstandardpaths_test.py | 2 +- sources/pyside2/tests/QtCore/qstate_test.py | 2 +- sources/pyside2/tests/QtCore/qstatemachine_test.py | 2 +- sources/pyside2/tests/QtCore/qstorageinfo_test.py | 2 +- sources/pyside2/tests/QtCore/qstring_test.py | 2 +- sources/pyside2/tests/QtCore/qsysinfo_test.py | 2 +- sources/pyside2/tests/QtCore/qtext_codec_test.py | 2 +- sources/pyside2/tests/QtCore/qtextstream_test.py | 2 +- sources/pyside2/tests/QtCore/qthread_prod_cons_test.py | 2 +- sources/pyside2/tests/QtCore/qthread_signal_test.py | 2 +- sources/pyside2/tests/QtCore/qthread_test.py | 2 +- sources/pyside2/tests/QtCore/qtimer_singleshot_test.py | 2 +- sources/pyside2/tests/QtCore/qtimer_timeout_test.py | 2 +- sources/pyside2/tests/QtCore/qtimezone_test.py | 2 +- sources/pyside2/tests/QtCore/qtnamespace_test.py | 2 +- sources/pyside2/tests/QtCore/qurl_test.py | 2 +- sources/pyside2/tests/QtCore/qurlquery_test.py | 2 +- sources/pyside2/tests/QtCore/quuid_test.py | 2 +- sources/pyside2/tests/QtCore/qversionnumber_test.py | 2 +- sources/pyside2/tests/QtCore/repr_test.py | 2 +- sources/pyside2/tests/QtCore/resources_mc.py | 2 +- sources/pyside2/tests/QtCore/setprop_on_ctor_test.py | 2 +- sources/pyside2/tests/QtCore/staticMetaObject_test.py | 2 +- sources/pyside2/tests/QtCore/static_method_test.py | 2 +- sources/pyside2/tests/QtCore/thread_signals_test.py | 2 +- sources/pyside2/tests/QtCore/tr_noop_test.py | 2 +- sources/pyside2/tests/QtCore/translation_test.py | 2 +- sources/pyside2/tests/QtCore/unaryoperator_test.py | 2 +- sources/pyside2/tests/QtCore/unicode_test.py | 2 +- sources/pyside2/tests/QtCore/versioninfo_test.py | 2 +- sources/pyside2/tests/QtDataVisualization/datavisualization_test.py | 2 +- sources/pyside2/tests/QtGui/bug_1091.py | 2 +- sources/pyside2/tests/QtGui/bug_300_test.py | 2 +- sources/pyside2/tests/QtGui/bug_367.py | 2 +- sources/pyside2/tests/QtGui/bug_480.py | 2 +- sources/pyside2/tests/QtGui/bug_606.py | 2 +- sources/pyside2/tests/QtGui/bug_617.py | 2 +- sources/pyside2/tests/QtGui/bug_652.py | 2 +- sources/pyside2/tests/QtGui/bug_660.py | 2 +- sources/pyside2/tests/QtGui/bug_716.py | 2 +- sources/pyside2/tests/QtGui/bug_740.py | 2 +- sources/pyside2/tests/QtGui/bug_743.py | 2 +- sources/pyside2/tests/QtGui/bug_991.py | 2 +- sources/pyside2/tests/QtGui/bug_PYSIDE-344.py | 2 +- sources/pyside2/tests/QtGui/bug_PYSIDE-41.py | 2 +- sources/pyside2/tests/QtGui/deepcopy_test.py | 2 +- sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py | 2 +- sources/pyside2/tests/QtGui/pyside_reload_test.py | 2 +- sources/pyside2/tests/QtGui/qcolor_reduce_test.py | 2 +- sources/pyside2/tests/QtGui/qcolor_test.py | 2 +- sources/pyside2/tests/QtGui/qcursor_test.py | 2 +- sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py | 2 +- sources/pyside2/tests/QtGui/qdesktopservices_test.py | 2 +- sources/pyside2/tests/QtGui/qfontmetrics_test.py | 2 +- sources/pyside2/tests/QtGui/qicon_test.py | 2 +- sources/pyside2/tests/QtGui/qitemselection_test.py | 2 +- sources/pyside2/tests/QtGui/qkeysequence_test.py | 2 +- sources/pyside2/tests/QtGui/qmatrix_test.py | 2 +- sources/pyside2/tests/QtGui/qopenglbuffer_test.py | 2 +- sources/pyside2/tests/QtGui/qopenglwindow_test.py | 2 +- sources/pyside2/tests/QtGui/qpainter_test.py | 2 +- sources/pyside2/tests/QtGui/qpdfwriter_test.py | 2 +- sources/pyside2/tests/QtGui/qpixelformat_test.py | 2 +- sources/pyside2/tests/QtGui/qpixmap_test.py | 2 +- sources/pyside2/tests/QtGui/qpixmapcache_test.py | 2 +- sources/pyside2/tests/QtGui/qpolygonf_test.py | 2 +- sources/pyside2/tests/QtGui/qradialgradient_test.py | 2 +- sources/pyside2/tests/QtGui/qrasterwindow_test.py | 2 +- sources/pyside2/tests/QtGui/qregion_test.py | 2 +- sources/pyside2/tests/QtGui/qstylehints_test.py | 2 +- sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py | 2 +- sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py | 2 +- sources/pyside2/tests/QtGui/qtextline_test.py | 2 +- sources/pyside2/tests/QtGui/qtransform_test.py | 2 +- sources/pyside2/tests/QtGui/repr_test.py | 2 +- sources/pyside2/tests/QtGui/timed_app_test.py | 2 +- sources/pyside2/tests/QtHelp/help_test.py | 2 +- sources/pyside2/tests/QtHelp/helpsearchengine_test.py | 2 +- sources/pyside2/tests/QtLocation/location.py | 2 +- sources/pyside2/tests/QtMultimedia/audio_test.py | 2 +- sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py | 2 +- sources/pyside2/tests/QtNetwork/accessManager_test.py | 2 +- sources/pyside2/tests/QtNetwork/bug_1084.py | 2 +- sources/pyside2/tests/QtNetwork/bug_446.py | 2 +- sources/pyside2/tests/QtNetwork/qipv6address_test.py | 2 +- sources/pyside2/tests/QtNetwork/tcpserver_test.py | 2 +- sources/pyside2/tests/QtNetwork/udpsocket_test.py | 2 +- sources/pyside2/tests/QtOpenGL/qglbuffer_test.py | 2 +- sources/pyside2/tests/QtOpenGL/qglwidget_test.py | 2 +- sources/pyside2/tests/QtPositioning/positioning.py | 2 +- sources/pyside2/tests/QtPrintSupport/bug_500.py | 2 +- sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py | 2 +- sources/pyside2/tests/QtQml/bug_1029.py | 2 +- sources/pyside2/tests/QtQml/bug_1029.qml | 2 +- sources/pyside2/tests/QtQml/bug_451.py | 2 +- sources/pyside2/tests/QtQml/bug_451.qml | 2 +- sources/pyside2/tests/QtQml/bug_456.py | 2 +- sources/pyside2/tests/QtQml/bug_456.qml | 2 +- sources/pyside2/tests/QtQml/bug_557.py | 2 +- sources/pyside2/tests/QtQml/bug_726.py | 2 +- sources/pyside2/tests/QtQml/bug_726.qml | 2 +- sources/pyside2/tests/QtQml/bug_814.py | 2 +- sources/pyside2/tests/QtQml/bug_814.qml | 2 +- sources/pyside2/tests/QtQml/bug_825.py | 2 +- sources/pyside2/tests/QtQml/bug_825.qml | 2 +- sources/pyside2/tests/QtQml/bug_847.py | 2 +- sources/pyside2/tests/QtQml/bug_847.qml | 2 +- sources/pyside2/tests/QtQml/bug_915.py | 2 +- sources/pyside2/tests/QtQml/bug_926.py | 2 +- sources/pyside2/tests/QtQml/bug_926.qml | 2 +- sources/pyside2/tests/QtQml/bug_951.py | 2 +- sources/pyside2/tests/QtQml/bug_951.qml | 2 +- sources/pyside2/tests/QtQml/bug_995.py | 2 +- sources/pyside2/tests/QtQml/bug_995.qml | 2 +- sources/pyside2/tests/QtQml/bug_997.py | 2 +- sources/pyside2/tests/QtQml/bug_997.qml | 2 +- sources/pyside2/tests/QtQml/connect_python_qml.py | 2 +- sources/pyside2/tests/QtQml/connect_python_qml.qml | 2 +- sources/pyside2/tests/QtQml/hw.qml | 2 +- sources/pyside2/tests/QtQml/javascript_exceptions.py | 2 +- sources/pyside2/tests/QtQml/javascript_exceptions.qml | 2 +- sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py | 2 +- sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml | 2 +- sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml | 2 +- sources/pyside2/tests/QtQml/qqmlnetwork_test.py | 2 +- sources/pyside2/tests/QtQml/qquickitem_grabToImage.py | 2 +- sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml | 2 +- sources/pyside2/tests/QtQml/qquickview_test.py | 2 +- sources/pyside2/tests/QtQml/registertype.py | 2 +- sources/pyside2/tests/QtQml/registertype.qml | 2 +- sources/pyside2/tests/QtQml/view.qml | 2 +- sources/pyside2/tests/QtQml/viewmodel.qml | 2 +- sources/pyside2/tests/QtScript/base_test.py | 2 +- sources/pyside2/tests/QtScript/bug_1022.py | 2 +- sources/pyside2/tests/QtScript/engine_test.py | 2 +- sources/pyside2/tests/QtScript/property_test.py | 2 +- sources/pyside2/tests/QtScript/qscriptvalue_test.py | 2 +- sources/pyside2/tests/QtScriptTools/debugger_test.py | 2 +- sources/pyside2/tests/QtSensors/sensors.py | 2 +- sources/pyside2/tests/QtSql/bug_1013.py | 2 +- sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py | 2 +- sources/pyside2/tests/QtSql/qvarianttype_test.py | 2 +- sources/pyside2/tests/QtSvg/qsvggenerator_test.py | 2 +- sources/pyside2/tests/QtSvg/qsvgrenderer_test.py | 2 +- sources/pyside2/tests/QtSvg/qsvgwidget_test.py | 2 +- sources/pyside2/tests/QtTest/click_test.py | 2 +- sources/pyside2/tests/QtTest/eventfilter_test.py | 2 +- sources/pyside2/tests/QtTest/qvalidator_test.py | 2 +- sources/pyside2/tests/QtTest/touchevent_test.py | 2 +- sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py | 2 +- sources/pyside2/tests/QtUiTools/bug_1060.py | 2 +- sources/pyside2/tests/QtUiTools/bug_360.py | 2 +- sources/pyside2/tests/QtUiTools/bug_376.py | 2 +- sources/pyside2/tests/QtUiTools/bug_392.py | 2 +- sources/pyside2/tests/QtUiTools/bug_426.py | 2 +- sources/pyside2/tests/QtUiTools/bug_552.py | 2 +- sources/pyside2/tests/QtUiTools/bug_797.py | 2 +- sources/pyside2/tests/QtUiTools/bug_909.py | 2 +- sources/pyside2/tests/QtUiTools/bug_913.py | 2 +- sources/pyside2/tests/QtUiTools/bug_958.py | 2 +- sources/pyside2/tests/QtUiTools/bug_965.py | 2 +- sources/pyside2/tests/QtUiTools/ui_test.py | 2 +- sources/pyside2/tests/QtUiTools/uiloader_test.py | 2 +- sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt | 2 +- sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py | 2 +- sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt | 2 +- sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py | 2 +- sources/pyside2/tests/QtWebKit/bug_448.py | 2 +- sources/pyside2/tests/QtWebKit/bug_694.py | 2 +- sources/pyside2/tests/QtWebKit/bug_803.py | 2 +- sources/pyside2/tests/QtWebKit/bug_899.py | 2 +- sources/pyside2/tests/QtWebKit/bug_959.py | 2 +- sources/pyside2/tests/QtWebKit/qml_plugin_test.py | 2 +- sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py | 2 +- sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py | 2 +- sources/pyside2/tests/QtWebKit/webframe_test.py | 2 +- sources/pyside2/tests/QtWebKit/webpage_test.py | 2 +- sources/pyside2/tests/QtWebKit/webview_test.py | 2 +- sources/pyside2/tests/QtWidgets/action_clear.py | 2 +- sources/pyside2/tests/QtWidgets/add_action_test.py | 2 +- sources/pyside2/tests/QtWidgets/api2_test.py | 2 +- sources/pyside2/tests/QtWidgets/application_test.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1002.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1006.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1048.py | 2 +- sources/pyside2/tests/QtWidgets/bug_1077.py | 2 +- sources/pyside2/tests/QtWidgets/bug_172.py | 2 +- sources/pyside2/tests/QtWidgets/bug_243.py | 2 +- sources/pyside2/tests/QtWidgets/bug_307.py | 2 +- sources/pyside2/tests/QtWidgets/bug_324.py | 2 +- sources/pyside2/tests/QtWidgets/bug_338.py | 2 +- sources/pyside2/tests/QtWidgets/bug_363.py | 2 +- sources/pyside2/tests/QtWidgets/bug_389.py | 2 +- sources/pyside2/tests/QtWidgets/bug_400.py | 2 +- sources/pyside2/tests/QtWidgets/bug_416.py | 2 +- sources/pyside2/tests/QtWidgets/bug_429.py | 2 +- sources/pyside2/tests/QtWidgets/bug_430.py | 2 +- sources/pyside2/tests/QtWidgets/bug_433.py | 2 +- sources/pyside2/tests/QtWidgets/bug_467.py | 2 +- sources/pyside2/tests/QtWidgets/bug_493.py | 2 +- sources/pyside2/tests/QtWidgets/bug_512.py | 2 +- sources/pyside2/tests/QtWidgets/bug_525.py | 2 +- sources/pyside2/tests/QtWidgets/bug_546.py | 2 +- sources/pyside2/tests/QtWidgets/bug_547.py | 2 +- sources/pyside2/tests/QtWidgets/bug_549.py | 2 +- sources/pyside2/tests/QtWidgets/bug_569.py | 2 +- sources/pyside2/tests/QtWidgets/bug_575.py | 2 +- sources/pyside2/tests/QtWidgets/bug_576.py | 2 +- sources/pyside2/tests/QtWidgets/bug_585.py | 2 +- sources/pyside2/tests/QtWidgets/bug_589.py | 2 +- sources/pyside2/tests/QtWidgets/bug_632.py | 2 +- sources/pyside2/tests/QtWidgets/bug_635.py | 2 +- sources/pyside2/tests/QtWidgets/bug_640.py | 2 +- sources/pyside2/tests/QtWidgets/bug_653.py | 2 +- sources/pyside2/tests/QtWidgets/bug_662.py | 2 +- sources/pyside2/tests/QtWidgets/bug_667.py | 2 +- sources/pyside2/tests/QtWidgets/bug_668.py | 2 +- sources/pyside2/tests/QtWidgets/bug_674.py | 2 +- sources/pyside2/tests/QtWidgets/bug_675.py | 2 +- sources/pyside2/tests/QtWidgets/bug_688.py | 2 +- sources/pyside2/tests/QtWidgets/bug_693.py | 2 +- sources/pyside2/tests/QtWidgets/bug_696.py | 2 +- sources/pyside2/tests/QtWidgets/bug_711.py | 2 +- sources/pyside2/tests/QtWidgets/bug_714.py | 2 +- sources/pyside2/tests/QtWidgets/bug_722.py | 2 +- sources/pyside2/tests/QtWidgets/bug_728.py | 2 +- sources/pyside2/tests/QtWidgets/bug_736.py | 2 +- sources/pyside2/tests/QtWidgets/bug_750.py | 2 +- sources/pyside2/tests/QtWidgets/bug_778.py | 2 +- sources/pyside2/tests/QtWidgets/bug_785.py | 2 +- sources/pyside2/tests/QtWidgets/bug_793.py | 2 +- sources/pyside2/tests/QtWidgets/bug_811.py | 2 +- sources/pyside2/tests/QtWidgets/bug_834.py | 2 +- sources/pyside2/tests/QtWidgets/bug_836.py | 2 +- sources/pyside2/tests/QtWidgets/bug_844.py | 2 +- sources/pyside2/tests/QtWidgets/bug_854.py | 2 +- sources/pyside2/tests/QtWidgets/bug_860.py | 2 +- sources/pyside2/tests/QtWidgets/bug_862.py | 2 +- sources/pyside2/tests/QtWidgets/bug_871.py | 2 +- sources/pyside2/tests/QtWidgets/bug_879.py | 2 +- sources/pyside2/tests/QtWidgets/bug_919.py | 2 +- sources/pyside2/tests/QtWidgets/bug_921.py | 2 +- sources/pyside2/tests/QtWidgets/bug_941.py | 2 +- sources/pyside2/tests/QtWidgets/bug_964.py | 2 +- sources/pyside2/tests/QtWidgets/bug_967.py | 2 +- sources/pyside2/tests/QtWidgets/bug_972.py | 2 +- sources/pyside2/tests/QtWidgets/bug_979.py | 2 +- sources/pyside2/tests/QtWidgets/bug_988.py | 2 +- sources/pyside2/tests/QtWidgets/bug_998.py | 2 +- sources/pyside2/tests/QtWidgets/customproxywidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/event_filter_test.py | 2 +- sources/pyside2/tests/QtWidgets/grandparent_method_test.py | 2 +- sources/pyside2/tests/QtWidgets/hashabletype_test.py | 2 +- sources/pyside2/tests/QtWidgets/keep_reference_test.py | 2 +- sources/pyside2/tests/QtWidgets/missing_symbols_test.py | 2 +- sources/pyside2/tests/QtWidgets/paint_event_test.py | 2 +- sources/pyside2/tests/QtWidgets/parent_method_test.py | 2 +- sources/pyside2/tests/QtWidgets/python_properties_test.py | 2 +- sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qaction_test.py | 2 +- sources/pyside2/tests/QtWidgets/qapp_issue_585.py | 2 +- sources/pyside2/tests/QtWidgets/qapp_test.py | 2 +- sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py | 2 +- sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py | 2 +- sources/pyside2/tests/QtWidgets/qbrush_test.py | 2 +- sources/pyside2/tests/QtWidgets/qcolormap_test.py | 2 +- sources/pyside2/tests/QtWidgets/qdynamic_signal.py | 2 +- sources/pyside2/tests/QtWidgets/qfontdialog_test.py | 2 +- sources/pyside2/tests/QtWidgets/qformlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py | 2 +- sources/pyside2/tests/QtWidgets/qimage_test.py | 2 +- sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py | 2 +- sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlabel_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlayout_ref_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlcdnumber_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlistwidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py | 2 +- sources/pyside2/tests/QtWidgets/qmainwindow_test.py | 2 +- sources/pyside2/tests/QtWidgets/qmenu_test.py | 2 +- sources/pyside2/tests/QtWidgets/qmenuadd_test.py | 2 +- sources/pyside2/tests/QtWidgets/qobject_mi_test.py | 2 +- sources/pyside2/tests/QtWidgets/qpen_test.py | 2 +- sources/pyside2/tests/QtWidgets/qpicture_test.py | 2 +- sources/pyside2/tests/QtWidgets/qpixmap_constructor.py | 2 +- sources/pyside2/tests/QtWidgets/qpushbutton_test.py | 2 +- sources/pyside2/tests/QtWidgets/qshortcut_test.py | 2 +- sources/pyside2/tests/QtWidgets/qsplitter_test.py | 2 +- sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py | 2 +- sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py | 2 +- sources/pyside2/tests/QtWidgets/qstyle_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtableview_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtabwidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtextedit_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtoolbar_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtoolbox_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtreeview_test.py | 2 +- sources/pyside2/tests/QtWidgets/qtreewidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/qvariant_test.py | 2 +- sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py | 2 +- sources/pyside2/tests/QtWidgets/qwidget_test.py | 2 +- sources/pyside2/tests/QtWidgets/reference_count_test.py | 2 +- sources/pyside2/tests/QtWidgets/standardpixmap_test.py | 2 +- sources/pyside2/tests/QtWidgets/test_module_template.py | 2 +- sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py | 2 +- sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py | 2 +- sources/pyside2/tests/QtWidgets/wrong_return_test.py | 2 +- sources/pyside2/tests/QtXml/qdomdocument_test.py | 2 +- sources/pyside2/tests/QtXml/qxmlsimplereader_test.py | 2 +- sources/pyside2/tests/QtXmlPatterns/import_test.py | 2 +- sources/pyside2/tests/mac/qmacstyle_test.py | 2 +- sources/pyside2/tests/manually/bug_841.py | 2 +- sources/pyside2/tests/pysidetest/all_modules_load_test.py | 2 +- sources/pyside2/tests/pysidetest/bug_1016.py | 2 +- sources/pyside2/tests/pysidetest/decoratedslot_test.py | 2 +- sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py | 2 +- sources/pyside2/tests/pysidetest/enum_test.py | 2 +- sources/pyside2/tests/pysidetest/hiddenobject.cpp | 2 +- sources/pyside2/tests/pysidetest/hiddenobject.h | 2 +- sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py | 2 +- sources/pyside2/tests/pysidetest/list_signal_test.py | 2 +- sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py | 2 +- sources/pyside2/tests/pysidetest/modelview_test.py | 2 +- sources/pyside2/tests/pysidetest/new_inherited_functions_test.py | 2 +- sources/pyside2/tests/pysidetest/notify_id.py | 2 +- sources/pyside2/tests/pysidetest/pysidetest_global.h | 2 +- sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py | 2 +- sources/pyside2/tests/pysidetest/qvariant_test.py | 2 +- sources/pyside2/tests/pysidetest/signal_slot_warning.py | 2 +- sources/pyside2/tests/pysidetest/signalandnamespace_test.py | 2 +- sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py | 2 +- sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py | 2 +- sources/pyside2/tests/pysidetest/testobject.cpp | 2 +- sources/pyside2/tests/pysidetest/testobject.h | 2 +- sources/pyside2/tests/pysidetest/testview.cpp | 2 +- sources/pyside2/tests/pysidetest/testview.h | 2 +- sources/pyside2/tests/pysidetest/typedef_signal_test.py | 2 +- sources/pyside2/tests/pysidetest/version_test.py | 2 +- sources/pyside2/tests/registry/CMakeLists.txt | 2 +- sources/pyside2/tests/registry/existence_test.py | 2 +- sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py | 2 +- sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py | 2 +- sources/pyside2/tests/registry/init_platform.py | 2 +- sources/pyside2/tests/registry/signature_test.py | 2 +- sources/pyside2/tests/registry/util.py | 2 +- sources/pyside2/tests/run_test.sh | 2 +- sources/pyside2/tests/signals/args_dont_match_test.py | 2 +- sources/pyside2/tests/signals/bug_189.py | 2 +- sources/pyside2/tests/signals/bug_311.py | 2 +- sources/pyside2/tests/signals/bug_312.py | 2 +- sources/pyside2/tests/signals/bug_319.py | 2 +- sources/pyside2/tests/signals/bug_79.py | 2 +- sources/pyside2/tests/signals/decorators_test.py | 2 +- sources/pyside2/tests/signals/disconnect_test.py | 2 +- sources/pyside2/tests/signals/invalid_callback_test.py | 2 +- sources/pyside2/tests/signals/lambda_gui_test.py | 2 +- sources/pyside2/tests/signals/lambda_test.py | 2 +- sources/pyside2/tests/signals/leaking_signal_test.py | 2 +- sources/pyside2/tests/signals/multiple_connections_gui_test.py | 2 +- sources/pyside2/tests/signals/multiple_connections_test.py | 2 +- sources/pyside2/tests/signals/pysignal_test.py | 2 +- sources/pyside2/tests/signals/qobject_destroyed_test.py | 2 +- sources/pyside2/tests/signals/qobject_receivers_test.py | 2 +- sources/pyside2/tests/signals/qobject_sender_test.py | 2 +- sources/pyside2/tests/signals/ref01_test.py | 2 +- sources/pyside2/tests/signals/ref02_test.py | 2 +- sources/pyside2/tests/signals/ref03_test.py | 2 +- sources/pyside2/tests/signals/ref04_test.py | 2 +- sources/pyside2/tests/signals/ref05_test.py | 2 +- sources/pyside2/tests/signals/ref06_test.py | 2 +- sources/pyside2/tests/signals/segfault_proxyparent_test.py | 2 +- sources/pyside2/tests/signals/self_connect_test.py | 2 +- sources/pyside2/tests/signals/short_circuit_test.py | 2 +- sources/pyside2/tests/signals/signal2signal_connect_test.py | 2 +- sources/pyside2/tests/signals/signal_autoconnect_test.py | 2 +- sources/pyside2/tests/signals/signal_connectiontype_support_test.py | 2 +- sources/pyside2/tests/signals/signal_emission_gui_test.py | 2 +- sources/pyside2/tests/signals/signal_emission_test.py | 2 +- sources/pyside2/tests/signals/signal_func_test.py | 2 +- sources/pyside2/tests/signals/signal_manager_refcount_test.py | 2 +- sources/pyside2/tests/signals/signal_number_limit_test.py | 2 +- sources/pyside2/tests/signals/signal_object_test.py | 2 +- sources/pyside2/tests/signals/signal_signature_test.py | 2 +- sources/pyside2/tests/signals/signal_with_primitive_type_test.py | 2 +- sources/pyside2/tests/signals/slot_reference_count_test.py | 2 +- sources/pyside2/tests/signals/static_metaobject_test.py | 2 +- sources/pyside2/tests/tools/list-class-hierarchy.py | 2 +- sources/pyside2/tests/util/color.py | 2 +- sources/pyside2/tests/util/helper/__init__.py | 2 +- sources/pyside2/tests/util/helper/docmodifier.py | 2 +- sources/pyside2/tests/util/httpd.py | 2 +- sources/pyside2/tests/util/processtimer.py | 2 +- sources/pyside2/tests/util/py2xfunctions.py | 2 +- sources/pyside2/tests/util/py3kcompat.py | 2 +- sources/pyside2/tests/util/py3xfunctions.py | 2 +- sources/pyside2/tests/util/pyqt_diff.py | 2 +- sources/pyside2/tests/util/pyqtcheck.py | 2 +- sources/pyside2/tests/util/rename_imports.sh | 2 +- sources/pyside2/tests/util/test_processtimer.py | 2 +- sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp | 2 +- sources/shiboken2/ApiExtractor/abstractmetabuilder.h | 2 +- sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h | 2 +- sources/shiboken2/ApiExtractor/abstractmetalang.cpp | 2 +- sources/shiboken2/ApiExtractor/abstractmetalang.h | 2 +- sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h | 2 +- sources/shiboken2/ApiExtractor/apiextractor.cpp | 2 +- sources/shiboken2/ApiExtractor/apiextractor.h | 2 +- sources/shiboken2/ApiExtractor/apiextractormacros.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangparser.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/clangutils.h | 2 +- sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp | 2 +- sources/shiboken2/ApiExtractor/clangparser/compilersupport.h | 2 +- sources/shiboken2/ApiExtractor/dependency.h | 2 +- sources/shiboken2/ApiExtractor/docparser.cpp | 2 +- sources/shiboken2/ApiExtractor/docparser.h | 2 +- sources/shiboken2/ApiExtractor/doxygenparser.cpp | 2 +- sources/shiboken2/ApiExtractor/doxygenparser.h | 2 +- sources/shiboken2/ApiExtractor/fileout.cpp | 2 +- sources/shiboken2/ApiExtractor/fileout.h | 2 +- sources/shiboken2/ApiExtractor/graph.cpp | 2 +- sources/shiboken2/ApiExtractor/graph.h | 2 +- sources/shiboken2/ApiExtractor/header_paths.h | 2 +- sources/shiboken2/ApiExtractor/include.cpp | 2 +- sources/shiboken2/ApiExtractor/include.h | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel.cpp | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel.h | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel_enums.h | 2 +- sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h | 2 +- sources/shiboken2/ApiExtractor/parser/enumvalue.cpp | 2 +- sources/shiboken2/ApiExtractor/parser/enumvalue.h | 2 +- sources/shiboken2/ApiExtractor/qtdocparser.cpp | 2 +- sources/shiboken2/ApiExtractor/qtdocparser.h | 2 +- sources/shiboken2/ApiExtractor/reporthandler.cpp | 2 +- sources/shiboken2/ApiExtractor/reporthandler.h | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h | 2 +- sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testaddfunction.h | 2 +- sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testarrayargument.h | 2 +- sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testcodeinjection.h | 2 +- sources/shiboken2/ApiExtractor/tests/testcontainer.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testcontainer.h | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionoperator.h | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testconversionruletag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testctorinformation.h | 2 +- sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h | 2 +- sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testdtorinformation.h | 2 +- sources/shiboken2/ApiExtractor/tests/testenum.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testenum.h | 2 +- sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testextrainclude.h | 2 +- sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testfunctiontag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h | 2 +- sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testinserttemplate.h | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h | 2 +- sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h | 2 +- sources/shiboken2/ApiExtractor/tests/testnamespace.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testnamespace.h | 2 +- sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testnestedtypes.h | 2 +- sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h | 2 +- sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testrefcounttag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h | 2 +- sources/shiboken2/ApiExtractor/tests/testremovefield.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testremovefield.h | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h | 2 +- sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testresolvetype.h | 2 +- sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testreverseoperators.h | 2 +- sources/shiboken2/ApiExtractor/tests/testtemplates.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testtemplates.h | 2 +- sources/shiboken2/ApiExtractor/tests/testtoposort.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testtoposort.h | 2 +- sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testtyperevision.h | 2 +- sources/shiboken2/ApiExtractor/tests/testutil.h | 2 +- sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h | 2 +- sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp | 2 +- sources/shiboken2/ApiExtractor/tests/testvoidarg.h | 2 +- sources/shiboken2/ApiExtractor/typedatabase.cpp | 2 +- sources/shiboken2/ApiExtractor/typedatabase.h | 2 +- sources/shiboken2/ApiExtractor/typedatabase_typedefs.h | 2 +- sources/shiboken2/ApiExtractor/typeparser.cpp | 2 +- sources/shiboken2/ApiExtractor/typeparser.h | 2 +- sources/shiboken2/ApiExtractor/typesystem.cpp | 2 +- sources/shiboken2/ApiExtractor/typesystem.h | 2 +- sources/shiboken2/ApiExtractor/typesystem_enums.h | 2 +- sources/shiboken2/ApiExtractor/typesystem_p.h | 2 +- sources/shiboken2/ApiExtractor/typesystem_typedefs.h | 2 +- sources/shiboken2/generator/generator.cpp | 2 +- sources/shiboken2/generator/generator.h | 2 +- sources/shiboken2/generator/main.cpp | 2 +- sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp | 2 +- sources/shiboken2/generator/qtdoc/qtdocgenerator.h | 2 +- sources/shiboken2/generator/shiboken2/cppgenerator.cpp | 2 +- sources/shiboken2/generator/shiboken2/cppgenerator.h | 2 +- sources/shiboken2/generator/shiboken2/headergenerator.cpp | 2 +- sources/shiboken2/generator/shiboken2/headergenerator.h | 2 +- sources/shiboken2/generator/shiboken2/overloaddata.cpp | 2 +- sources/shiboken2/generator/shiboken2/overloaddata.h | 2 +- sources/shiboken2/generator/shiboken2/shibokengenerator.cpp | 2 +- sources/shiboken2/generator/shiboken2/shibokengenerator.h | 2 +- sources/shiboken2/generatorrunnermacros.h | 2 +- sources/shiboken2/generators/shiboken/shiboken.cpp | 2 +- sources/shiboken2/libshiboken/autodecref.h | 2 +- sources/shiboken2/libshiboken/basewrapper.cpp | 2 +- sources/shiboken2/libshiboken/basewrapper.h | 2 +- sources/shiboken2/libshiboken/basewrapper_p.h | 2 +- sources/shiboken2/libshiboken/bindingmanager.cpp | 2 +- sources/shiboken2/libshiboken/bindingmanager.h | 2 +- sources/shiboken2/libshiboken/debugfreehook.cpp | 2 +- sources/shiboken2/libshiboken/debugfreehook.h | 2 +- sources/shiboken2/libshiboken/gilstate.cpp | 2 +- sources/shiboken2/libshiboken/gilstate.h | 2 +- sources/shiboken2/libshiboken/helper.cpp | 2 +- sources/shiboken2/libshiboken/helper.h | 2 +- sources/shiboken2/libshiboken/python25compat.h | 2 +- sources/shiboken2/libshiboken/qapp_macro.cpp | 2 +- sources/shiboken2/libshiboken/qapp_macro.h | 2 +- sources/shiboken2/libshiboken/sbkarrayconverter.cpp | 2 +- sources/shiboken2/libshiboken/sbkarrayconverter.h | 2 +- sources/shiboken2/libshiboken/sbkarrayconverter_p.h | 2 +- sources/shiboken2/libshiboken/sbkconverter.cpp | 2 +- sources/shiboken2/libshiboken/sbkconverter.h | 2 +- sources/shiboken2/libshiboken/sbkconverter_p.h | 2 +- sources/shiboken2/libshiboken/sbkdbg.h | 2 +- sources/shiboken2/libshiboken/sbkenum.cpp | 2 +- sources/shiboken2/libshiboken/sbkenum.h | 2 +- sources/shiboken2/libshiboken/sbkmodule.cpp | 2 +- sources/shiboken2/libshiboken/sbkmodule.h | 2 +- sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp | 2 +- sources/shiboken2/libshiboken/sbkpython.h | 2 +- sources/shiboken2/libshiboken/sbkstring.cpp | 2 +- sources/shiboken2/libshiboken/sbkstring.h | 2 +- sources/shiboken2/libshiboken/sbkversion.h.in | 2 +- sources/shiboken2/libshiboken/shiboken.h | 2 +- sources/shiboken2/libshiboken/shibokenbuffer.cpp | 2 +- sources/shiboken2/libshiboken/shibokenbuffer.h | 2 +- sources/shiboken2/libshiboken/shibokenmacros.h | 2 +- sources/shiboken2/libshiboken/signature.cpp | 2 +- sources/shiboken2/libshiboken/signature.h | 2 +- sources/shiboken2/libshiboken/threadstatesaver.cpp | 2 +- sources/shiboken2/libshiboken/threadstatesaver.h | 2 +- sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp | 2 +- sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h | 2 +- sources/shiboken2/libshiboken/voidptr.cpp | 2 +- sources/shiboken2/libshiboken/voidptr.h | 2 +- sources/shiboken2/shiboken_version.py | 2 +- sources/shiboken2/tests/dumpcodemodel/main.cpp | 2 +- sources/shiboken2/tests/libminimal/libminimalmacros.h | 2 +- sources/shiboken2/tests/libminimal/listuser.cpp | 2 +- sources/shiboken2/tests/libminimal/listuser.h | 2 +- sources/shiboken2/tests/libminimal/minbool.h | 2 +- sources/shiboken2/tests/libminimal/obj.cpp | 2 +- sources/shiboken2/tests/libminimal/obj.h | 2 +- sources/shiboken2/tests/libminimal/typedef.cpp | 2 +- sources/shiboken2/tests/libminimal/typedef.h | 2 +- sources/shiboken2/tests/libminimal/val.h | 2 +- sources/shiboken2/tests/libother/extendsnoimplicitconversion.h | 2 +- sources/shiboken2/tests/libother/libothermacros.h | 2 +- sources/shiboken2/tests/libother/number.cpp | 2 +- sources/shiboken2/tests/libother/number.h | 2 +- sources/shiboken2/tests/libother/otherderived.cpp | 2 +- sources/shiboken2/tests/libother/otherderived.h | 2 +- sources/shiboken2/tests/libother/othermultiplederived.cpp | 2 +- sources/shiboken2/tests/libother/othermultiplederived.h | 2 +- sources/shiboken2/tests/libother/otherobjecttype.cpp | 2 +- sources/shiboken2/tests/libother/otherobjecttype.h | 2 +- sources/shiboken2/tests/libsample/abstract.cpp | 2 +- sources/shiboken2/tests/libsample/abstract.h | 2 +- sources/shiboken2/tests/libsample/blackbox.cpp | 2 +- sources/shiboken2/tests/libsample/blackbox.h | 2 +- sources/shiboken2/tests/libsample/bucket.cpp | 2 +- sources/shiboken2/tests/libsample/bucket.h | 2 +- sources/shiboken2/tests/libsample/bytearray.cpp | 2 +- sources/shiboken2/tests/libsample/bytearray.h | 2 +- sources/shiboken2/tests/libsample/collector.cpp | 2 +- sources/shiboken2/tests/libsample/collector.h | 2 +- sources/shiboken2/tests/libsample/complex.cpp | 2 +- sources/shiboken2/tests/libsample/complex.h | 2 +- sources/shiboken2/tests/libsample/ctorconvrule.h | 2 +- sources/shiboken2/tests/libsample/cvlist.h | 2 +- sources/shiboken2/tests/libsample/derived.cpp | 2 +- sources/shiboken2/tests/libsample/derived.h | 2 +- sources/shiboken2/tests/libsample/echo.cpp | 2 +- sources/shiboken2/tests/libsample/echo.h | 2 +- sources/shiboken2/tests/libsample/expression.cpp | 2 +- sources/shiboken2/tests/libsample/expression.h | 2 +- sources/shiboken2/tests/libsample/filter.cpp | 2 +- sources/shiboken2/tests/libsample/filter.h | 2 +- sources/shiboken2/tests/libsample/functions.cpp | 2 +- sources/shiboken2/tests/libsample/functions.h | 2 +- sources/shiboken2/tests/libsample/handle.cpp | 2 +- sources/shiboken2/tests/libsample/handle.h | 2 +- sources/shiboken2/tests/libsample/implicitconv.cpp | 2 +- sources/shiboken2/tests/libsample/implicitconv.h | 2 +- sources/shiboken2/tests/libsample/injectcode.cpp | 2 +- sources/shiboken2/tests/libsample/injectcode.h | 2 +- sources/shiboken2/tests/libsample/libsamplemacros.h | 2 +- sources/shiboken2/tests/libsample/list.h | 2 +- sources/shiboken2/tests/libsample/listuser.cpp | 2 +- sources/shiboken2/tests/libsample/listuser.h | 2 +- sources/shiboken2/tests/libsample/main.cpp | 2 +- sources/shiboken2/tests/libsample/mapuser.cpp | 2 +- sources/shiboken2/tests/libsample/mapuser.h | 2 +- sources/shiboken2/tests/libsample/modelindex.h | 2 +- sources/shiboken2/tests/libsample/modifications.cpp | 2 +- sources/shiboken2/tests/libsample/modifications.h | 2 +- sources/shiboken2/tests/libsample/modified_constructor.cpp | 2 +- sources/shiboken2/tests/libsample/modified_constructor.h | 2 +- sources/shiboken2/tests/libsample/multiple_derived.cpp | 2 +- sources/shiboken2/tests/libsample/multiple_derived.h | 2 +- sources/shiboken2/tests/libsample/noimplicitconversion.h | 2 +- sources/shiboken2/tests/libsample/nondefaultctor.h | 2 +- sources/shiboken2/tests/libsample/null.h | 2 +- sources/shiboken2/tests/libsample/objectmodel.cpp | 2 +- sources/shiboken2/tests/libsample/objectmodel.h | 2 +- sources/shiboken2/tests/libsample/objecttype.cpp | 2 +- sources/shiboken2/tests/libsample/objecttype.h | 2 +- sources/shiboken2/tests/libsample/objecttypebyvalue.h | 2 +- sources/shiboken2/tests/libsample/objecttypeholder.cpp | 2 +- sources/shiboken2/tests/libsample/objecttypeholder.h | 2 +- sources/shiboken2/tests/libsample/objecttypelayout.cpp | 2 +- sources/shiboken2/tests/libsample/objecttypelayout.h | 2 +- sources/shiboken2/tests/libsample/objecttypeoperators.cpp | 2 +- sources/shiboken2/tests/libsample/objecttypeoperators.h | 2 +- sources/shiboken2/tests/libsample/objectview.cpp | 2 +- sources/shiboken2/tests/libsample/objectview.h | 2 +- sources/shiboken2/tests/libsample/oddbool.h | 2 +- sources/shiboken2/tests/libsample/onlycopy.cpp | 2 +- sources/shiboken2/tests/libsample/onlycopy.h | 2 +- sources/shiboken2/tests/libsample/overload.cpp | 2 +- sources/shiboken2/tests/libsample/overload.h | 2 +- sources/shiboken2/tests/libsample/overloadsort.cpp | 2 +- sources/shiboken2/tests/libsample/overloadsort.h | 2 +- sources/shiboken2/tests/libsample/pairuser.cpp | 2 +- sources/shiboken2/tests/libsample/pairuser.h | 2 +- sources/shiboken2/tests/libsample/pen.cpp | 2 +- sources/shiboken2/tests/libsample/pen.h | 2 +- sources/shiboken2/tests/libsample/photon.cpp | 2 +- sources/shiboken2/tests/libsample/photon.h | 2 +- sources/shiboken2/tests/libsample/point.cpp | 2 +- sources/shiboken2/tests/libsample/point.h | 2 +- sources/shiboken2/tests/libsample/pointerholder.h | 2 +- sources/shiboken2/tests/libsample/pointf.cpp | 2 +- sources/shiboken2/tests/libsample/pointf.h | 2 +- sources/shiboken2/tests/libsample/polygon.cpp | 2 +- sources/shiboken2/tests/libsample/polygon.h | 2 +- sources/shiboken2/tests/libsample/privatector.h | 2 +- sources/shiboken2/tests/libsample/privatedtor.h | 2 +- sources/shiboken2/tests/libsample/protected.cpp | 2 +- sources/shiboken2/tests/libsample/protected.h | 2 +- sources/shiboken2/tests/libsample/rect.h | 2 +- sources/shiboken2/tests/libsample/reference.cpp | 2 +- sources/shiboken2/tests/libsample/reference.h | 2 +- sources/shiboken2/tests/libsample/removednamespaces.h | 2 +- sources/shiboken2/tests/libsample/sample.cpp | 2 +- sources/shiboken2/tests/libsample/sample.h | 2 +- sources/shiboken2/tests/libsample/samplenamespace.cpp | 2 +- sources/shiboken2/tests/libsample/samplenamespace.h | 2 +- sources/shiboken2/tests/libsample/sbkdate.cpp | 2 +- sources/shiboken2/tests/libsample/sbkdate.h | 2 +- sources/shiboken2/tests/libsample/simplefile.cpp | 2 +- sources/shiboken2/tests/libsample/simplefile.h | 2 +- sources/shiboken2/tests/libsample/size.cpp | 2 +- sources/shiboken2/tests/libsample/size.h | 2 +- sources/shiboken2/tests/libsample/sometime.cpp | 2 +- sources/shiboken2/tests/libsample/sometime.h | 2 +- sources/shiboken2/tests/libsample/str.cpp | 2 +- sources/shiboken2/tests/libsample/str.h | 2 +- sources/shiboken2/tests/libsample/strlist.cpp | 2 +- sources/shiboken2/tests/libsample/strlist.h | 2 +- sources/shiboken2/tests/libsample/templateptr.cpp | 2 +- sources/shiboken2/tests/libsample/templateptr.h | 2 +- sources/shiboken2/tests/libsample/transform.cpp | 2 +- sources/shiboken2/tests/libsample/transform.h | 2 +- sources/shiboken2/tests/libsample/valueandvirtual.h | 2 +- sources/shiboken2/tests/libsample/virtualmethods.cpp | 2 +- sources/shiboken2/tests/libsample/virtualmethods.h | 2 +- sources/shiboken2/tests/libsample/voidholder.h | 2 +- sources/shiboken2/tests/libsmart/libsmartmacros.h | 2 +- sources/shiboken2/tests/libsmart/smart.cpp | 2 +- sources/shiboken2/tests/libsmart/smart.h | 2 +- sources/shiboken2/tests/minimalbinding/global.h | 2 +- sources/shiboken2/tests/minimalbinding/listuser_test.py | 2 +- sources/shiboken2/tests/minimalbinding/minbool_test.py | 2 +- sources/shiboken2/tests/minimalbinding/obj_test.py | 2 +- sources/shiboken2/tests/minimalbinding/typedef_test.py | 2 +- sources/shiboken2/tests/minimalbinding/val_test.py | 2 +- .../shiboken2/tests/otherbinding/collector_external_operator_test.py | 2 +- .../conversion_operator_for_class_without_implicit_conversions_test.py | 2 +- sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py | 2 +- sources/shiboken2/tests/otherbinding/global.h | 2 +- sources/shiboken2/tests/otherbinding/module_reload_test.py | 2 +- sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py | 2 +- sources/shiboken2/tests/otherbinding/objtypehashes_test.py | 2 +- sources/shiboken2/tests/otherbinding/otherderived_test.py | 2 +- sources/shiboken2/tests/otherbinding/test_module_template.py | 2 +- sources/shiboken2/tests/otherbinding/typediscovery_test.py | 2 +- .../shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py | 2 +- sources/shiboken2/tests/otherbinding/wrongctor_test.py | 2 +- sources/shiboken2/tests/py3kcompat.py | 2 +- sources/shiboken2/tests/samplebinding/__del___test.py | 2 +- sources/shiboken2/tests/samplebinding/abstract_test.py | 2 +- sources/shiboken2/tests/samplebinding/addedfunction_test.py | 2 +- .../tests/samplebinding/addedfunction_with_container_args_test.py | 2 +- sources/shiboken2/tests/samplebinding/argumentmodifications_test.py | 2 +- sources/shiboken2/tests/samplebinding/array_numpy_test.py | 2 +- sources/shiboken2/tests/samplebinding/array_sequence_test.py | 2 +- sources/shiboken2/tests/samplebinding/bug_554_test.py | 2 +- sources/shiboken2/tests/samplebinding/bug_704_test.py | 2 +- sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp | 2 +- sources/shiboken2/tests/samplebinding/bytearray_test.py | 2 +- sources/shiboken2/tests/samplebinding/child_return_test.py | 2 +- sources/shiboken2/tests/samplebinding/class_fields_test.py | 2 +- sources/shiboken2/tests/samplebinding/collector_test.py | 2 +- sources/shiboken2/tests/samplebinding/complex_test.py | 2 +- sources/shiboken2/tests/samplebinding/conversion_operator_test.py | 2 +- sources/shiboken2/tests/samplebinding/copy_test.py | 2 +- sources/shiboken2/tests/samplebinding/ctorconvrule_test.py | 2 +- sources/shiboken2/tests/samplebinding/cyclic_test.py | 2 +- sources/shiboken2/tests/samplebinding/date_test.py | 2 +- sources/shiboken2/tests/samplebinding/decisor_test.py | 2 +- sources/shiboken2/tests/samplebinding/delete_test.py | 2 +- sources/shiboken2/tests/samplebinding/deprecated_test.py | 2 +- sources/shiboken2/tests/samplebinding/derived_test.py | 2 +- sources/shiboken2/tests/samplebinding/duck_punching_test.py | 2 +- sources/shiboken2/tests/samplebinding/echo_test.py | 2 +- sources/shiboken2/tests/samplebinding/enum_test.py | 2 +- sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py | 2 +- sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py | 2 +- sources/shiboken2/tests/samplebinding/event_loop_thread_test.py | 2 +- sources/shiboken2/tests/samplebinding/filter_test.py | 2 +- sources/shiboken2/tests/samplebinding/global.h | 2 +- sources/shiboken2/tests/samplebinding/handleholder_test.py | 2 +- sources/shiboken2/tests/samplebinding/hashabletype_test.py | 2 +- sources/shiboken2/tests/samplebinding/ignorederefop_test.py | 2 +- sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py | 2 +- sources/shiboken2/tests/samplebinding/implicitconv_test.py | 2 +- sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py | 2 +- sources/shiboken2/tests/samplebinding/injectcode_test.py | 2 +- sources/shiboken2/tests/samplebinding/innerclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/intlist_test.py | 2 +- sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py | 2 +- sources/shiboken2/tests/samplebinding/keep_reference_test.py | 2 +- sources/shiboken2/tests/samplebinding/list_test.py | 2 +- sources/shiboken2/tests/samplebinding/lock_test.py | 2 +- sources/shiboken2/tests/samplebinding/map_test.py | 2 +- sources/shiboken2/tests/samplebinding/metaclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py | 2 +- sources/shiboken2/tests/samplebinding/mixed_mi_test.py | 2 +- sources/shiboken2/tests/samplebinding/modelindex_test.py | 2 +- sources/shiboken2/tests/samplebinding/modelview_test.py | 2 +- sources/shiboken2/tests/samplebinding/modifications_test.py | 2 +- sources/shiboken2/tests/samplebinding/modified_constructor_test.py | 2 +- sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py | 2 +- sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py | 2 +- sources/shiboken2/tests/samplebinding/multiple_derived_test.py | 2 +- sources/shiboken2/tests/samplebinding/namespace_test.py | 2 +- sources/shiboken2/tests/samplebinding/newdivision_test.py | 2 +- sources/shiboken2/tests/samplebinding/nondefaultctor_test.py | 2 +- sources/shiboken2/tests/samplebinding/nonzero_test.py | 2 +- sources/shiboken2/tests/samplebinding/numericaltypedef_test.py | 2 +- sources/shiboken2/tests/samplebinding/numpy_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttype_test.py | 2 +- .../shiboken2/tests/samplebinding/objecttype_with_named_args_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttypelayout_test.py | 2 +- sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py | 2 +- .../samplebinding/objecttypereferenceasvirtualmethodargument_test.py | 2 +- sources/shiboken2/tests/samplebinding/oddbool_test.py | 2 +- sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py | 2 +- sources/shiboken2/tests/samplebinding/onlycopyclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/overflow_test.py | 2 +- sources/shiboken2/tests/samplebinding/overload_sorting_test.py | 2 +- sources/shiboken2/tests/samplebinding/overload_test.py | 2 +- sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py | 2 +- .../tests/samplebinding/ownership_argument_invalidation_test.py | 2 +- .../shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py | 2 +- .../tests/samplebinding/ownership_delete_child_in_python_test.py | 2 +- sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py | 2 +- .../tests/samplebinding/ownership_invalidate_after_use_test.py | 2 +- .../shiboken2/tests/samplebinding/ownership_invalidate_child_test.py | 2 +- .../tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py | 2 +- .../shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py | 2 +- sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py | 2 +- sources/shiboken2/tests/samplebinding/ownership_transference_test.py | 2 +- sources/shiboken2/tests/samplebinding/pair_test.py | 2 +- sources/shiboken2/tests/samplebinding/pen_test.py | 2 +- sources/shiboken2/tests/samplebinding/point_test.py | 2 +- sources/shiboken2/tests/samplebinding/pointerholder_test.py | 2 +- sources/shiboken2/tests/samplebinding/pointf_test.py | 2 +- .../shiboken2/tests/samplebinding/primitivereferenceargument_test.py | 2 +- sources/shiboken2/tests/samplebinding/privatector_test.py | 2 +- sources/shiboken2/tests/samplebinding/privatedtor_test.py | 2 +- sources/shiboken2/tests/samplebinding/protected_test.py | 2 +- sources/shiboken2/tests/samplebinding/pstrlist_test.py | 2 +- sources/shiboken2/tests/samplebinding/pystr_test.py | 2 +- sources/shiboken2/tests/samplebinding/python_thread_test.py | 2 +- sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py | 2 +- sources/shiboken2/tests/samplebinding/reference_test.py | 2 +- sources/shiboken2/tests/samplebinding/referencetopointer_test.py | 2 +- sources/shiboken2/tests/samplebinding/return_null_test.py | 2 +- sources/shiboken2/tests/samplebinding/richcompare_test.py | 2 +- sources/shiboken2/tests/samplebinding/sample_test.py | 2 +- sources/shiboken2/tests/samplebinding/simplefile_glue.cpp | 2 +- sources/shiboken2/tests/samplebinding/simplefile_test.py | 2 +- sources/shiboken2/tests/samplebinding/size_test.py | 2 +- sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py | 2 +- sources/shiboken2/tests/samplebinding/str_test.py | 2 +- sources/shiboken2/tests/samplebinding/strlist_test.py | 2 +- sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py | 2 +- sources/shiboken2/tests/samplebinding/time_test.py | 2 +- sources/shiboken2/tests/samplebinding/transform_test.py | 2 +- sources/shiboken2/tests/samplebinding/typeconverters_test.py | 2 +- sources/shiboken2/tests/samplebinding/typedealloc_test.py | 2 +- sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py | 2 +- sources/shiboken2/tests/samplebinding/unsafe_parent_test.py | 2 +- sources/shiboken2/tests/samplebinding/useraddedctor_test.py | 2 +- sources/shiboken2/tests/samplebinding/virtualdtor_test.py | 2 +- sources/shiboken2/tests/samplebinding/virtualmethods_test.py | 2 +- sources/shiboken2/tests/samplebinding/visibilitychange_test.py | 2 +- sources/shiboken2/tests/samplebinding/voidholder_test.py | 2 +- sources/shiboken2/tests/samplebinding/weakref_test.py | 2 +- sources/shiboken2/tests/samplebinding/writableclassdict_test.py | 2 +- sources/shiboken2/tests/shibokenmodule/module_test.py | 2 +- sources/shiboken2/tests/smartbinding/global.h | 2 +- sources/shiboken2/tests/smartbinding/smart_pointer_test.py | 2 +- sources/shiboken2/tests/sphinxtabletest.cpp | 2 +- sources/shiboken2/tests/sphinxtabletest.h | 2 +- sources/shiboken2/tests/test_generator/dummygenerator.cpp | 2 +- sources/shiboken2/tests/test_generator/dummygenerator.h | 2 +- sources/shiboken2/tests/test_generator/dummygentest.cpp | 2 +- sources/shiboken2/tests/test_generator/dummygentest.h | 2 +- sources/shiboken2/tests/test_generator/main.cpp | 2 +- testing/__init__.py | 2 +- testing/blacklist.py | 2 +- testing/buildlog.py | 2 +- testing/command.py | 2 +- testing/helper.py | 2 +- testing/parser.py | 2 +- testrunner.py | 2 +- 1870 files changed, 1870 insertions(+), 1870 deletions(-) diff --git a/build_scripts/__init__.py b/build_scripts/__init__.py index f1ebb00d9..571d37492 100644 --- a/build_scripts/__init__.py +++ b/build_scripts/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/main.py b/build_scripts/main.py index 446a7efd0..23eb55008 100644 --- a/build_scripts/main.py +++ b/build_scripts/main.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/options.py b/build_scripts/options.py index e5b6ebd34..3d02b368f 100644 --- a/build_scripts/options.py +++ b/build_scripts/options.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/platforms/__init__.py b/build_scripts/platforms/__init__.py index f1ebb00d9..571d37492 100644 --- a/build_scripts/platforms/__init__.py +++ b/build_scripts/platforms/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/platforms/linux.py b/build_scripts/platforms/linux.py index cb8d86ecf..7eb8a217b 100644 --- a/build_scripts/platforms/linux.py +++ b/build_scripts/platforms/linux.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/platforms/macos.py b/build_scripts/platforms/macos.py index 4b0fe092a..a45192667 100644 --- a/build_scripts/platforms/macos.py +++ b/build_scripts/platforms/macos.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/platforms/unix.py b/build_scripts/platforms/unix.py index 9370e0a22..c93bbbbbe 100644 --- a/build_scripts/platforms/unix.py +++ b/build_scripts/platforms/unix.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/platforms/windows_desktop.py b/build_scripts/platforms/windows_desktop.py index 79ca721ae..6a18659c5 100644 --- a/build_scripts/platforms/windows_desktop.py +++ b/build_scripts/platforms/windows_desktop.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/qtinfo.py b/build_scripts/qtinfo.py index 0abed96d0..e22bc2dbc 100644 --- a/build_scripts/qtinfo.py +++ b/build_scripts/qtinfo.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/build_scripts/utils.py b/build_scripts/utils.py index 58efda5b7..db95df8a8 100644 --- a/build_scripts/utils.py +++ b/build_scripts/utils.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/checklibs.py b/checklibs.py index ecedf836d..18aa11e93 100644 --- a/checklibs.py +++ b/checklibs.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/docs/conf.py b/docs/conf.py index 61e4c7132..7f8bfb2eb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/docs/make.bat b/docs/make.bat index 3db37e4fd..4e169afe0 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -3,7 +3,7 @@ :: Copyright (C) 2017 The Qt Company Ltd. :: Contact: https://www.qt.io/licensing/ :: -:: This file is part of PySide2. +:: This file is part of Qt for Python. :: :: $QT_BEGIN_LICENSE:LGPL$ :: Commercial License Usage diff --git a/examples/3d/simple3d.py b/examples/3d/simple3d.py index a34d19821..3cfa39a05 100644 --- a/examples/3d/simple3d.py +++ b/examples/3d/simple3d.py @@ -5,7 +5,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/axcontainer/axviewer.py b/examples/axcontainer/axviewer.py index cb3d4c0de..79593896d 100644 --- a/examples/axcontainer/axviewer.py +++ b/examples/axcontainer/axviewer.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/charts/audio.py b/examples/charts/audio.py index 94da12cfd..95b78d637 100644 --- a/examples/charts/audio.py +++ b/examples/charts/audio.py @@ -5,7 +5,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/charts/callout.py b/examples/charts/callout.py index 0bc7cdaf5..2b2a4cbb9 100644 --- a/examples/charts/callout.py +++ b/examples/charts/callout.py @@ -5,7 +5,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/charts/lineandbar.py b/examples/charts/lineandbar.py index a9ae8b4d6..958736cad 100644 --- a/examples/charts/lineandbar.py +++ b/examples/charts/lineandbar.py @@ -5,7 +5,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/charts/memoryusage.py b/examples/charts/memoryusage.py index c0e0a38dd..ac4d3c4e3 100644 --- a/examples/charts/memoryusage.py +++ b/examples/charts/memoryusage.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/corelib/threads/mandelbrot.py b/examples/corelib/threads/mandelbrot.py index 53da3d48d..1ba453437 100755 --- a/examples/corelib/threads/mandelbrot.py +++ b/examples/corelib/threads/mandelbrot.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/corelib/tools/codecs/codecs.py b/examples/corelib/tools/codecs/codecs.py index 15f7d9563..abe70bae8 100755 --- a/examples/corelib/tools/codecs/codecs.py +++ b/examples/corelib/tools/codecs/codecs.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/corelib/tools/regexp.py b/examples/corelib/tools/regexp.py index 7e28a5365..b6410394c 100755 --- a/examples/corelib/tools/regexp.py +++ b/examples/corelib/tools/regexp.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/corelib/tools/settingseditor/settingseditor.py b/examples/corelib/tools/settingseditor/settingseditor.py index 905049746..1587fe963 100755 --- a/examples/corelib/tools/settingseditor/settingseditor.py +++ b/examples/corelib/tools/settingseditor/settingseditor.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/datavisualization/bars3d.py b/examples/datavisualization/bars3d.py index c07314cb0..e8b568f22 100644 --- a/examples/datavisualization/bars3d.py +++ b/examples/datavisualization/bars3d.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter1-basics/app.qml b/examples/declarative/extending/chapter1-basics/app.qml index 60ecd7bff..190d0246f 100644 --- a/examples/declarative/extending/chapter1-basics/app.qml +++ b/examples/declarative/extending/chapter1-basics/app.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter1-basics/basics.py b/examples/declarative/extending/chapter1-basics/basics.py index f965cade9..fa0f52983 100644 --- a/examples/declarative/extending/chapter1-basics/basics.py +++ b/examples/declarative/extending/chapter1-basics/basics.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter2-methods/app.qml b/examples/declarative/extending/chapter2-methods/app.qml index 863b597d0..3a44798c7 100644 --- a/examples/declarative/extending/chapter2-methods/app.qml +++ b/examples/declarative/extending/chapter2-methods/app.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter2-methods/methods.py b/examples/declarative/extending/chapter2-methods/methods.py index d6e74f5f0..538a92376 100644 --- a/examples/declarative/extending/chapter2-methods/methods.py +++ b/examples/declarative/extending/chapter2-methods/methods.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter3-bindings/app.qml b/examples/declarative/extending/chapter3-bindings/app.qml index 01b9216e8..277b897e4 100644 --- a/examples/declarative/extending/chapter3-bindings/app.qml +++ b/examples/declarative/extending/chapter3-bindings/app.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter3-bindings/bindings.py b/examples/declarative/extending/chapter3-bindings/bindings.py index 90af6d7e1..52abf250a 100644 --- a/examples/declarative/extending/chapter3-bindings/bindings.py +++ b/examples/declarative/extending/chapter3-bindings/bindings.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter4-customPropertyTypes/app.qml b/examples/declarative/extending/chapter4-customPropertyTypes/app.qml index 00e077276..29ad37d25 100644 --- a/examples/declarative/extending/chapter4-customPropertyTypes/app.qml +++ b/examples/declarative/extending/chapter4-customPropertyTypes/app.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py b/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py index 473b7c15f..024efbf16 100644 --- a/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py +++ b/examples/declarative/extending/chapter4-customPropertyTypes/customPropertyTypes.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter5-listproperties/app.qml b/examples/declarative/extending/chapter5-listproperties/app.qml index 230c29520..9ff6e3b6a 100644 --- a/examples/declarative/extending/chapter5-listproperties/app.qml +++ b/examples/declarative/extending/chapter5-listproperties/app.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/extending/chapter5-listproperties/listproperties.py b/examples/declarative/extending/chapter5-listproperties/listproperties.py index b494eac0d..c06e11ca0 100644 --- a/examples/declarative/extending/chapter5-listproperties/listproperties.py +++ b/examples/declarative/extending/chapter5-listproperties/listproperties.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/scrolling.py b/examples/declarative/scrolling.py index 7b079c8f1..3c46ec860 100755 --- a/examples/declarative/scrolling.py +++ b/examples/declarative/scrolling.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/pytoqml1/main.py b/examples/declarative/signals/pytoqml1/main.py index e90a3cfab..f71969a63 100644 --- a/examples/declarative/signals/pytoqml1/main.py +++ b/examples/declarative/signals/pytoqml1/main.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/pytoqml1/view.qml b/examples/declarative/signals/pytoqml1/view.qml index 21ba8aa65..a35b4866a 100644 --- a/examples/declarative/signals/pytoqml1/view.qml +++ b/examples/declarative/signals/pytoqml1/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy1/main.py b/examples/declarative/signals/qmltopy1/main.py index ba5684951..3d23a6464 100755 --- a/examples/declarative/signals/qmltopy1/main.py +++ b/examples/declarative/signals/qmltopy1/main.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy1/view.qml b/examples/declarative/signals/qmltopy1/view.qml index 0115d432b..32a66eff4 100644 --- a/examples/declarative/signals/qmltopy1/view.qml +++ b/examples/declarative/signals/qmltopy1/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy2/main.py b/examples/declarative/signals/qmltopy2/main.py index be8692c08..0ce7933ed 100755 --- a/examples/declarative/signals/qmltopy2/main.py +++ b/examples/declarative/signals/qmltopy2/main.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy2/view.qml b/examples/declarative/signals/qmltopy2/view.qml index 2a905a69f..6fe6087f2 100644 --- a/examples/declarative/signals/qmltopy2/view.qml +++ b/examples/declarative/signals/qmltopy2/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy3/main.py b/examples/declarative/signals/qmltopy3/main.py index 81c19ee81..3c231c292 100644 --- a/examples/declarative/signals/qmltopy3/main.py +++ b/examples/declarative/signals/qmltopy3/main.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy3/view.qml b/examples/declarative/signals/qmltopy3/view.qml index 72984a137..9657cd4a8 100644 --- a/examples/declarative/signals/qmltopy3/view.qml +++ b/examples/declarative/signals/qmltopy3/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy4/main.py b/examples/declarative/signals/qmltopy4/main.py index 5f180b349..0a54e6e34 100644 --- a/examples/declarative/signals/qmltopy4/main.py +++ b/examples/declarative/signals/qmltopy4/main.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/signals/qmltopy4/view.qml b/examples/declarative/signals/qmltopy4/view.qml index 212df77e2..0d1349fad 100644 --- a/examples/declarative/signals/qmltopy4/view.qml +++ b/examples/declarative/signals/qmltopy4/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/usingmodel.py b/examples/declarative/usingmodel.py index bd2e44693..494647c10 100644 --- a/examples/declarative/usingmodel.py +++ b/examples/declarative/usingmodel.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/declarative/view.qml b/examples/declarative/view.qml index caf2dc1cc..8eb4f7f97 100644 --- a/examples/declarative/view.qml +++ b/examples/declarative/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: diff --git a/examples/macextras/macpasteboardmime.py b/examples/macextras/macpasteboardmime.py index 0daa21a94..412714273 100755 --- a/examples/macextras/macpasteboardmime.py +++ b/examples/macextras/macpasteboardmime.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/multimedia/audiooutput.py b/examples/multimedia/audiooutput.py index 270683110..d8a3860a6 100755 --- a/examples/multimedia/audiooutput.py +++ b/examples/multimedia/audiooutput.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/multimedia/camera.py b/examples/multimedia/camera.py index 1b8d5ad47..f2469eb1b 100644 --- a/examples/multimedia/camera.py +++ b/examples/multimedia/camera.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/multimedia/player.py b/examples/multimedia/player.py index 76445cd30..71604f41f 100644 --- a/examples/multimedia/player.py +++ b/examples/multimedia/player.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/network/blockingfortuneclient.py b/examples/network/blockingfortuneclient.py index 8e73af0f0..650bde9ed 100644 --- a/examples/network/blockingfortuneclient.py +++ b/examples/network/blockingfortuneclient.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/network/fortuneclient.py b/examples/network/fortuneclient.py index 3ec5623b8..00ae0f766 100755 --- a/examples/network/fortuneclient.py +++ b/examples/network/fortuneclient.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/network/fortuneserver.py b/examples/network/fortuneserver.py index 1c08f6e82..852aabafe 100755 --- a/examples/network/fortuneserver.py +++ b/examples/network/fortuneserver.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/network/threadedfortuneserver.py b/examples/network/threadedfortuneserver.py index 95452e7e9..63f0c553b 100755 --- a/examples/network/threadedfortuneserver.py +++ b/examples/network/threadedfortuneserver.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/2dpainting.py b/examples/opengl/2dpainting.py index 6073024c5..9965c02c8 100755 --- a/examples/opengl/2dpainting.py +++ b/examples/opengl/2dpainting.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/contextinfo.py b/examples/opengl/contextinfo.py index b2df1ded2..ef1005604 100644 --- a/examples/opengl/contextinfo.py +++ b/examples/opengl/contextinfo.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/grabber.py b/examples/opengl/grabber.py index f9eb9dc05..2c2836a26 100644 --- a/examples/opengl/grabber.py +++ b/examples/opengl/grabber.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/hellogl.py b/examples/opengl/hellogl.py index 18857faca..1f045739b 100755 --- a/examples/opengl/hellogl.py +++ b/examples/opengl/hellogl.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/hellogl2.py b/examples/opengl/hellogl2.py index 29a68269e..e1af6f2a6 100755 --- a/examples/opengl/hellogl2.py +++ b/examples/opengl/hellogl2.py @@ -6,7 +6,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/overpainting.py b/examples/opengl/overpainting.py index 9285eaa9b..0310913f8 100755 --- a/examples/opengl/overpainting.py +++ b/examples/opengl/overpainting.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/samplebuffers.py b/examples/opengl/samplebuffers.py index eabcdd313..5e4c4391e 100755 --- a/examples/opengl/samplebuffers.py +++ b/examples/opengl/samplebuffers.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/textures/textures.py b/examples/opengl/textures/textures.py index 3c91a6024..fecbdd02a 100755 --- a/examples/opengl/textures/textures.py +++ b/examples/opengl/textures/textures.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/opengl/textures/textures_rc.py b/examples/opengl/textures/textures_rc.py index 2e9faeea7..6b4aa0330 100644 --- a/examples/opengl/textures/textures_rc.py +++ b/examples/opengl/textures/textures_rc.py @@ -4,7 +4,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/script/helloscript.py b/examples/script/helloscript.py index 5ae659f8a..da4fa7d17 100755 --- a/examples/script/helloscript.py +++ b/examples/script/helloscript.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/scriptableapplication/main.cpp b/examples/scriptableapplication/main.cpp index 167eeb0fa..d7cb4b6db 100644 --- a/examples/scriptableapplication/main.cpp +++ b/examples/scriptableapplication/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/examples/scriptableapplication/mainwindow.cpp b/examples/scriptableapplication/mainwindow.cpp index e754bcb93..92415a78d 100644 --- a/examples/scriptableapplication/mainwindow.cpp +++ b/examples/scriptableapplication/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/examples/scriptableapplication/mainwindow.h b/examples/scriptableapplication/mainwindow.h index 4dcafc731..ce613833c 100644 --- a/examples/scriptableapplication/mainwindow.h +++ b/examples/scriptableapplication/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/examples/scriptableapplication/pyside2_config.py b/examples/scriptableapplication/pyside2_config.py index 0eba6cc23..a26d2b490 100644 --- a/examples/scriptableapplication/pyside2_config.py +++ b/examples/scriptableapplication/pyside2_config.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/scriptableapplication/pythonutils.cpp b/examples/scriptableapplication/pythonutils.cpp index 27f1bc71c..2f7d2c2ad 100644 --- a/examples/scriptableapplication/pythonutils.cpp +++ b/examples/scriptableapplication/pythonutils.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/examples/scriptableapplication/pythonutils.h b/examples/scriptableapplication/pythonutils.h index 53e8c4dab..21aef194e 100644 --- a/examples/scriptableapplication/pythonutils.h +++ b/examples/scriptableapplication/pythonutils.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/examples/scriptableapplication/scriptableapplication.xml b/examples/scriptableapplication/scriptableapplication.xml index 18e8277ff..7ef2e9f9e 100644 --- a/examples/scriptableapplication/scriptableapplication.xml +++ b/examples/scriptableapplication/scriptableapplication.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/examples/scriptableapplication/wrappedclasses.h b/examples/scriptableapplication/wrappedclasses.h index c905e2356..d7661429e 100644 --- a/examples/scriptableapplication/wrappedclasses.h +++ b/examples/scriptableapplication/wrappedclasses.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the PySide examples of the Qt Toolkit. +** This file is part of the Qt for Python examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/examples/texttospeech/texttospeech.py b/examples/texttospeech/texttospeech.py index 12edf5d1f..11e5209ca 100644 --- a/examples/texttospeech/texttospeech.py +++ b/examples/texttospeech/texttospeech.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t1.py b/examples/tutorial/t1.py index b3251dbfd..2e4d15859 100644 --- a/examples/tutorial/t1.py +++ b/examples/tutorial/t1.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t10.py b/examples/tutorial/t10.py index 081190c9f..f49faa1b4 100644 --- a/examples/tutorial/t10.py +++ b/examples/tutorial/t10.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t11.py b/examples/tutorial/t11.py index 070782b3f..46e24e0d5 100644 --- a/examples/tutorial/t11.py +++ b/examples/tutorial/t11.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t12.py b/examples/tutorial/t12.py index 6afd88092..a3e1a6cf3 100644 --- a/examples/tutorial/t12.py +++ b/examples/tutorial/t12.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t13.py b/examples/tutorial/t13.py index 34f2fe592..a26db0734 100644 --- a/examples/tutorial/t13.py +++ b/examples/tutorial/t13.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t14.py b/examples/tutorial/t14.py index 609af40c8..caf6d183f 100644 --- a/examples/tutorial/t14.py +++ b/examples/tutorial/t14.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t2.py b/examples/tutorial/t2.py index 91ca2f349..992554dcb 100644 --- a/examples/tutorial/t2.py +++ b/examples/tutorial/t2.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t3.py b/examples/tutorial/t3.py index 9dc50a1b6..be69b6a0d 100644 --- a/examples/tutorial/t3.py +++ b/examples/tutorial/t3.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t4.py b/examples/tutorial/t4.py index 77f593d2d..88f92443b 100644 --- a/examples/tutorial/t4.py +++ b/examples/tutorial/t4.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t5.py b/examples/tutorial/t5.py index 0fdd2ac20..f9f657fac 100644 --- a/examples/tutorial/t5.py +++ b/examples/tutorial/t5.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t6.py b/examples/tutorial/t6.py index d720433f1..b6ef30428 100644 --- a/examples/tutorial/t6.py +++ b/examples/tutorial/t6.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t7.py b/examples/tutorial/t7.py index a9c53f68d..b82840c9a 100644 --- a/examples/tutorial/t7.py +++ b/examples/tutorial/t7.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t8.py b/examples/tutorial/t8.py index d023de154..0c682df19 100644 --- a/examples/tutorial/t8.py +++ b/examples/tutorial/t8.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/tutorial/t9.py b/examples/tutorial/t9.py index 37c0e651a..dc2106d9e 100644 --- a/examples/tutorial/t9.py +++ b/examples/tutorial/t9.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/utils/utils.py b/examples/utils/utils.py index ddba61b8a..522f5356a 100644 --- a/examples/utils/utils.py +++ b/examples/utils/utils.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/webenginewidgets/simplebrowser.py b/examples/webenginewidgets/simplebrowser.py index b895acb35..c7f67667d 100644 --- a/examples/webenginewidgets/simplebrowser.py +++ b/examples/webenginewidgets/simplebrowser.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py b/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py index ebcb724d3..0224c4518 100644 --- a/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py +++ b/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py b/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py index aa0a30240..29e3d6a22 100644 --- a/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py +++ b/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/webenginewidgets/tabbedbrowser/downloadwidget.py b/examples/webenginewidgets/tabbedbrowser/downloadwidget.py index a49a630de..bcfc7a5ed 100644 --- a/examples/webenginewidgets/tabbedbrowser/downloadwidget.py +++ b/examples/webenginewidgets/tabbedbrowser/downloadwidget.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/webenginewidgets/tabbedbrowser/findtoolbar.py b/examples/webenginewidgets/tabbedbrowser/findtoolbar.py index c0c960850..e862a5cf3 100644 --- a/examples/webenginewidgets/tabbedbrowser/findtoolbar.py +++ b/examples/webenginewidgets/tabbedbrowser/findtoolbar.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/webenginewidgets/tabbedbrowser/main.py b/examples/webenginewidgets/tabbedbrowser/main.py index c46d95b07..58cc90346 100644 --- a/examples/webenginewidgets/tabbedbrowser/main.py +++ b/examples/webenginewidgets/tabbedbrowser/main.py @@ -5,7 +5,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/webenginewidgets/tabbedbrowser/webengineview.py b/examples/webenginewidgets/tabbedbrowser/webengineview.py index b1b21930b..7bef74dfe 100644 --- a/examples/webenginewidgets/tabbedbrowser/webengineview.py +++ b/examples/webenginewidgets/tabbedbrowser/webengineview.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/animatedtiles/animatedtiles.py b/examples/widgets/animation/animatedtiles/animatedtiles.py index d3b649d35..f50c99378 100755 --- a/examples/widgets/animation/animatedtiles/animatedtiles.py +++ b/examples/widgets/animation/animatedtiles/animatedtiles.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/animatedtiles/animatedtiles_rc.py b/examples/widgets/animation/animatedtiles/animatedtiles_rc.py index 198416413..561576381 100644 --- a/examples/widgets/animation/animatedtiles/animatedtiles_rc.py +++ b/examples/widgets/animation/animatedtiles/animatedtiles_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/appchooser/appchooser.py b/examples/widgets/animation/appchooser/appchooser.py index 7501bf4e4..67550ab4e 100755 --- a/examples/widgets/animation/appchooser/appchooser.py +++ b/examples/widgets/animation/appchooser/appchooser.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/appchooser/appchooser_rc.py b/examples/widgets/animation/appchooser/appchooser_rc.py index d661c220d..c8fa08abf 100644 --- a/examples/widgets/animation/appchooser/appchooser_rc.py +++ b/examples/widgets/animation/appchooser/appchooser_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/easing/easing.py b/examples/widgets/animation/easing/easing.py index 9989c81b5..17377e83d 100644 --- a/examples/widgets/animation/easing/easing.py +++ b/examples/widgets/animation/easing/easing.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/easing/easing_rc.py b/examples/widgets/animation/easing/easing_rc.py index aff458b1d..7ed4e6d0b 100644 --- a/examples/widgets/animation/easing/easing_rc.py +++ b/examples/widgets/animation/easing/easing_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/states/states.py b/examples/widgets/animation/states/states.py index e812e9fd6..6b31922cb 100755 --- a/examples/widgets/animation/states/states.py +++ b/examples/widgets/animation/states/states.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/animation/states/states_rc.py b/examples/widgets/animation/states/states_rc.py index 67a05f8f0..fe8a05c45 100644 --- a/examples/widgets/animation/states/states_rc.py +++ b/examples/widgets/animation/states/states_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/dialogs/classwizard/classwizard.py b/examples/widgets/dialogs/classwizard/classwizard.py index ff7677f7d..c85ea5b29 100755 --- a/examples/widgets/dialogs/classwizard/classwizard.py +++ b/examples/widgets/dialogs/classwizard/classwizard.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/dialogs/classwizard/classwizard_rc.py b/examples/widgets/dialogs/classwizard/classwizard_rc.py index 9c5112ea8..c7b8a5a99 100644 --- a/examples/widgets/dialogs/classwizard/classwizard_rc.py +++ b/examples/widgets/dialogs/classwizard/classwizard_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/dialogs/extension.py b/examples/widgets/dialogs/extension.py index 866e04b30..6e08d4d87 100755 --- a/examples/widgets/dialogs/extension.py +++ b/examples/widgets/dialogs/extension.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/dialogs/findfiles.py b/examples/widgets/dialogs/findfiles.py index cc410335f..b59871846 100755 --- a/examples/widgets/dialogs/findfiles.py +++ b/examples/widgets/dialogs/findfiles.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/dialogs/standarddialogs.py b/examples/widgets/dialogs/standarddialogs.py index 41039a3af..cf065fd63 100644 --- a/examples/widgets/dialogs/standarddialogs.py +++ b/examples/widgets/dialogs/standarddialogs.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/dialogs/trivialwizard.py b/examples/widgets/dialogs/trivialwizard.py index 64a25878e..0cfe3adef 100755 --- a/examples/widgets/dialogs/trivialwizard.py +++ b/examples/widgets/dialogs/trivialwizard.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/draganddrop/draggabletext/draggabletext.py b/examples/widgets/draganddrop/draggabletext/draggabletext.py index eaddc57d1..67e988714 100755 --- a/examples/widgets/draganddrop/draggabletext/draggabletext.py +++ b/examples/widgets/draganddrop/draggabletext/draggabletext.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py b/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py index 21874a6b4..0f0cd970a 100644 --- a/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py +++ b/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/effects/lighting.py b/examples/widgets/effects/lighting.py index efbb74711..265071f45 100755 --- a/examples/widgets/effects/lighting.py +++ b/examples/widgets/effects/lighting.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/anchorlayout.py b/examples/widgets/graphicsview/anchorlayout.py index 86cea5cf8..02ac11f00 100755 --- a/examples/widgets/graphicsview/anchorlayout.py +++ b/examples/widgets/graphicsview/anchorlayout.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/collidingmice/collidingmice.py b/examples/widgets/graphicsview/collidingmice/collidingmice.py index 03c7ed199..575ecc1f1 100644 --- a/examples/widgets/graphicsview/collidingmice/collidingmice.py +++ b/examples/widgets/graphicsview/collidingmice/collidingmice.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/collidingmice/mice_rc.py b/examples/widgets/graphicsview/collidingmice/mice_rc.py index bf3243b06..e9042a0d9 100644 --- a/examples/widgets/graphicsview/collidingmice/mice_rc.py +++ b/examples/widgets/graphicsview/collidingmice/mice_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/diagramscene/diagramscene.py b/examples/widgets/graphicsview/diagramscene/diagramscene.py index ea0af84f9..cd5891e57 100755 --- a/examples/widgets/graphicsview/diagramscene/diagramscene.py +++ b/examples/widgets/graphicsview/diagramscene/diagramscene.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py b/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py index aab76d9d6..d32b488f5 100644 --- a/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py +++ b/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py b/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py index a0d685f85..b2f0a7c4f 100644 --- a/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py +++ b/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py b/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py index 240a23d43..67cd6b282 100644 --- a/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py +++ b/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/graphicsview/elasticnodes.py b/examples/widgets/graphicsview/elasticnodes.py index 8da21334b..f013156d7 100755 --- a/examples/widgets/graphicsview/elasticnodes.py +++ b/examples/widgets/graphicsview/elasticnodes.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/addressbook/adddialogwidget.py b/examples/widgets/itemviews/addressbook/adddialogwidget.py index c0dcaf6c0..cdf11a70f 100644 --- a/examples/widgets/itemviews/addressbook/adddialogwidget.py +++ b/examples/widgets/itemviews/addressbook/adddialogwidget.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/addressbook/addressbook.py b/examples/widgets/itemviews/addressbook/addressbook.py index f8927be5e..32ab5115c 100644 --- a/examples/widgets/itemviews/addressbook/addressbook.py +++ b/examples/widgets/itemviews/addressbook/addressbook.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/addressbook/addresswidget.py b/examples/widgets/itemviews/addressbook/addresswidget.py index 7ecd42e7d..e275ab764 100644 --- a/examples/widgets/itemviews/addressbook/addresswidget.py +++ b/examples/widgets/itemviews/addressbook/addresswidget.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/addressbook/newaddresstab.py b/examples/widgets/itemviews/addressbook/newaddresstab.py index 82dcff441..afb8e66e9 100644 --- a/examples/widgets/itemviews/addressbook/newaddresstab.py +++ b/examples/widgets/itemviews/addressbook/newaddresstab.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/addressbook/tablemodel.py b/examples/widgets/itemviews/addressbook/tablemodel.py index 24316f981..240a4349b 100644 --- a/examples/widgets/itemviews/addressbook/tablemodel.py +++ b/examples/widgets/itemviews/addressbook/tablemodel.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/basicsortfiltermodel.py b/examples/widgets/itemviews/basicsortfiltermodel.py index 3051c9fa0..c8df546e8 100755 --- a/examples/widgets/itemviews/basicsortfiltermodel.py +++ b/examples/widgets/itemviews/basicsortfiltermodel.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/fetchmore.py b/examples/widgets/itemviews/fetchmore.py index 08655db0d..2eeb1bd3c 100755 --- a/examples/widgets/itemviews/fetchmore.py +++ b/examples/widgets/itemviews/fetchmore.py @@ -7,7 +7,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/stardelegate/stardelegate.py b/examples/widgets/itemviews/stardelegate/stardelegate.py index 44a2d6694..34492e3db 100644 --- a/examples/widgets/itemviews/stardelegate/stardelegate.py +++ b/examples/widgets/itemviews/stardelegate/stardelegate.py @@ -7,7 +7,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/stardelegate/stareditor.py b/examples/widgets/itemviews/stardelegate/stareditor.py index 440659a4f..1be69e8bb 100644 --- a/examples/widgets/itemviews/stardelegate/stareditor.py +++ b/examples/widgets/itemviews/stardelegate/stareditor.py @@ -7,7 +7,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/itemviews/stardelegate/starrating.py b/examples/widgets/itemviews/stardelegate/starrating.py index b573db424..bd5b084eb 100644 --- a/examples/widgets/itemviews/stardelegate/starrating.py +++ b/examples/widgets/itemviews/stardelegate/starrating.py @@ -7,7 +7,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/layouts/basiclayouts.py b/examples/widgets/layouts/basiclayouts.py index 03f3315d5..ef53b4829 100755 --- a/examples/widgets/layouts/basiclayouts.py +++ b/examples/widgets/layouts/basiclayouts.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/layouts/dynamiclayouts.py b/examples/widgets/layouts/dynamiclayouts.py index e80b8c885..fe46c053a 100644 --- a/examples/widgets/layouts/dynamiclayouts.py +++ b/examples/widgets/layouts/dynamiclayouts.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/layouts/flowlayout.py b/examples/widgets/layouts/flowlayout.py index 75dfa4679..51522ca0a 100755 --- a/examples/widgets/layouts/flowlayout.py +++ b/examples/widgets/layouts/flowlayout.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/mainwindows/application/application.py b/examples/widgets/mainwindows/application/application.py index f1f2ca7c2..be0dc992e 100755 --- a/examples/widgets/mainwindows/application/application.py +++ b/examples/widgets/mainwindows/application/application.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/mainwindows/application/application_rc.py b/examples/widgets/mainwindows/application/application_rc.py index f5cc2c078..6592aa48d 100644 --- a/examples/widgets/mainwindows/application/application_rc.py +++ b/examples/widgets/mainwindows/application/application_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/mainwindows/dockwidgets/dockwidgets.py b/examples/widgets/mainwindows/dockwidgets/dockwidgets.py index 29443878a..e5a6a958a 100644 --- a/examples/widgets/mainwindows/dockwidgets/dockwidgets.py +++ b/examples/widgets/mainwindows/dockwidgets/dockwidgets.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py b/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py index 0a9c622ed..393a226dc 100644 --- a/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py +++ b/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/mainwindows/mdi/mdi.py b/examples/widgets/mainwindows/mdi/mdi.py index b8bdd9aee..4e5eed779 100755 --- a/examples/widgets/mainwindows/mdi/mdi.py +++ b/examples/widgets/mainwindows/mdi/mdi.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/mainwindows/mdi/mdi_rc.py b/examples/widgets/mainwindows/mdi/mdi_rc.py index 3e586f4fa..005526791 100644 --- a/examples/widgets/mainwindows/mdi/mdi_rc.py +++ b/examples/widgets/mainwindows/mdi/mdi_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/painting/basicdrawing/basicdrawing.py b/examples/widgets/painting/basicdrawing/basicdrawing.py index c2f3e672c..0dab1d913 100755 --- a/examples/widgets/painting/basicdrawing/basicdrawing.py +++ b/examples/widgets/painting/basicdrawing/basicdrawing.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/painting/basicdrawing/basicdrawing_rc.py b/examples/widgets/painting/basicdrawing/basicdrawing_rc.py index b9de90387..6e1668c29 100644 --- a/examples/widgets/painting/basicdrawing/basicdrawing_rc.py +++ b/examples/widgets/painting/basicdrawing/basicdrawing_rc.py @@ -4,7 +4,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/painting/concentriccircles.py b/examples/widgets/painting/concentriccircles.py index 5fecfc0b5..fa6c24f77 100755 --- a/examples/widgets/painting/concentriccircles.py +++ b/examples/widgets/painting/concentriccircles.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/richtext/orderform.py b/examples/widgets/richtext/orderform.py index e068db2b2..fe81d4b9c 100755 --- a/examples/widgets/richtext/orderform.py +++ b/examples/widgets/richtext/orderform.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/richtext/syntaxhighlighter.py b/examples/widgets/richtext/syntaxhighlighter.py index 8a14632fe..6a431c3f9 100755 --- a/examples/widgets/richtext/syntaxhighlighter.py +++ b/examples/widgets/richtext/syntaxhighlighter.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py b/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py index 6b913f177..841943292 100644 --- a/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py +++ b/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter_rc.py b/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter_rc.py index 81321bb65..375146354 100644 --- a/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter_rc.py +++ b/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter_rc.py @@ -4,7 +4,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/richtext/textobject/textobject.py b/examples/widgets/richtext/textobject/textobject.py index 3e7b75ddc..586605244 100755 --- a/examples/widgets/richtext/textobject/textobject.py +++ b/examples/widgets/richtext/textobject/textobject.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/state-machine/eventtrans.py b/examples/widgets/state-machine/eventtrans.py index 68e21a81f..27349df55 100755 --- a/examples/widgets/state-machine/eventtrans.py +++ b/examples/widgets/state-machine/eventtrans.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/state-machine/factstates.py b/examples/widgets/state-machine/factstates.py index 8550c3f39..2f07a3ff4 100755 --- a/examples/widgets/state-machine/factstates.py +++ b/examples/widgets/state-machine/factstates.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/state-machine/pingpong.py b/examples/widgets/state-machine/pingpong.py index f0233ffc0..9d924c566 100755 --- a/examples/widgets/state-machine/pingpong.py +++ b/examples/widgets/state-machine/pingpong.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/state-machine/rogue.py b/examples/widgets/state-machine/rogue.py index e6ab3faef..fe74e6da9 100755 --- a/examples/widgets/state-machine/rogue.py +++ b/examples/widgets/state-machine/rogue.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/state-machine/trafficlight.py b/examples/widgets/state-machine/trafficlight.py index 8e1d71d94..6f3034761 100755 --- a/examples/widgets/state-machine/trafficlight.py +++ b/examples/widgets/state-machine/trafficlight.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/state-machine/twowaybutton.py b/examples/widgets/state-machine/twowaybutton.py index 6b27787b5..0275d718e 100755 --- a/examples/widgets/state-machine/twowaybutton.py +++ b/examples/widgets/state-machine/twowaybutton.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/tutorials/addressbook/part1.py b/examples/widgets/tutorials/addressbook/part1.py index c14aab96b..a424e1476 100755 --- a/examples/widgets/tutorials/addressbook/part1.py +++ b/examples/widgets/tutorials/addressbook/part1.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/tutorials/addressbook/part2.py b/examples/widgets/tutorials/addressbook/part2.py index 62fe157a7..c6d19579b 100755 --- a/examples/widgets/tutorials/addressbook/part2.py +++ b/examples/widgets/tutorials/addressbook/part2.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/tutorials/addressbook/part3.py b/examples/widgets/tutorials/addressbook/part3.py index 8db6e6a3d..0a4769ac8 100755 --- a/examples/widgets/tutorials/addressbook/part3.py +++ b/examples/widgets/tutorials/addressbook/part3.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/tutorials/addressbook/part4.py b/examples/widgets/tutorials/addressbook/part4.py index 80ef32535..11d1d66ff 100755 --- a/examples/widgets/tutorials/addressbook/part4.py +++ b/examples/widgets/tutorials/addressbook/part4.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/tutorials/addressbook/part5.py b/examples/widgets/tutorials/addressbook/part5.py index a40033ca9..3f94ba4b2 100755 --- a/examples/widgets/tutorials/addressbook/part5.py +++ b/examples/widgets/tutorials/addressbook/part5.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/tutorials/addressbook/part6.py b/examples/widgets/tutorials/addressbook/part6.py index 5476a2704..ba81362f7 100755 --- a/examples/widgets/tutorials/addressbook/part6.py +++ b/examples/widgets/tutorials/addressbook/part6.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/tutorials/addressbook/part7.py b/examples/widgets/tutorials/addressbook/part7.py index 5458a7516..ce73e63c2 100755 --- a/examples/widgets/tutorials/addressbook/part7.py +++ b/examples/widgets/tutorials/addressbook/part7.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/widgets/hellogl_openglwidget_legacy.py b/examples/widgets/widgets/hellogl_openglwidget_legacy.py index c2e918671..42b48fc4a 100755 --- a/examples/widgets/widgets/hellogl_openglwidget_legacy.py +++ b/examples/widgets/widgets/hellogl_openglwidget_legacy.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/widgets/widgets/tetrix.py b/examples/widgets/widgets/tetrix.py index 9045ac7af..33e17a72b 100644 --- a/examples/widgets/widgets/tetrix.py +++ b/examples/widgets/widgets/tetrix.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/xml/dombookmarks/dombookmarks.py b/examples/xml/dombookmarks/dombookmarks.py index 77c2bad67..b9d076ce4 100755 --- a/examples/xml/dombookmarks/dombookmarks.py +++ b/examples/xml/dombookmarks/dombookmarks.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/xmlpatterns/schema/schema.py b/examples/xmlpatterns/schema/schema.py index 1a3c51e69..a10cc32ce 100755 --- a/examples/xmlpatterns/schema/schema.py +++ b/examples/xmlpatterns/schema/schema.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/examples/xmlpatterns/schema/schema_rc.py b/examples/xmlpatterns/schema/schema_rc.py index c4df53030..87d567ca2 100644 --- a/examples/xmlpatterns/schema/schema_rc.py +++ b/examples/xmlpatterns/schema/schema_rc.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: http://www.qt.io/licensing/ ## -## This file is part of the PySide examples of the Qt Toolkit. +## This file is part of the Qt for Python examples of the Qt Toolkit. ## ## $QT_BEGIN_LICENSE:BSD$ ## You may use this file under the terms of the BSD license as follows: diff --git a/ez_setup.py b/ez_setup.py index 48d86d2a4..ddc630e7a 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -4,7 +4,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/missing_bindings.py b/missing_bindings.py index ddc33a04d..11ff1334a 100644 --- a/missing_bindings.py +++ b/missing_bindings.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/popenasync.py b/popenasync.py index 2a5af3dd8..77faf9e0c 100644 --- a/popenasync.py +++ b/popenasync.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml b/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml index e4852c596..cf72b8402 100644 --- a/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml +++ b/sources/pyside2/PySide2/Qt3DAnimation/typesystem_3danimation.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml b/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml index 0b78806d2..daa9c2465 100644 --- a/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml +++ b/sources/pyside2/PySide2/Qt3DCore/typesystem_3dcore.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml b/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml index 67c387358..54f4df3df 100644 --- a/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml +++ b/sources/pyside2/PySide2/Qt3DExtras/typesystem_3dextras.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml b/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml index f257db191..dd72c5c01 100644 --- a/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml +++ b/sources/pyside2/PySide2/Qt3DInput/typesystem_3dinput.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml b/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml index 6f37ae207..ec9ed9ef6 100644 --- a/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml +++ b/sources/pyside2/PySide2/Qt3DLogic/typesystem_3dlogic.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml b/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml index 6ada77687..037fddd44 100644 --- a/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml +++ b/sources/pyside2/PySide2/Qt3DRender/typesystem_3drender.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml b/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml index 560ad08ee..427a6f051 100644 --- a/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml +++ b/sources/pyside2/PySide2/QtAxContainer/typesystem_axcontainer.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml b/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml index c7058c931..37cd29439 100644 --- a/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml +++ b/sources/pyside2/PySide2/QtCharts/typesystem_charts.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml b/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml index df3a88d4f..bed947772 100644 --- a/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml +++ b/sources/pyside2/PySide2/QtConcurrent/typesystem_concurrent.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp b/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp index d7c18fac9..22825a5cb 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qbytearray_bufferprotocol.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp b/sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp index 19b05e162..6a997c852 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qbytearray_mgetitem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp b/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp index c9a72e2b1..9bdaa011e 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qcoreapplication_init.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp index bfac66a99..5d28fbf41 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h index c77a27a5d..7053d808c 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h +++ b/sources/pyside2/PySide2/QtCore/glue/qeasingcurve_glue.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp b/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp index 989b1adf0..ed37cef34 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qobject_connect.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp b/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp index 3b1ca6bae..464fb68b1 100644 --- a/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp +++ b/sources/pyside2/PySide2/QtCore/glue/qobject_findchild.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in b/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in index 00a0cfa47..8be5bba4e 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in +++ b/sources/pyside2/PySide2/QtCore/typesystem_core.xml.in @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml index 907ff4359..598754fdd 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml index 60f6a680b..583c1c08e 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_mac.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml index 78ed4b0b2..410187281 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_win.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml index b11e825ce..d5b0bae3b 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_x11.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml b/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml index 708294d47..88e796c1b 100644 --- a/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml +++ b/sources/pyside2/PySide2/QtDataVisualization/typesystem_datavisualization.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp b/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp index 6fc666952..ae5dd22d2 100644 --- a/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp +++ b/sources/pyside2/PySide2/QtGui/glue/qguiapplication_init.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in b/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in index dc6491602..dfd5a9c5b 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui.xml.in @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml index b0d8e6e30..903260200 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml index 813b39a22..27fb9387f 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_mac.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml index b2a4e5841..66d47d330 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_win.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml b/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml index b2a4e5841..66d47d330 100644 --- a/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml +++ b/sources/pyside2/PySide2/QtGui/typesystem_gui_x11.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtHelp/typesystem_help.xml b/sources/pyside2/PySide2/QtHelp/typesystem_help.xml index 9ba4a5e72..080fe4240 100644 --- a/sources/pyside2/PySide2/QtHelp/typesystem_help.xml +++ b/sources/pyside2/PySide2/QtHelp/typesystem_help.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtLocation/typesystem_location.xml b/sources/pyside2/PySide2/QtLocation/typesystem_location.xml index c8feb321d..309652864 100644 --- a/sources/pyside2/PySide2/QtLocation/typesystem_location.xml +++ b/sources/pyside2/PySide2/QtLocation/typesystem_location.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml b/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml index 96a75e229..0fecf0459 100644 --- a/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml +++ b/sources/pyside2/PySide2/QtMacExtras/typesystem_macextras.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml index dc803a28e..ebd003bf0 100644 --- a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml +++ b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml index 434a4326b..e6aac1523 100644 --- a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml +++ b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml index 453d3f9ca..fec0e2806 100644 --- a/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml +++ b/sources/pyside2/PySide2/QtMultimedia/typesystem_multimedia_forward_declarations.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml b/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml index 221758d49..16a42d2e3 100644 --- a/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml +++ b/sources/pyside2/PySide2/QtMultimediaWidgets/typesystem_multimediawidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml b/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml index 2512b899f..1ec4bd43c 100644 --- a/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml +++ b/sources/pyside2/PySide2/QtNetwork/typesystem_network.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml b/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml index 025f4e430..ea5c24cd3 100644 --- a/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml +++ b/sources/pyside2/PySide2/QtOpenGL/typesystem_opengl.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml b/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml index 99d30a995..718b0b3e1 100644 --- a/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml +++ b/sources/pyside2/PySide2/QtPositioning/typesystem_positioning.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml b/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml index af6a4c346..b6111a0e6 100644 --- a/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml +++ b/sources/pyside2/PySide2/QtPrintSupport/typesystem_printsupport.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp index be8b2f07d..d95ae2259 100644 --- a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp +++ b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h index 397547ba7..a4ee7309a 100644 --- a/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h +++ b/sources/pyside2/PySide2/QtQml/pysideqmlregistertype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQml/typesystem_qml.xml b/sources/pyside2/PySide2/QtQml/typesystem_qml.xml index 83a018682..80a0ed826 100644 --- a/sources/pyside2/PySide2/QtQml/typesystem_qml.xml +++ b/sources/pyside2/PySide2/QtQml/typesystem_qml.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp index 770365cc1..594fa8015 100644 --- a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp +++ b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h index 364779cca..35d3edecb 100644 --- a/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h +++ b/sources/pyside2/PySide2/QtQuick/pysidequickregistertype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml b/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml index 2adb4e092..e867c0c05 100644 --- a/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml +++ b/sources/pyside2/PySide2/QtQuick/typesystem_quick.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml b/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml index 89818fc70..03230187e 100644 --- a/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml +++ b/sources/pyside2/PySide2/QtQuickWidgets/typesystem_quickwidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtScript/typesystem_script.xml b/sources/pyside2/PySide2/QtScript/typesystem_script.xml index 8dd0473d6..ccb2e3ab7 100644 --- a/sources/pyside2/PySide2/QtScript/typesystem_script.xml +++ b/sources/pyside2/PySide2/QtScript/typesystem_script.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml b/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml index 1bb656758..81a4048b5 100644 --- a/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml +++ b/sources/pyside2/PySide2/QtScriptTools/typesystem_scripttools.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml b/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml index a699dee04..5c82db229 100644 --- a/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml +++ b/sources/pyside2/PySide2/QtSensors/typesystem_sensors.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtSql/typesystem_sql.xml b/sources/pyside2/PySide2/QtSql/typesystem_sql.xml index 7ab519b20..1b6baa15f 100644 --- a/sources/pyside2/PySide2/QtSql/typesystem_sql.xml +++ b/sources/pyside2/PySide2/QtSql/typesystem_sql.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml b/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml index 3cd130815..5c4fcb7a8 100644 --- a/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml +++ b/sources/pyside2/PySide2/QtSvg/typesystem_svg.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtTest/typesystem_test.xml b/sources/pyside2/PySide2/QtTest/typesystem_test.xml index 919e7634a..564968a3c 100644 --- a/sources/pyside2/PySide2/QtTest/typesystem_test.xml +++ b/sources/pyside2/PySide2/QtTest/typesystem_test.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml b/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml index d7327461a..9e553ec5b 100644 --- a/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml +++ b/sources/pyside2/PySide2/QtTextToSpeech/typesystem_texttospeech.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtUiTools/glue/plugins.h b/sources/pyside2/PySide2/QtUiTools/glue/plugins.h index d9c5c77aa..d1b250d50 100644 --- a/sources/pyside2/PySide2/QtUiTools/glue/plugins.h +++ b/sources/pyside2/PySide2/QtUiTools/glue/plugins.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp b/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp index 400122449..c078eacee 100644 --- a/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp +++ b/sources/pyside2/PySide2/QtUiTools/glue/uitools_loadui.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml b/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml index 2dd981403..4fded3479 100644 --- a/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml +++ b/sources/pyside2/PySide2/QtUiTools/typesystem_uitools.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml b/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml index e24d6014a..874924d25 100644 --- a/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml +++ b/sources/pyside2/PySide2/QtWebChannel/typesystem_webchannel.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml b/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml index a5b5d0f51..e6faee9d9 100644 --- a/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml +++ b/sources/pyside2/PySide2/QtWebEngineCore/typesystem_webenginecore.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml b/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml index 8ff8b7fc4..addbf222a 100644 --- a/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml +++ b/sources/pyside2/PySide2/QtWebEngineWidgets/typesystem_webenginewidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml b/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml index 98f4a148f..5feb61343 100644 --- a/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml +++ b/sources/pyside2/PySide2/QtWebKit/typesystem_webkit.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml b/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml index 1597ecd07..74a96250a 100644 --- a/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml +++ b/sources/pyside2/PySide2/QtWebKitWidgets/typesystem_webkitwidgets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml b/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml index 5d8786bf2..6b26ccd76 100644 --- a/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml +++ b/sources/pyside2/PySide2/QtWebSockets/typesystem_websockets.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp index a95508cf2..aef11f2c7 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qapplication_init.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp index dfeda8cb8..d542b881c 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qlayout_help_functions.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp index 3c95b8035..8a4b7e628 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qmenu_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp index 69d3f76d0..fdd621128 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qmenubar_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp b/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp index c8acd4b31..674e34cfe 100644 --- a/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp +++ b/sources/pyside2/PySide2/QtWidgets/glue/qwidget_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in index fcea1140c..ea57b7861 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets.xml.in @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml index 27b772064..feb3882ff 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_common.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml index 512a95c5f..b9aec3923 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_mac.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml index bff5a2978..5bacf63fb 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_win.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml index bff5a2978..5bacf63fb 100644 --- a/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml +++ b/sources/pyside2/PySide2/QtWidgets/typesystem_widgets_x11.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml b/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml index c625d0d3c..2ffd7905d 100644 --- a/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml +++ b/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml b/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml index 6eaab6c98..59e66cc25 100644 --- a/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml +++ b/sources/pyside2/PySide2/QtX11Extras/typesystem_x11extras.xml @@ -6,7 +6,7 @@ ** Copyright (C) 2016 Mateusz Skowroński ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtXml/typesystem_xml.xml b/sources/pyside2/PySide2/QtXml/typesystem_xml.xml index e05d48cd3..3bfd7c662 100644 --- a/sources/pyside2/PySide2/QtXml/typesystem_xml.xml +++ b/sources/pyside2/PySide2/QtXml/typesystem_xml.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml b/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml index 1b29e8305..f4e690874 100644 --- a/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml +++ b/sources/pyside2/PySide2/QtXmlPatterns/typesystem_xmlpatterns.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/global.h.in b/sources/pyside2/PySide2/global.h.in index 7cb22c495..a8065a7ba 100644 --- a/sources/pyside2/PySide2/global.h.in +++ b/sources/pyside2/PySide2/global.h.in @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/licensecomment.txt b/sources/pyside2/PySide2/licensecomment.txt index aacf1237d..9d271ba2a 100644 --- a/sources/pyside2/PySide2/licensecomment.txt +++ b/sources/pyside2/PySide2/licensecomment.txt @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/pysideqtesttouch.h b/sources/pyside2/PySide2/pysideqtesttouch.h index 50888d70a..4c412c75a 100644 --- a/sources/pyside2/PySide2/pysideqtesttouch.h +++ b/sources/pyside2/PySide2/pysideqtesttouch.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/pysidewtypes.h b/sources/pyside2/PySide2/pysidewtypes.h index b1037720b..e14727427 100644 --- a/sources/pyside2/PySide2/pysidewtypes.h +++ b/sources/pyside2/PySide2/pysidewtypes.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/qpytextobject.cpp b/sources/pyside2/PySide2/qpytextobject.cpp index 96214b8ba..9bab45e30 100644 --- a/sources/pyside2/PySide2/qpytextobject.cpp +++ b/sources/pyside2/PySide2/qpytextobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/qpytextobject.h b/sources/pyside2/PySide2/qpytextobject.h index 3753e5de5..ecdfa7fb5 100644 --- a/sources/pyside2/PySide2/qpytextobject.h +++ b/sources/pyside2/PySide2/qpytextobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/PySide2/support/__init__.py b/sources/pyside2/PySide2/support/__init__.py index a1a44c802..18abd9d0e 100644 --- a/sources/pyside2/PySide2/support/__init__.py +++ b/sources/pyside2/PySide2/support/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/__init__.py b/sources/pyside2/PySide2/support/signature/__init__.py index a1879a10a..0ff9ec7e9 100644 --- a/sources/pyside2/PySide2/support/signature/__init__.py +++ b/sources/pyside2/PySide2/support/signature/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/backport_inspect.py b/sources/pyside2/PySide2/support/signature/backport_inspect.py index 6048cb5cd..19308d2f1 100644 --- a/sources/pyside2/PySide2/support/signature/backport_inspect.py +++ b/sources/pyside2/PySide2/support/signature/backport_inspect.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/fix-complaints.py b/sources/pyside2/PySide2/support/signature/fix-complaints.py index f4015a1ee..76aa40b0f 100644 --- a/sources/pyside2/PySide2/support/signature/fix-complaints.py +++ b/sources/pyside2/PySide2/support/signature/fix-complaints.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/inspect.py b/sources/pyside2/PySide2/support/signature/inspect.py index 17165a993..322ddaac5 100644 --- a/sources/pyside2/PySide2/support/signature/inspect.py +++ b/sources/pyside2/PySide2/support/signature/inspect.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/loader.py b/sources/pyside2/PySide2/support/signature/loader.py index fa1d039d3..a5f38a6f4 100644 --- a/sources/pyside2/PySide2/support/signature/loader.py +++ b/sources/pyside2/PySide2/support/signature/loader.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/mapping.py b/sources/pyside2/PySide2/support/signature/mapping.py index c0cd995e3..b8ef3761c 100644 --- a/sources/pyside2/PySide2/support/signature/mapping.py +++ b/sources/pyside2/PySide2/support/signature/mapping.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/parser.py b/sources/pyside2/PySide2/support/signature/parser.py index af9efddf1..eb6453d3e 100644 --- a/sources/pyside2/PySide2/support/signature/parser.py +++ b/sources/pyside2/PySide2/support/signature/parser.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/typing27.py b/sources/pyside2/PySide2/support/signature/typing27.py index 3fe2becfa..336c9ac75 100644 --- a/sources/pyside2/PySide2/support/signature/typing27.py +++ b/sources/pyside2/PySide2/support/signature/typing27.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/support/signature/typing36.py b/sources/pyside2/PySide2/support/signature/typing36.py index ab629c89e..4fa2002bc 100644 --- a/sources/pyside2/PySide2/support/signature/typing36.py +++ b/sources/pyside2/PySide2/support/signature/typing36.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/PySide2/typesystem_templates.xml b/sources/pyside2/PySide2/typesystem_templates.xml index 492e9e928..798d02ddb 100644 --- a/sources/pyside2/PySide2/typesystem_templates.xml +++ b/sources/pyside2/PySide2/typesystem_templates.xml @@ -5,7 +5,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/doc/additionaldocs.lst b/sources/pyside2/doc/additionaldocs.lst index 057464df9..ff03d3656 100644 --- a/sources/pyside2/doc/additionaldocs.lst +++ b/sources/pyside2/doc/additionaldocs.lst @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp index cce8c5218..92ce5d2de 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityfactorysnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp index c2da43219..438514d8e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilitypluginsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp index 2c3013bc0..6c479cd3f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/accessibilityslidersnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp index bdb9ab849..78c2c54db 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/alphachannel.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp index 370992d7a..09d1aa420 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/audio/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp index 8781cf242..ad842a982 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/brush.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp index 37195ed90..25d6667d8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brush/gradientcreationsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp index 2e16437b4..c87400118 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp index 47912e896..b40bddc5b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h index 8aa3ba175..82356e2dd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/renderarea.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp index 7da4c818a..92e9e7f7f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h index 823b357dd..57223cbb4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/brushstyles/stylewidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp index 0bc42ef36..8034fa63c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/buffer/buffer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp index c220078b7..726ceb818 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h index a50b236bb..a06b59b20 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/clipwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp index 1f7536c25..f7eea6c1e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/clipboard/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc index d2483795b..b63810f97 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp index ace6c9a1d..bfe7b30e3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.gui.text.qtextdocumentwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp index 0dc2631de..549d7a6f8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingcall.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp index f1bf2bbc2..5029d3aca 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.qdbus.qdbuspendingreply.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp index c7c03495a..53c4a9efe 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src.scripttools.qscriptenginedebugger.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp index a56b25f8d..7cbfc4e30 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodec.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp index 7b489be9a..3538b6574 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_codecs_qtextcodecplugin.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp index 61c68be15..7dcc7052d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuture.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp index f067b86af..014c5b167 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturesynchronizer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp index 6e6a770a8..9c536b822 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qfuturewatcher.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp index 6c10284bf..da4254a76 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentexception.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp index ad0d1476c..a0f6778b6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentfilter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp index 6fa26fc53..e61b73613 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp index e3122cbc0..3c55ef77e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp index 6f28680f1..f552f3429 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_concurrent_qthreadpool.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp index fda25cb9d..c172beb21 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_global_qglobal.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp index 7c464b5bf..878259f62 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qabstractfileengine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp index d1858e2df..79e64d4a3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdatastream.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp index 45b2010cf..16f20c236 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdir.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp index 42aa1520d..be68a5dbb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qdiriterator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp index 6d77e8668..1e9d102c8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfile.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp index 367e5fdfb..1027525db 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qfileinfo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp index 3573b4870..d8f155c38 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qiodevice.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp index 55d26be51..a4b74ae97 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qprocess.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp index d32230376..11bb9af48 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qsettings.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp index dff94583a..7244c22c8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp index 254789e2d..cf67a61fb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtextstream.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp index f1f6b7922..d32a7b9c7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qurl.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp index 71d49b742..f2a9e8222 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qabstractitemmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp index e422f2141..115c76671 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qcoreapplication.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp index af2cd6ac1..79fe7f09f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetaobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp index 406c2a8b7..14f07a139 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmetatype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp index 8eac050ac..46c7e31de 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qmimedata.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp index 3d41b20c3..1de4dbbe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp index 760dc8a58..2a9385269 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qsystemsemaphore.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp index 9c1844944..c0c703d3d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_kernel_qtimer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp index 464677eb5..310cf5df4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_qlibrary.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp index df496fea2..90eafb980 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_plugin_quuid.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp index 353a45b6e..6a78e19f1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_statemachine_qstatemachine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp index 6095c5707..7c999e55c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qatomic.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp index b11555f32..e799cbb64 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutex.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp index fc74ffa37..622cb18fd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qmutexpool.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp index 05444f997..d441042c8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qreadwritelock.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp index 216ab4b03..086b105dd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qsemaphore.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp index 263a87cb1..5470e8a6c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qthread.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp index 4b3dd159b..f652e5fcb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_thread_qwaitcondition_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp index 434415739..2edd35b0a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbitarray.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp index 6546954b1..bb0bc7de4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qbytearray.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp index 6930dd2b9..ea8c04453 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qdatetime.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp index c93da2b43..985c7daf1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qhash.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp index cb84e0f3e..947594ae5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlinkedlist.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp index 29ed62c41..d90d932e9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlistdata.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp index 341bd61e4..4be07da07 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qlocale.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp index aa4f14a3d..5bd7dc621 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp index 796bb8a81..e6a5e0cac 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qpoint.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp index f2e2ee661..a0ea40541 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qqueue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp index 46538d944..a3882750b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qrect.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp index 815896125..d3f45bbea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qregexp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp index 50c5877b4..ef8b29776 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qsize.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp index 581a036a9..8225d16f2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qstring.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp index 00eb1322b..480731a18 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qtimeline.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp index 3baab7e48..57ffcae01 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_tools_qvector.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp index 24885fcd3..f03a90643 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_corelib_xml_qxmlstream.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp index 1414b37bb..9971983df 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_accessible_qaccessible.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp index f30259689..db6a8a85c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qabstractprintdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp index aa617701a..dd5f81bd2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp index 1ea4f5c46..6c91d213f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qfontdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp index 1746335f4..55cdf8148 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp index 17ab16290..9db90a72c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_dialogs_qwizard.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp index a6902c523..d4b47fa57 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_effects_qgraphicseffect.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp index 103145763..4d138db3c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsgridlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp index b7361f61c..59f26c729 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsitem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp index 17a1b97d1..8e7dcc432 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicslinearlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp index 7f372c500..d0d21a64d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsproxywidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp index c22c1b7ea..1f1316bec 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsscene.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp index d9db310b8..afb5f9f3a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicssceneevent.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp index 24fbb67c6..d13cee846 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicsview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp index 397051e02..ffba7a181 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_graphicsview_qgraphicswidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp index cf97f52c5..aab995f33 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qbitmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp index 1c7d8a043..d40f485a4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qicon.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp index 68d7ea37f..e100624d8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimage.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp index fe52fb4ea..2e36ba8b2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagereader.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp index ad0c5d189..b65681718 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qimagewriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp index 0e15eee02..050213e80 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qmovie.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp index 1b064e77d..76d359a84 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp index 9f5b8632f..611203116 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapcache.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp index 973168218..4fa6e7901 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_image_qpixmapfilter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp index e3323d30f..0d89ff73b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qabstractitemview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp index f14bd41ec..54687e749 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qdatawidgetmapper.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp index 03f9a5325..44d0594e4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemeditorfactory.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp index 7cd9a2d15..62861d9d3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qitemselectionmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp index 9e3131822..42a64fbab 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qstandarditemmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp index ec81a17be..ca7c0dbfc 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtablewidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp index cd6b06a17..ecdb7941b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_itemviews_qtreewidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp index 263f1820a..31a83e215 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qaction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp index 3f77270fe..fe02c93e5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp index d1a20a5d5..5c90b998f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qapplication_x11.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp index df34f285b..014835171 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qclipboard.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp index b7d9438d8..38d18d030 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qevent.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp index e716565bf..1b3e58080 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qformlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp index 826ed8751..25d5ee290 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qkeysequence.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp index 8575b6f08..867e73b5e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp index c3289c16e..8749f530b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qlayoutitem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp index 71f70aa0c..baaf60571 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qshortcut.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp index 9d908bd00..6ad7ef4f8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qsound.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp index e11db229b..efa0f0589 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_kernel_qwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp index 80533dc4d..55fa8a784 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qbrush.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp index 18141bf61..cac026aa1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qcolor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp index a0884e3ce..1f76792e4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qdrawutil.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp index 67e24dfb9..73ce084f7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qmatrix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp index 74644acc9..e295f6638 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp index 56157ac0f..cbf1aab54 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpainterpath.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp index 671340e70..871935c49 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qpen.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp index 12edf4cd3..08e9c22be 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp index 7b1a17777..b347fb392 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qregion_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp index f561147f0..71ff40645 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_painting_qtransform.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp index 13175d1d5..be555b41a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp index 792fe3db7..c46066a34 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_styles_qstyleoption.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp index 2d35ee8d6..43537f9d3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfont.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp index 234b1a4c3..a184a0072 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qfontmetrics.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp index 804e64c7d..2188be0a8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qsyntaxhighlighter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp index 56951fecd..12189bf2a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextcursor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp index 4408db0d7..201d14fbe 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextdocument.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp index aa33f288f..33cde13e7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_text_qtextlayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp index 60b5388cc..a9ba16a65 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qcompleter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp index 93ed56c14..f79f1ed24 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qdesktopservices.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp index 628ef1761..9875747e7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qundostack.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp index 2fb4d6b7e..df55131b3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_util_qvalidator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp index e61b55e65..c4219b3d7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractbutton.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp index b066e87e6..c8d60d015 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qabstractspinbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp index 3df91f48b..9d83f0bc1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qcalendarwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp index 1c495ed32..1dd6947c4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdatetimeedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp index 6d7652818..c9da19b47 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp index a20da33ca..a41f1c478 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qframe.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp index 3bf2182af..4a73a181d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlabel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp index 31e1aed08..bf093ba50 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qlineedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp index 0135a0a11..a5104708d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp index 0a7710b41..6bf1bf8f2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenu.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp index 946b2f99e..fa5bb3b11 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qmenubar.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp index e79e66b97..674f78662 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qplaintextedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp index 2881509b4..61f784a3a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qrubberband.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp index eb952a709..7172efd56 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qscrollarea.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp index a275225fb..77273e260 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qspinbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp index c25eadb33..2bddb83a9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplashscreen.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp index fe4a15d76..c5dfcd859 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qsplitter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp index 07bdbd35d..e35b40c38 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextbrowser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp index f55a6de9e..fad9f6be1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qtextedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp index 8a69ff479..1c7773310 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_gui_widgets_qworkspace.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp index fca1f74c1..d0426fd89 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qftp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp index 156eeff5e..333ea2bdd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qhttp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp index c9265450f..478472530 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkaccessmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp index 2ad600a99..c8c81ad95 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_access_qnetworkdiskcache.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp index 6720cc51f..d30aca2ab 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_bearer_qnetworkconfigmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp index c0a3ed6d0..e45b6d57a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostaddress.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp index a19633722..b1430a499 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp index 665fad3d8..29c6a8efd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_kernel_qnetworkproxy.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp index 23be6b87f..ea70b1fcf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qabstractsocket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp index af5027706..1687fe69b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qlocalsocket_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp index 5ac493bb8..9fda752ef 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qnativesocketengine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp index 306951c39..cbeb0be68 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_socket_qudpsocket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp index f84857917..d13d4dd3c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslcertificate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp index 5df2014e7..1ba2170d1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslconfiguration.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp index e8cffbbcd..d822b80c5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_network_ssl_qsslsocket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp index 913b7f9f1..264cf0888 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qgl.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp index b8f4aee35..7f8a1446b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglcolormap.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp index 41df4a487..fd8c50499 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglpixelbuffer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp index 213b3616a..102867f43 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_opengl_qglshaderprogram.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp index 13cdbde22..8ff2a6ee4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_qtestlib_qtestcase.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp index eaafdcc9f..ac181e70c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptable.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp index 687fb6072..94601aa9b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptclass.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp index e88ab788b..632283d82 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptcontext.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp index f8311d40e..4005e2c2b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengine.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp index 376b5ec0c..91541f539 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptengineagent.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp index 45a6214c1..18109bd83 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp index e983e9151..f9401488e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_script_qscriptvalueiterator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp index 9d13b9072..6bf0e003b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldatabase.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp index f02c8e1da..cedc675ff 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqldriver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp index f2abec88e..ea0c8709a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlerror.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp index dcb44f94c..3af6ef49d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlindex.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp index e392ff227..8e323680b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlquery.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp index 8d48fe0f8..3ba3277d0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_kernel_qsqlresult.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp index dc593938d..fc5c398ad 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_sql_models_qsqlquerymodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp index 99dac1f43..6396cbcdc 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xml_dom_qdom.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp index 7b3aedbc2..0ba6de235 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlnodemodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp index aea3f2754..32397e331 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qabstractxmlreceiver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp index 6f037a9af..80147c840 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qsimplexmlnodemodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp index 630b694e8..3695d41d1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlformatter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp index 18c103814..033757068 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlname.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp index d1fe77b96..a5a2706a7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlquery.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp index 12324c099..62bb47105 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlresultitems.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp index aea3f2754..32397e331 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/src_xmlpatterns_api_qxmlserializer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp index 3d107ba24..c0baf89ef 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_assistant_compat_lib_qassistantclient.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp index 24f6c1f90..4f6de9e0d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_default_extensionfactory.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp index a167a8071..14fe3764d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_extension.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp index 949805e59..dabd9f737 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_extension_qextensionmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp index c14da9520..2fe32e672 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformeditor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp index e5905b509..f9d97e6ce 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp index 5466b03fd..79b98f0ce 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowcursor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp index 9f96e9d0a..d6654b3eb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractformwindowmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp index c14da9520..2fe32e672 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractobjectinspector.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp index a7d926016..255231512 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractpropertyeditor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp index 0994531de..7c0a4150a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_sdk_abstractwidgetbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp index 13fb70b47..781ce7542 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_abstractformbuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp index 9fd6c8bae..fc58aa505 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_designer_src_lib_uilib_formbuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp index 2d9a80a63..91bd24bc3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_patternist_qapplicationargumentparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp index c46d36b7d..a9c6a26c9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtgradienteditor_qtgradientdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp index 1f7785cc7..64bdb67f5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtpropertybrowser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp index 82d489675..95de10d4d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qtpropertybrowser_qtvariantproperty.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp index 46f48dc4b..93a9b53c1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/code/tools_shared_qttoolbardialog_qttoolbardialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp index f621d6065..068864fdd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/coordsys/coordsys.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp index 9676610d1..cd0af7819 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h index bbd1fadf3..8aead8e9c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/customstyle.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp index f1fb80200..ec0636e8d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customstyle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp index a6c84fa5a..a8a9364d9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/customviewstyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp index 83b3c4c7c..c0a732682 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h index 8e2b19a88..d5852c9c3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp index 05400fd11..db74fe0e2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/autoconnection/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp index c0014e183..aed18a234 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/imagedialog/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp index a5e66b59a..fede71a5e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h index 2d250a0a1..1b95cb310 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp index 05400fd11..db74fe0e2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/multipleinheritance/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp index 91bd9118e..6dae19212 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h index f5e5e83fe..16ff0ec18 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp index 05400fd11..db74fe0e2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/noautoconnection/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp index 9baf84bb4..b7c316856 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h index c23483e87..a14a628f2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/imagedialog.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp index 05400fd11..db74fe0e2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/designer/singleinheritance/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp index 2d42b17b4..047434f6d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dialogs/dialogs.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp index afbe0025b..455aa8c0b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp index 616fdcb29..8bc0fae87 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h index 518efcbf6..e9891d628 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dockwidgets/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp index 14ccb81d3..a50581c21 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h index 8f11a1a9e..88bff6669 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/dragwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp index 2608af05f..cf9c3fa27 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp index adba96728..9485326ed 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h index 002d568b7..ece2a8190 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/draganddrop/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp index 0730119b5..6e4073499 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h index d2fd8fcb1..fccb01a0e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dragging/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp index b53da88fa..f910d2896 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp index b5acd8864..70a54e547 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h index 7616e018c..8607b6953 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropactions/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp index c2ee07440..662852000 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droparea.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp index 30723f825..6d4e9fb1f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp index e1a8394e2..409ab5b78 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h index 7616e018c..8607b6953 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/dropevents/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp index b53da88fa..f910d2896 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp index 46a9bf47e..5f8ff73ee 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h index e18a337df..e7854bcfd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/droprectangle/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp index d0eae7d11..183d2ef8d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h index 72b1c34f2..18fd7b8c5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/filterobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp index 468d6af75..b1d3e70df 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/eventfilters/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp index 28d782de7..030cf2336 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/events/events.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp index 6d11c5820..d862513ef 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h index e2b8694df..66ca6b36b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/employee.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp index 8941fc90a..13571ac85 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/explicitlysharedemployee/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp index 6728c77f6..3818e6a7f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/file/file.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp index 4003f2b3c..192188e81 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/filedialogurls.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp index e267d0773..09ff00bf8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/fileinfo/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp index e65110735..8a5c819b4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/graphicssceneadditemsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp index e78aac3bd..cbcc30471 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp index 9d0b3bbf2..506dac2b1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h index 25631a36c..0f49fe256 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/i18n-non-qt-class/myclass.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp index d628aeed8..a35f95c94 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/image.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp index 532fd290f..2d8459f3e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/image/supportedformat.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp index a4b62a39c..f15066b04 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h index a2996eab4..855bea055 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/button.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp index 1df450169..b17010633 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/inherited-slot/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp index 077096107..83b06b988 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h index 5d0a6e500..6b4076815 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/itemselection/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp index 6474f44fa..96548086c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/javastyle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp index d1de11947..9bcc5dbe0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/layouts/layouts.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp index 47085f91d..1b0f94e8e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/mainwindowsnippet.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp index 1b1eaa443..369d25af5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/matrix/matrix.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp index b7aed8bf5..f7d07c8f4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/mdiareasnippets.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp index 77e225dbc..0a1763a34 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h index 79bd5ffa9..0391b48aa 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass1.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h index 2bce95658..e39cb6a58 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass2.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h index 2e057edd2..5110c6203 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/moc/myclass3.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp index d74655c8e..fd43b1aad 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp index 5504e12ef..e4d4033a7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h index 4efb95b3e..e9f85877a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp index bde6ba824..eb13a0fee 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h index 4153be6b0..f6a5e710c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/view.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp index d6b0f422c..fcd61d2c8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h index e1c984c2d..ac4988f5e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/modelview-subclasses/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp index 9dd6fe5bf..2e6869cbd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/myscrollarea.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp index 02a93a5fb..fc7d278a3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/network/tcpwait.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp index 90d8109ae..c50c3cd82 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/ntfsp.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp index d4d09ca2d..ea589b663 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/painterpath/painterpath.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp index c57947531..3e610dc18 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp index 9fe366a0f..0d8941638 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h index ce5ccdb2b..8f8c36f4e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h index b66805c49..0dbd0b849 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/persistentindexes/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp index d0a33a830..6d4ef567c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/picture/picture.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp index fa42d611c..2149c6b5e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp index cf222abc7..00db9a820 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h index 58c496dfd..1d14ed044 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/plaintextlayout/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp index d5bc353d2..e75addb88 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/pointer/pointer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp index 076e372eb..03c9f40d3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/polygon/polygon.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp index b2f0ecf12..66f5e5556 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp index c9850a86e..64e8f4297 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h index 556705fc3..56bab84f0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/porting4-dropevents/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp index a3f56e3de..8c71d1e81 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/errors.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp index e83100df4..6e0815fba 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp index 8611fb960..1ad520061 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h index 701d0ee81..a70dcd16d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/printing-qprinter/object.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp index b007ee4d4..178aa804a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/process/process.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp index c3163cd06..db93f8ecb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qabstractsliderisnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp index f815f44af..479779d17 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcalendarwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp index 4ab2319ae..b14e30828 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qcolumnview/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp index aff8c18c5..ff482e4d6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdebug/qdebugsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp index 506abc22e..ca9321323 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-filepaths/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp index 4cad6853a..9bd639913 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-listfiles/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp index 015bd2a8b..ab22163ae 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qdir-namefilters/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp index 37b2bad29..0e81fcae9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qelapsedtimer/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp index bec416dd4..bc199b237 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qfontdatabase/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp index cc8c40ae8..691cfc828 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qgl-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp index bac5ecc98..b40aade61 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlabel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp index d14a96ae3..8b850a53f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp index bde944a85..2bd363730 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h index 7424e0a2c..d43ff3eae 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlineargradient/paintwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp index 00af59652..5403a8979 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h index bc7afcdb8..9788231c0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp index 155712e19..5464ff4c2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h index 6b78e51a8..5ced99cfe 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-dnd/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp index e1c3f288d..3c4905556 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h index c279e07d5..848ef6b24 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h index a44cf0357..6451ac281 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistview-using/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp index 2067958bb..a80b2fc38 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h index eb9c8836c..ca6e41cf5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp index c8fce42df..efc2836f3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h index 60fea7d09..b03749df2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qlistwidget-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm index 89dcb2303..12794b1d5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmacnativewidget/main.mm @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h index 5a2a3dad9..ff07205b9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/delegate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp index 5a2a3dad9..ff07205b9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp index 5a2a3dad9..ff07205b9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h index 5a2a3dad9..ff07205b9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp index 24107069f..e4361c673 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/paintwidget_unix.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h index 5a2a3dad9..ff07205b9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmake/view.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp index 2de9fc9b8..ed05fec41 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp index 304ce096d..2a06203af 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h index 115cd5883..7c8711105 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qmetaobject-invokable/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp index a3e8b950a..93b5855ff 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess-environment/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp index 4ca6a31f7..c7d964b44 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp index ba2803a46..8bf807230 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h index d13d6eda9..6763da00d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/buttonwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp index cd9f76b5d..f570a9b0c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h index 6b64ccec9..18037fadd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsignalmapper/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp index 435cb9f6f..9b097f3bd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel-details/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp index 0e831d823..a1a1a2387 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsortfilterproxymodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp index 4be852c82..33b48f742 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp index 665fab01b..d9489856b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h index 1956dd7d6..22132039b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsplashscreen/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp index f9126a5fb..7f512e091 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsql-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp index 31acb937c..60b83bfcb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstack/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp index 007efdd53..9652a0ef4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp index f8b6496f8..98a08be98 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstackedwidget/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp index 0e1e8e68d..c5b9ab923 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstandarditemmodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp index d94ecaee3..0ba3895a1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstatustipevent/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp index a70ebacc1..07c77f949 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstringlistmodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp index 6dbbe02d7..12fb026f7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleoption/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp index ac8258182..67c5b519f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qstyleplugin/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp index dbeec6ac2..537c8ac69 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qsvgwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp index c30a0bcb2..90d3f00ed 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qt-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp index cd8c33800..e0ac8a2db 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h index 8ac610bd1..8387de54a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp index 1268c6792..fcaa77648 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h index 09a6e916e..8eaaa7e00 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-resizing/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp index 7a1805a6a..e98359539 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h index 3c364e509..9571090ca 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtablewidget-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp index 64e0b6ce3..88e97f4a2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h index c3828e919..eb0278fa8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtcast/qtcast.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp index fdd4bddfd..8661d6ed0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtest-namespace/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h index 59b56953d..6c89f166b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/dragdropmodel.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp index 83d35c9e8..929f8ee33 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h index 4173b9f33..d526dce12 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp index 2439b4c50..63270d248 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h index 32da31bd7..4f3a1679f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treeitem.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp index d13b2d1b8..731a77889 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h index 4b1df74e7..faf970ee9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreeview-dnd/treemodel.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp index 05078d6d5..c7b355c5e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h index 5cdf5fef4..876ceba07 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidget-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp index f43a178e6..e76756fe8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp index 4149a9fac..3cbe3e65d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h index 5cdf5fef4..876ceba07 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp index 396486dd1..d7fcc83ab 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/evaluation/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp index 5ed3f826a..afd3da83f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp index 4dd35dea4..f6a795e66 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h index 411dc55ab..fa86f16d3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringobjects/myobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp index 368be0126..871216489 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/registeringvalues/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp index 08885f56c..4f1e57863 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qtscript/scriptedslot/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp index 0e743b860..53684a444 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp index cae3b24a3..351678ad9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h index 2c409a2bf..66e9235f6 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/quiloader/mywidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp index c4a67e1cf..c23e2e89d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedcontainer/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp index 830403e87..cd1fbe713 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h index 21d86d73a..1d54f7088 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/embedwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp index 8d927f5a7..c6f6443cb 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qx11embedwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp index 5a4974e3f..734f603a9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlquery/bindingExample.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp index 6b3af2042..70014457c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschema/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp index 39923a6cb..0d81b914a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlschemavalidator/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp index 8b6c5013b..3649f0fa7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/qxmlstreamwriter/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp index 494666a20..3ae4962ad 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h index 5d0a6e500..6b4076815 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp index cb7518193..269a18da8 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h index d0b33039e..7bebf72a4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/reading-selections/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp index ae184d2ea..5f94ded20 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/scribe-overview/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp index 8c2963889..83b5fb2a5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/scriptdebugger.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp index b24933ac6..d9b5a78e1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h index a0a8a5cb4..2b40e760f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/finalwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp index d35eee152..f2ea7f2cf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp index 2c1da9e9a..5f0bd6f4d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h index 7f569a575..2991e759e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/screenwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp index 3144383e3..008279c1a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h index f368d74c1..3713c27cf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/separations/viewer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp index 9a4eaff71..e4bb50f1e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/settings/settings.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp index 3a0a09c93..338d131ea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/shareddirmodel/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp index 8d1360cd9..689b6b271 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h index 6507d1015..23ffcddc7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/employee.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp index ece976f80..5faa8919c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedemployee/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp index af585a571..8dc6701c7 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h index 5d0a6e500..6b4076815 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sharedtablemodel/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp index 410dcdbe7..f7e5b5c0c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h index e8446b27b..6509951ba 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/filereader.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp index df498d364..404756691 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalmapper/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp index 5e753921d..c24a03d98 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h index 8495d53e6..68563e05c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/lcdnumber.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp index 44d17f0be..8e77a3236 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h index 964455bff..c89e83d37 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/signalsandslots/signalsandslots.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp index b80e8e1bb..b0184e338 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simplemodel-use/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp index d85469638..1bb2e805e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h index 9b1de5771..ea1b8b392 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/handler.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp index ae461f5ec..810e442d1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/simpleparse/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp index e9b3fde21..90fd928fd 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitter/splitter.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp index a9a27d896..f9065226f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp index 3364548cb..7b9c06474 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h index b0373bdb1..5ecaafcdf 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/splitterhandle/splitter.h @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp index 82e6007fe..29ac9c87d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/sqldatabase/sqldatabase.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp index abd1c0419..d81ae3a76 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/streaming/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp index c8e96850d..b95a9f245 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp index f9dfdf328..79c449d79 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h index b3e9efb82..5868952d5 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stringlistmodel/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp index 31a07b6ed..b17445179 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/styles/styles.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp index c5bac4640..a8dfe2514 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/stylesheet/common-mistakes.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp index 0cd5b4ac0..f1b9d312c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-formats/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp index 3c2349cea..42d8bc990 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp index 20446b3d7..9f11ca77c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h index 60d171382..4b691b543 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp index 335e8c163..78af3fe91 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h index 61d6df6a9..56ce14089 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textblock-fragments/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp index 3c2349cea..42d8bc990 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp index 0947a6600..33a08e4e0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h index 60d171382..4b691b543 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp index 99acdfdb1..a03a130f2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h index 9cfd82736..562ce5dd0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-blocks/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp index e232475f3..092f991ef 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-charformats/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp index 7578aab9d..987489d4b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-css/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp index e6b16d07b..b224ed46e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-cursors/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp index 136fe0163..52187e9d2 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-find/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp index 3b34706c1..2cb0b3313 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp index b35972a48..76bc692b3 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h index 89bece20e..9aad859dc 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp index 64d868b40..5949a91b1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h index 05f28609e..707af5152 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-frames/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp index d2c438bdc..4ae9b689f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp index ebe75b0c7..a0392cc94 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h index 2bb358e5b..a80481a4d 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imagedrop/textedit.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp index ff0788351..5b59a20ec 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-imageformat/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp index 8d4bc9f13..f60ba32e1 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-images/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp index 3c2349cea..42d8bc990 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp index 90d127ec3..55f4a8655 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h index 9e57c708c..deeeab85a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-listitems/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp index 3c2349cea..42d8bc990 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp index 670ccf928..45f1ae8e0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h index 5b6f42a91..a52fa764f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-lists/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp index 3c2349cea..42d8bc990 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp index 2d949517d..b5ce5df5e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h index 527a6b174..c80d42bb0 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-printing/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp index 3c2349cea..42d8bc990 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp index 4777ca42e..847dafe76 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h index a8fff0788..ba889195e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-selections/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp index 5621b4b8a..b9a13a851 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp index 2cb9f0bb5..cf43b08c9 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h index 7744dceff..36fd19709 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/mainwindow.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp index 4117aa0ff..b7eca8a8a 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h index 3a65a4b12..ebfbc826f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-tables/xmlwriter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp index 24bb27a78..b6622636c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocument-texttable/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp index 050bcf947..c73013439 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/textdocumentendsnippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp index bf410568d..bc31e0f08 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h index 57642974d..2c4894315 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/threads/threads.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp index 157e93068..22e7b515c 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/timeline/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp index 98167c8d4..fbbd46a1e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/timers/timers.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp index f75181741..325ea1c7e 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/transform/main.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp index 4e7505f50..3545412a4 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/uitools/calculatorform/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp index 494666a20..3ae4962ad 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h index 5d0a6e500..6b4076815 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/model.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp index 1e2aed329..bba70c647 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h index c45338ed8..ba4a36a03 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/updating-selections/window.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp index 848f4cce0..3d4784804 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/webkit/webpage/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp index bb97444c6..ea97d1e35 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/whatsthis/whatsthis.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp index 854756228..f875eab00 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widget-mask/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp index 616ac5c9f..960d50158 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgetdelegate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp index 9d874ca4f..4b7854800 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/childwidget/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp index 1a6cb8118..aae4d4d7f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/nestedlayouts/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp index 32fb54c48..de018bbea 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/toplevel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp index 18cd3fbef..e5c6f86ed 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/widgets-tutorial/windowlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp index 978b47e40..ff08b4e55 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h index 424eefd2b..89acb5d36 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/handler.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp index 6ed8fd932..1f326d591 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp index 232b9556b..b7fe2843f 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h index af8e7c48d..c7d75528b 100644 --- a/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h +++ b/sources/pyside2/doc/codesnippets/doc/src/snippets/xml/rsslisting/rsslisting.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py b/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py index e5da1aa6c..52ad7335a 100755 --- a/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py +++ b/sources/pyside2/doc/codesnippets/examples/dbus/example-client.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the documentation of the Qt for Python project. +## This file is part of the documentation of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py b/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py index 811d47d64..c42b8697c 100755 --- a/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py +++ b/sources/pyside2/doc/codesnippets/examples/dbus/example-server.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the documentation of the Qt for Python project. +## This file is part of the documentation of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp index 57be8dcb9..4b8b9234f 100644 --- a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp +++ b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugin.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml index 3c2b7fac1..415531885 100644 --- a/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml +++ b/sources/pyside2/doc/codesnippets/examples/declarative/cppextensions/plugins/plugins.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp b/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp index 5af32556b..a8496f4c8 100644 --- a/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp +++ b/sources/pyside2/doc/codesnippets/examples/dialogs/extension/finddialog.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp b/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp index 494818542..d4dde36bc 100644 --- a/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp +++ b/sources/pyside2/doc/codesnippets/examples/dialogs/standarddialogs/dialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp b/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp index fc219f83d..4fff4d631 100644 --- a/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp +++ b/sources/pyside2/doc/codesnippets/examples/dialogs/tabdialog/tabdialog.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp b/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp index 71d210947..818d865e3 100644 --- a/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp +++ b/sources/pyside2/doc/codesnippets/examples/graphicsview/simpleanchorlayout/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml index d66c4be84..58f2599dc 100644 --- a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml +++ b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider-example.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp index 4a5f361d5..1bff57293 100644 --- a/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp +++ b/sources/pyside2/doc/codesnippets/examples/imageprovider/imageprovider.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp b/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp index 9a0d416e6..f99b7e18e 100644 --- a/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp +++ b/sources/pyside2/doc/codesnippets/examples/itemviews/customsortfiltermodel/mysortfilterproxymodel.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp b/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp index 802a65ef6..7c207d19c 100644 --- a/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp +++ b/sources/pyside2/doc/codesnippets/examples/itemviews/pixelator/pixeldelegate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp index ae3bb50b1..b0331aa79 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/application/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp index e8365a4e1..e1a9f556e 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/dockwidgets/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp index 0c863f6ec..6ed5f5466 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp index c83fa0123..cfee5cdca 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/mdi/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp index 0c863f6ec..6ed5f5466 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/menus/mainwindow.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp b/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp index a1b12b152..de169b20d 100644 --- a/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp +++ b/sources/pyside2/doc/codesnippets/examples/mainwindows/sdi/mainwindow.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml b/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml index 9641e65c6..f1b5c2354 100644 --- a/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml +++ b/sources/pyside2/doc/codesnippets/examples/quick/plugins/plugins.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp b/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp index 114249296..48803f05e 100644 --- a/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp +++ b/sources/pyside2/doc/codesnippets/examples/relationaltablemodel/relationaltablemodel.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h b/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h index 0f1c4998f..d0b9abf40 100644 --- a/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h +++ b/sources/pyside2/doc/codesnippets/examples/richtext/textobject/svgtextobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp b/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp index 179739926..a24e3536f 100644 --- a/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp +++ b/sources/pyside2/doc/codesnippets/examples/widgets/groupbox/window.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp b/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp index 9d2b8e17b..a289c5cea 100644 --- a/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp +++ b/sources/pyside2/doc/codesnippets/examples/widgets/icons/iconsizespinbox.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp b/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp index 5cc0659a5..7eace108a 100644 --- a/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp +++ b/sources/pyside2/doc/codesnippets/examples/widgets/spinboxes/window.cpp @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the examples of the Qt for Python project. +## This file is part of the examples of Qt for Python. ## ## $QT_BEGIN_LICENSE:BSD$ ## Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp b/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp index 8ace76183..877c63afd 100644 --- a/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp +++ b/sources/pyside2/doc/codesnippets/snippets/customstyle/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp b/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp index c7b209b14..7a2f9b83a 100644 --- a/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp +++ b/sources/pyside2/doc/codesnippets/snippets/textdocument-resources/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp index 32315b51b..79dc15177 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp index d7459a1b3..268f4344e 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/qtwebkit_qwebview_snippet.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp index ec8017240..1382cd446 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/simple/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp index f02d64a70..67e101ae0 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/webelement/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp b/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp index c864d4f1a..b64a4f35b 100644 --- a/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp +++ b/sources/pyside2/doc/codesnippets/webkitsnippets/webpage/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/pyhtml2devhelp.py b/sources/pyside2/doc/pyhtml2devhelp.py index de188477e..aa39036d3 100644 --- a/sources/pyside2/doc/pyhtml2devhelp.py +++ b/sources/pyside2/doc/pyhtml2devhelp.py @@ -6,7 +6,7 @@ ## Copyright (C) 2009 Matthias Klose ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project tools. +## This file is part of Qt for Python tools. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/doc/qtattributionsscannertorst.py b/sources/pyside2/doc/qtattributionsscannertorst.py index fa1e1d2de..af02103ef 100644 --- a/sources/pyside2/doc/qtattributionsscannertorst.py +++ b/sources/pyside2/doc/qtattributionsscannertorst.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml index fb78c473c..18d0c2e9e 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Block.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml index c612655f0..0c07904ab 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml index aa40b2bff..36b087d40 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame1/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml index 4306d9ecb..fbbf6a983 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Block.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml index abfba0725..ffdd2d46e 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml index 179835e96..6ed5bca1b 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame2/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml index 6e35ad0e2..33a58688c 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Block.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml index abfba0725..ffdd2d46e 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml index dd626977e..bb4c362cd 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/Dialog.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml index c1e21f218..18a938302 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame3/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml index cf767f2d5..d400fa402 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/BoomBlock.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml index abfba0725..ffdd2d46e 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Button.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml index 979904f28..0cdb04f7d 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/content/Dialog.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml index bb8a5f9dd..3e514f86a 100644 --- a/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml +++ b/sources/pyside2/doc/tutorials/qmladvancedtutorial/samegame/samegame4/samegame.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml index 82e3be38f..78ff12dd5 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/Cell.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml index 6c793dbed..381aeb8c4 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial1.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml index c00d5176d..4fd0cbf98 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial2.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml index 8f4c926c6..fcd7d388c 100644 --- a/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml +++ b/sources/pyside2/doc/tutorials/qmltutorial/helloworld/tutorial3.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the examples of the Qt for Python project. +** This file is part of the examples of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/doc/typesystem_doc.xml.in b/sources/pyside2/doc/typesystem_doc.xml.in index 9ad5f82d7..94260fea0 100644 --- a/sources/pyside2/doc/typesystem_doc.xml.in +++ b/sources/pyside2/doc/typesystem_doc.xml.in @@ -4,7 +4,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the documentation of the Qt for Python project. +** This file is part of the documentation of Qt for Python. ** ** $QT_BEGIN_LICENSE:BSD$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/destroylistener.cpp b/sources/pyside2/libpyside/destroylistener.cpp index 1c047cb55..95e53f709 100644 --- a/sources/pyside2/libpyside/destroylistener.cpp +++ b/sources/pyside2/libpyside/destroylistener.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/destroylistener.h b/sources/pyside2/libpyside/destroylistener.h index 370281c67..0a800451a 100644 --- a/sources/pyside2/libpyside/destroylistener.h +++ b/sources/pyside2/libpyside/destroylistener.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/dynamicqmetaobject.cpp b/sources/pyside2/libpyside/dynamicqmetaobject.cpp index df8a32173..63b52744f 100644 --- a/sources/pyside2/libpyside/dynamicqmetaobject.cpp +++ b/sources/pyside2/libpyside/dynamicqmetaobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/dynamicqmetaobject.h b/sources/pyside2/libpyside/dynamicqmetaobject.h index 92153320b..5ecce50c9 100644 --- a/sources/pyside2/libpyside/dynamicqmetaobject.h +++ b/sources/pyside2/libpyside/dynamicqmetaobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/dynamicqmetaobject_p.h b/sources/pyside2/libpyside/dynamicqmetaobject_p.h index 1e756ab6f..219ffc4e3 100644 --- a/sources/pyside2/libpyside/dynamicqmetaobject_p.h +++ b/sources/pyside2/libpyside/dynamicqmetaobject_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiver.cpp b/sources/pyside2/libpyside/globalreceiver.cpp index 4f1247489..ee1f6354a 100644 --- a/sources/pyside2/libpyside/globalreceiver.cpp +++ b/sources/pyside2/libpyside/globalreceiver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiver.h b/sources/pyside2/libpyside/globalreceiver.h index 42ce6eb07..426d40bfe 100644 --- a/sources/pyside2/libpyside/globalreceiver.h +++ b/sources/pyside2/libpyside/globalreceiver.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiverv2.cpp b/sources/pyside2/libpyside/globalreceiverv2.cpp index a7f86f561..05565e516 100644 --- a/sources/pyside2/libpyside/globalreceiverv2.cpp +++ b/sources/pyside2/libpyside/globalreceiverv2.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/globalreceiverv2.h b/sources/pyside2/libpyside/globalreceiverv2.h index 932fc478b..af860fe1d 100644 --- a/sources/pyside2/libpyside/globalreceiverv2.h +++ b/sources/pyside2/libpyside/globalreceiverv2.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pyside.cpp b/sources/pyside2/libpyside/pyside.cpp index 6d7511d85..6bdaf65f2 100644 --- a/sources/pyside2/libpyside/pyside.cpp +++ b/sources/pyside2/libpyside/pyside.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pyside.h b/sources/pyside2/libpyside/pyside.h index bbd02b06d..2c7b60e3a 100644 --- a/sources/pyside2/libpyside/pyside.h +++ b/sources/pyside2/libpyside/pyside.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideclassinfo.cpp b/sources/pyside2/libpyside/pysideclassinfo.cpp index df78d1411..c5e0b5484 100644 --- a/sources/pyside2/libpyside/pysideclassinfo.cpp +++ b/sources/pyside2/libpyside/pysideclassinfo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideclassinfo.h b/sources/pyside2/libpyside/pysideclassinfo.h index 26d6de3e0..91e014715 100644 --- a/sources/pyside2/libpyside/pysideclassinfo.h +++ b/sources/pyside2/libpyside/pysideclassinfo.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideclassinfo_p.h b/sources/pyside2/libpyside/pysideclassinfo_p.h index c08a3b5d1..426aee133 100644 --- a/sources/pyside2/libpyside/pysideclassinfo_p.h +++ b/sources/pyside2/libpyside/pysideclassinfo_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemacros.h b/sources/pyside2/libpyside/pysidemacros.h index 5a28cdd1c..5b493a279 100644 --- a/sources/pyside2/libpyside/pysidemacros.h +++ b/sources/pyside2/libpyside/pysidemacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemetafunction.cpp b/sources/pyside2/libpyside/pysidemetafunction.cpp index 44e959fa8..a0f4b0561 100644 --- a/sources/pyside2/libpyside/pysidemetafunction.cpp +++ b/sources/pyside2/libpyside/pysidemetafunction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemetafunction.h b/sources/pyside2/libpyside/pysidemetafunction.h index e34116b14..9a4072dec 100644 --- a/sources/pyside2/libpyside/pysidemetafunction.h +++ b/sources/pyside2/libpyside/pysidemetafunction.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidemetafunction_p.h b/sources/pyside2/libpyside/pysidemetafunction_p.h index 41f6ac45c..c3b8fe0c7 100644 --- a/sources/pyside2/libpyside/pysidemetafunction_p.h +++ b/sources/pyside2/libpyside/pysidemetafunction_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideproperty.cpp b/sources/pyside2/libpyside/pysideproperty.cpp index 2146fff85..de85686ce 100644 --- a/sources/pyside2/libpyside/pysideproperty.cpp +++ b/sources/pyside2/libpyside/pysideproperty.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideproperty.h b/sources/pyside2/libpyside/pysideproperty.h index 2f0694bba..d8cafc6c2 100644 --- a/sources/pyside2/libpyside/pysideproperty.h +++ b/sources/pyside2/libpyside/pysideproperty.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideproperty_p.h b/sources/pyside2/libpyside/pysideproperty_p.h index 4eb3164e1..f08e5f540 100644 --- a/sources/pyside2/libpyside/pysideproperty_p.h +++ b/sources/pyside2/libpyside/pysideproperty_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideqflags.cpp b/sources/pyside2/libpyside/pysideqflags.cpp index 7a1b3ee62..d38069850 100644 --- a/sources/pyside2/libpyside/pysideqflags.cpp +++ b/sources/pyside2/libpyside/pysideqflags.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideqflags.h b/sources/pyside2/libpyside/pysideqflags.h index 7f05a75f8..e0598798d 100644 --- a/sources/pyside2/libpyside/pysideqflags.h +++ b/sources/pyside2/libpyside/pysideqflags.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidesignal.cpp b/sources/pyside2/libpyside/pysidesignal.cpp index f0e1f351c..76ef65b5e 100644 --- a/sources/pyside2/libpyside/pysidesignal.cpp +++ b/sources/pyside2/libpyside/pysidesignal.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidesignal.h b/sources/pyside2/libpyside/pysidesignal.h index 73090750a..f5365098f 100644 --- a/sources/pyside2/libpyside/pysidesignal.h +++ b/sources/pyside2/libpyside/pysidesignal.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysidesignal_p.h b/sources/pyside2/libpyside/pysidesignal_p.h index 61e041b8c..e2e28b3dd 100644 --- a/sources/pyside2/libpyside/pysidesignal_p.h +++ b/sources/pyside2/libpyside/pysidesignal_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideslot.cpp b/sources/pyside2/libpyside/pysideslot.cpp index ab105b5c5..8f307260d 100644 --- a/sources/pyside2/libpyside/pysideslot.cpp +++ b/sources/pyside2/libpyside/pysideslot.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideslot_p.h b/sources/pyside2/libpyside/pysideslot_p.h index 4409c4d7d..3d98e15c4 100644 --- a/sources/pyside2/libpyside/pysideslot_p.h +++ b/sources/pyside2/libpyside/pysideslot_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideweakref.cpp b/sources/pyside2/libpyside/pysideweakref.cpp index d35867834..c31334ee5 100644 --- a/sources/pyside2/libpyside/pysideweakref.cpp +++ b/sources/pyside2/libpyside/pysideweakref.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/pysideweakref.h b/sources/pyside2/libpyside/pysideweakref.h index 29938a098..628c1eda4 100644 --- a/sources/pyside2/libpyside/pysideweakref.h +++ b/sources/pyside2/libpyside/pysideweakref.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/signalmanager.cpp.in b/sources/pyside2/libpyside/signalmanager.cpp.in index 5e9d4c5b7..50f436134 100644 --- a/sources/pyside2/libpyside/signalmanager.cpp.in +++ b/sources/pyside2/libpyside/signalmanager.cpp.in @@ -4,7 +4,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/libpyside/signalmanager.h b/sources/pyside2/libpyside/signalmanager.h index 6f0b798e3..4f286745f 100644 --- a/sources/pyside2/libpyside/signalmanager.h +++ b/sources/pyside2/libpyside/signalmanager.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidget.cpp b/sources/pyside2/plugins/customwidget.cpp index 87a264d0e..c2ed00bd0 100644 --- a/sources/pyside2/plugins/customwidget.cpp +++ b/sources/pyside2/plugins/customwidget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidget.h b/sources/pyside2/plugins/customwidget.h index 0126ee075..fc7d08941 100644 --- a/sources/pyside2/plugins/customwidget.h +++ b/sources/pyside2/plugins/customwidget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidgets.cpp b/sources/pyside2/plugins/customwidgets.cpp index b285d6118..58d2a518c 100644 --- a/sources/pyside2/plugins/customwidgets.cpp +++ b/sources/pyside2/plugins/customwidgets.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/plugins/customwidgets.h b/sources/pyside2/plugins/customwidgets.h index af6dd0a96..5c52d1d25 100644 --- a/sources/pyside2/plugins/customwidgets.h +++ b/sources/pyside2/plugins/customwidgets.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/pyside2/pyside_version.py b/sources/pyside2/pyside_version.py index 24b06e0b3..10cbd6956 100644 --- a/sources/pyside2/pyside_version.py +++ b/sources/pyside2/pyside_version.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py b/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py index a1b668ab6..2c7f84ad3 100644 --- a/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py +++ b/sources/pyside2/tests/Qt3DExtras/qt3dextras_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCharts/qcharts_test.py b/sources/pyside2/tests/QtCharts/qcharts_test.py index 32da5ad4b..b540cf64c 100644 --- a/sources/pyside2/tests/QtCharts/qcharts_test.py +++ b/sources/pyside2/tests/QtCharts/qcharts_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/blocking_signals_test.py b/sources/pyside2/tests/QtCore/blocking_signals_test.py index 93db68ee1..769820355 100644 --- a/sources/pyside2/tests/QtCore/blocking_signals_test.py +++ b/sources/pyside2/tests/QtCore/blocking_signals_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1019.py b/sources/pyside2/tests/QtCore/bug_1019.py index 4cd03aa23..bc4b9b679 100644 --- a/sources/pyside2/tests/QtCore/bug_1019.py +++ b/sources/pyside2/tests/QtCore/bug_1019.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1031.py b/sources/pyside2/tests/QtCore/bug_1031.py index 21d19c5c8..1fb0d6ebd 100644 --- a/sources/pyside2/tests/QtCore/bug_1031.py +++ b/sources/pyside2/tests/QtCore/bug_1031.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1063.py b/sources/pyside2/tests/QtCore/bug_1063.py index c4af4feb3..2560448e8 100644 --- a/sources/pyside2/tests/QtCore/bug_1063.py +++ b/sources/pyside2/tests/QtCore/bug_1063.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_1069.py b/sources/pyside2/tests/QtCore/bug_1069.py index d046b2ac2..d784062e3 100644 --- a/sources/pyside2/tests/QtCore/bug_1069.py +++ b/sources/pyside2/tests/QtCore/bug_1069.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_278_test.py b/sources/pyside2/tests/QtCore/bug_278_test.py index f1c312068..e0f07d119 100644 --- a/sources/pyside2/tests/QtCore/bug_278_test.py +++ b/sources/pyside2/tests/QtCore/bug_278_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_332.py b/sources/pyside2/tests/QtCore/bug_332.py index 105075df9..662a0f632 100644 --- a/sources/pyside2/tests/QtCore/bug_332.py +++ b/sources/pyside2/tests/QtCore/bug_332.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_408.py b/sources/pyside2/tests/QtCore/bug_408.py index 573043240..b2f97df69 100644 --- a/sources/pyside2/tests/QtCore/bug_408.py +++ b/sources/pyside2/tests/QtCore/bug_408.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_428.py b/sources/pyside2/tests/QtCore/bug_428.py index c2915aa02..d1504876b 100644 --- a/sources/pyside2/tests/QtCore/bug_428.py +++ b/sources/pyside2/tests/QtCore/bug_428.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_462.py b/sources/pyside2/tests/QtCore/bug_462.py index 235e981be..5186ac759 100644 --- a/sources/pyside2/tests/QtCore/bug_462.py +++ b/sources/pyside2/tests/QtCore/bug_462.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_505.py b/sources/pyside2/tests/QtCore/bug_505.py index 242c9616a..c1d434c7f 100644 --- a/sources/pyside2/tests/QtCore/bug_505.py +++ b/sources/pyside2/tests/QtCore/bug_505.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_515.py b/sources/pyside2/tests/QtCore/bug_515.py index 847f41e6a..d4ca3f463 100644 --- a/sources/pyside2/tests/QtCore/bug_515.py +++ b/sources/pyside2/tests/QtCore/bug_515.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_606.py b/sources/pyside2/tests/QtCore/bug_606.py index 9f4d185e3..44126e943 100644 --- a/sources/pyside2/tests/QtCore/bug_606.py +++ b/sources/pyside2/tests/QtCore/bug_606.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_656.py b/sources/pyside2/tests/QtCore/bug_656.py index fc28d2672..1b9fe6a9c 100644 --- a/sources/pyside2/tests/QtCore/bug_656.py +++ b/sources/pyside2/tests/QtCore/bug_656.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_686.py b/sources/pyside2/tests/QtCore/bug_686.py index 5e25bd3e2..fa8ad8d65 100644 --- a/sources/pyside2/tests/QtCore/bug_686.py +++ b/sources/pyside2/tests/QtCore/bug_686.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_699.py b/sources/pyside2/tests/QtCore/bug_699.py index a655bfe84..98340f3df 100644 --- a/sources/pyside2/tests/QtCore/bug_699.py +++ b/sources/pyside2/tests/QtCore/bug_699.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_706.py b/sources/pyside2/tests/QtCore/bug_706.py index c28fef7a7..1984cfff9 100644 --- a/sources/pyside2/tests/QtCore/bug_706.py +++ b/sources/pyside2/tests/QtCore/bug_706.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_820.py b/sources/pyside2/tests/QtCore/bug_820.py index d9cc3369a..f55954295 100644 --- a/sources/pyside2/tests/QtCore/bug_820.py +++ b/sources/pyside2/tests/QtCore/bug_820.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_826.py b/sources/pyside2/tests/QtCore/bug_826.py index 85c508a61..5e3a12146 100644 --- a/sources/pyside2/tests/QtCore/bug_826.py +++ b/sources/pyside2/tests/QtCore/bug_826.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_829.py b/sources/pyside2/tests/QtCore/bug_829.py index 32679f89b..1384c017a 100644 --- a/sources/pyside2/tests/QtCore/bug_829.py +++ b/sources/pyside2/tests/QtCore/bug_829.py @@ -4,7 +4,7 @@ ## Copyright (C) 2011 Thomas Perl ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_835.py b/sources/pyside2/tests/QtCore/bug_835.py index 7f8c3d7b2..59cb612ac 100644 --- a/sources/pyside2/tests/QtCore/bug_835.py +++ b/sources/pyside2/tests/QtCore/bug_835.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_920.py b/sources/pyside2/tests/QtCore/bug_920.py index 88e9008a6..196727668 100644 --- a/sources/pyside2/tests/QtCore/bug_920.py +++ b/sources/pyside2/tests/QtCore/bug_920.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_927.py b/sources/pyside2/tests/QtCore/bug_927.py index 32eae42e2..1a5be71f7 100644 --- a/sources/pyside2/tests/QtCore/bug_927.py +++ b/sources/pyside2/tests/QtCore/bug_927.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_931.py b/sources/pyside2/tests/QtCore/bug_931.py index 4bd64cf8a..528a0847d 100644 --- a/sources/pyside2/tests/QtCore/bug_931.py +++ b/sources/pyside2/tests/QtCore/bug_931.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_938.py b/sources/pyside2/tests/QtCore/bug_938.py index 20fb8a843..b23cbe2f2 100644 --- a/sources/pyside2/tests/QtCore/bug_938.py +++ b/sources/pyside2/tests/QtCore/bug_938.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_953.py b/sources/pyside2/tests/QtCore/bug_953.py index 4a695d769..2aa2b638d 100644 --- a/sources/pyside2/tests/QtCore/bug_953.py +++ b/sources/pyside2/tests/QtCore/bug_953.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_987.py b/sources/pyside2/tests/QtCore/bug_987.py index 802ee4543..e5c7f1b0b 100644 --- a/sources/pyside2/tests/QtCore/bug_987.py +++ b/sources/pyside2/tests/QtCore/bug_987.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_994.py b/sources/pyside2/tests/QtCore/bug_994.py index fda1c109a..3b0ed0fd4 100644 --- a/sources/pyside2/tests/QtCore/bug_994.py +++ b/sources/pyside2/tests/QtCore/bug_994.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py b/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py index 6861b628d..3ed10be5f 100644 --- a/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py +++ b/sources/pyside2/tests/QtCore/bug_PYSIDE-164.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py b/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py index 64eacb3cc..9555bb419 100644 --- a/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py +++ b/sources/pyside2/tests/QtCore/bug_PYSIDE-42.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/child_event_test.py b/sources/pyside2/tests/QtCore/child_event_test.py index 851e5b892..d9c92d537 100644 --- a/sources/pyside2/tests/QtCore/child_event_test.py +++ b/sources/pyside2/tests/QtCore/child_event_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/classinfo_test.py b/sources/pyside2/tests/QtCore/classinfo_test.py index 81acc4739..a1890f956 100644 --- a/sources/pyside2/tests/QtCore/classinfo_test.py +++ b/sources/pyside2/tests/QtCore/classinfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/deepcopy_test.py b/sources/pyside2/tests/QtCore/deepcopy_test.py index 2be701f73..ed042ce41 100644 --- a/sources/pyside2/tests/QtCore/deepcopy_test.py +++ b/sources/pyside2/tests/QtCore/deepcopy_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/deletelater_test.py b/sources/pyside2/tests/QtCore/deletelater_test.py index b01a9cca5..3c4152f49 100644 --- a/sources/pyside2/tests/QtCore/deletelater_test.py +++ b/sources/pyside2/tests/QtCore/deletelater_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/destroysignal_test.py b/sources/pyside2/tests/QtCore/destroysignal_test.py index a25081a57..37e78206e 100644 --- a/sources/pyside2/tests/QtCore/destroysignal_test.py +++ b/sources/pyside2/tests/QtCore/destroysignal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/duck_punching_test.py b/sources/pyside2/tests/QtCore/duck_punching_test.py index e341b95e9..48d86572a 100644 --- a/sources/pyside2/tests/QtCore/duck_punching_test.py +++ b/sources/pyside2/tests/QtCore/duck_punching_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/hash_test.py b/sources/pyside2/tests/QtCore/hash_test.py index 314e1a39f..6e8a4aaad 100644 --- a/sources/pyside2/tests/QtCore/hash_test.py +++ b/sources/pyside2/tests/QtCore/hash_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/inherits_test.py b/sources/pyside2/tests/QtCore/inherits_test.py index 10dba0a51..1f5fa49e9 100644 --- a/sources/pyside2/tests/QtCore/inherits_test.py +++ b/sources/pyside2/tests/QtCore/inherits_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/max_signals.py b/sources/pyside2/tests/QtCore/max_signals.py index cba3cb286..1f7e7f822 100644 --- a/sources/pyside2/tests/QtCore/max_signals.py +++ b/sources/pyside2/tests/QtCore/max_signals.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/missing_symbols_test.py b/sources/pyside2/tests/QtCore/missing_symbols_test.py index d54a0593b..ac8828012 100644 --- a/sources/pyside2/tests/QtCore/missing_symbols_test.py +++ b/sources/pyside2/tests/QtCore/missing_symbols_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/mockclass_test.py b/sources/pyside2/tests/QtCore/mockclass_test.py index 2d0e93e94..1b730e714 100644 --- a/sources/pyside2/tests/QtCore/mockclass_test.py +++ b/sources/pyside2/tests/QtCore/mockclass_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/python_conversion.py b/sources/pyside2/tests/QtCore/python_conversion.py index c99ec2c95..d10ecea54 100644 --- a/sources/pyside2/tests/QtCore/python_conversion.py +++ b/sources/pyside2/tests/QtCore/python_conversion.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qabs_test.py b/sources/pyside2/tests/QtCore/qabs_test.py index e4c4e34b4..bc698d3dc 100644 --- a/sources/pyside2/tests/QtCore/qabs_test.py +++ b/sources/pyside2/tests/QtCore/qabs_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py b/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py index ae1d97f8e..66c178949 100644 --- a/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py +++ b/sources/pyside2/tests/QtCore/qabstractitemmodel_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qabstracttransition_test.py b/sources/pyside2/tests/QtCore/qabstracttransition_test.py index 23ebe57ae..247914517 100644 --- a/sources/pyside2/tests/QtCore/qabstracttransition_test.py +++ b/sources/pyside2/tests/QtCore/qabstracttransition_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qanimationgroup_test.py b/sources/pyside2/tests/QtCore/qanimationgroup_test.py index fe5298d31..08b410aae 100644 --- a/sources/pyside2/tests/QtCore/qanimationgroup_test.py +++ b/sources/pyside2/tests/QtCore/qanimationgroup_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbitarray_test.py b/sources/pyside2/tests/QtCore/qbitarray_test.py index 5eb617a13..72117ad7c 100644 --- a/sources/pyside2/tests/QtCore/qbitarray_test.py +++ b/sources/pyside2/tests/QtCore/qbitarray_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py b/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py index b5fa3459d..2ec6938bb 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_buffer_protocol_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py b/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py index 148435060..308143d6d 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_concatenation_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py b/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py index f4f19c9e5..dd569ac55 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_operator_iadd_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_operator_test.py b/sources/pyside2/tests/QtCore/qbytearray_operator_test.py index ca90f9d60..09b5f24fb 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_operator_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qbytearray_test.py b/sources/pyside2/tests/QtCore/qbytearray_test.py index 0be972c0a..672472c42 100644 --- a/sources/pyside2/tests/QtCore/qbytearray_test.py +++ b/sources/pyside2/tests/QtCore/qbytearray_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qcollator_test.py b/sources/pyside2/tests/QtCore/qcollator_test.py index 38ea73785..231ce5bbe 100644 --- a/sources/pyside2/tests/QtCore/qcollator_test.py +++ b/sources/pyside2/tests/QtCore/qcollator_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qcommandlineparser_test.py b/sources/pyside2/tests/QtCore/qcommandlineparser_test.py index b30085502..207dbbe73 100644 --- a/sources/pyside2/tests/QtCore/qcommandlineparser_test.py +++ b/sources/pyside2/tests/QtCore/qcommandlineparser_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py b/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py index 35896a40f..ad1dee0bf 100644 --- a/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py +++ b/sources/pyside2/tests/QtCore/qcoreapplication_instance_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qdatastream_test.py b/sources/pyside2/tests/QtCore/qdatastream_test.py index 2b86712b1..3e141fbfe 100644 --- a/sources/pyside2/tests/QtCore/qdatastream_test.py +++ b/sources/pyside2/tests/QtCore/qdatastream_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qdate_test.py b/sources/pyside2/tests/QtCore/qdate_test.py index 6ddcf2a51..8c3ddb0d3 100644 --- a/sources/pyside2/tests/QtCore/qdate_test.py +++ b/sources/pyside2/tests/QtCore/qdate_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qdatetime_test.py b/sources/pyside2/tests/QtCore/qdatetime_test.py index a47142030..9da514277 100644 --- a/sources/pyside2/tests/QtCore/qdatetime_test.py +++ b/sources/pyside2/tests/QtCore/qdatetime_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qeasingcurve_test.py b/sources/pyside2/tests/QtCore/qeasingcurve_test.py index 5e3cfa8fe..3975d1f2c 100644 --- a/sources/pyside2/tests/QtCore/qeasingcurve_test.py +++ b/sources/pyside2/tests/QtCore/qeasingcurve_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qenum_test.py b/sources/pyside2/tests/QtCore/qenum_test.py index 7dd65756c..eccbfac23 100644 --- a/sources/pyside2/tests/QtCore/qenum_test.py +++ b/sources/pyside2/tests/QtCore/qenum_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qevent_test.py b/sources/pyside2/tests/QtCore/qevent_test.py index b5dc3bc2c..c390c6afe 100644 --- a/sources/pyside2/tests/QtCore/qevent_test.py +++ b/sources/pyside2/tests/QtCore/qevent_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qfile_test.py b/sources/pyside2/tests/QtCore/qfile_test.py index cbabf4bc5..3dae1aaf0 100644 --- a/sources/pyside2/tests/QtCore/qfile_test.py +++ b/sources/pyside2/tests/QtCore/qfile_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qfileinfo_test.py b/sources/pyside2/tests/QtCore/qfileinfo_test.py index 709532e99..16e606a2c 100644 --- a/sources/pyside2/tests/QtCore/qfileinfo_test.py +++ b/sources/pyside2/tests/QtCore/qfileinfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qfileread_test.py b/sources/pyside2/tests/QtCore/qfileread_test.py index 3df384f16..d8c17cebd 100644 --- a/sources/pyside2/tests/QtCore/qfileread_test.py +++ b/sources/pyside2/tests/QtCore/qfileread_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qflags_test.py b/sources/pyside2/tests/QtCore/qflags_test.py index 04b5c2c24..7d558424e 100644 --- a/sources/pyside2/tests/QtCore/qflags_test.py +++ b/sources/pyside2/tests/QtCore/qflags_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qhandle_test.py b/sources/pyside2/tests/QtCore/qhandle_test.py index cdb901e12..db7804467 100644 --- a/sources/pyside2/tests/QtCore/qhandle_test.py +++ b/sources/pyside2/tests/QtCore/qhandle_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py b/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py index ea75d3b15..f14c89311 100644 --- a/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py +++ b/sources/pyside2/tests/QtCore/qinstallmsghandler_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qlinef_test.py b/sources/pyside2/tests/QtCore/qlinef_test.py index 5a6537c2d..2261602c5 100644 --- a/sources/pyside2/tests/QtCore/qlinef_test.py +++ b/sources/pyside2/tests/QtCore/qlinef_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qlocale_test.py b/sources/pyside2/tests/QtCore/qlocale_test.py index 4b7579fbf..44374f808 100644 --- a/sources/pyside2/tests/QtCore/qlocale_test.py +++ b/sources/pyside2/tests/QtCore/qlocale_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qmetaobject_test.py b/sources/pyside2/tests/QtCore/qmetaobject_test.py index 25ddc2ffa..12b5312a6 100644 --- a/sources/pyside2/tests/QtCore/qmetaobject_test.py +++ b/sources/pyside2/tests/QtCore/qmetaobject_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qmimedatabase_test.py b/sources/pyside2/tests/QtCore/qmimedatabase_test.py index f17af3630..e523580ad 100644 --- a/sources/pyside2/tests/QtCore/qmimedatabase_test.py +++ b/sources/pyside2/tests/QtCore/qmimedatabase_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py b/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py index 28bd0d185..875d2075c 100644 --- a/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py +++ b/sources/pyside2/tests/QtCore/qmodelindex_internalpointer_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py b/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py index d2d690953..2b6218aaf 100644 --- a/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py +++ b/sources/pyside2/tests/QtCore/qobject_children_segfault_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py b/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py index 845ebd877..68f79161d 100644 --- a/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py +++ b/sources/pyside2/tests/QtCore/qobject_connect_notify_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_destructor.py b/sources/pyside2/tests/QtCore/qobject_destructor.py index f8c725818..ef322cb3e 100644 --- a/sources/pyside2/tests/QtCore/qobject_destructor.py +++ b/sources/pyside2/tests/QtCore/qobject_destructor.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_event_filter_test.py b/sources/pyside2/tests/QtCore/qobject_event_filter_test.py index ffbedb0d0..e65757b17 100644 --- a/sources/pyside2/tests/QtCore/qobject_event_filter_test.py +++ b/sources/pyside2/tests/QtCore/qobject_event_filter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_inherits_test.py b/sources/pyside2/tests/QtCore/qobject_inherits_test.py index b94af0c11..3a87da347 100644 --- a/sources/pyside2/tests/QtCore/qobject_inherits_test.py +++ b/sources/pyside2/tests/QtCore/qobject_inherits_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py b/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py index 93ad915a6..bade8fe46 100644 --- a/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py +++ b/sources/pyside2/tests/QtCore/qobject_objectproperty_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_parent_test.py b/sources/pyside2/tests/QtCore/qobject_parent_test.py index 043ab6cbf..85b709137 100644 --- a/sources/pyside2/tests/QtCore/qobject_parent_test.py +++ b/sources/pyside2/tests/QtCore/qobject_parent_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_property_test.py b/sources/pyside2/tests/QtCore/qobject_property_test.py index 477cf3f8d..80d652ab5 100644 --- a/sources/pyside2/tests/QtCore/qobject_property_test.py +++ b/sources/pyside2/tests/QtCore/qobject_property_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py b/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py index c48b9fd7d..26376e449 100644 --- a/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py +++ b/sources/pyside2/tests/QtCore/qobject_protected_methods_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_test.py b/sources/pyside2/tests/QtCore/qobject_test.py index 560777ecd..2dd767c0d 100644 --- a/sources/pyside2/tests/QtCore/qobject_test.py +++ b/sources/pyside2/tests/QtCore/qobject_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_timer_event_test.py b/sources/pyside2/tests/QtCore/qobject_timer_event_test.py index 276917c2b..39501237e 100644 --- a/sources/pyside2/tests/QtCore/qobject_timer_event_test.py +++ b/sources/pyside2/tests/QtCore/qobject_timer_event_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py b/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py index e6fcbc9b0..420e39103 100644 --- a/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py +++ b/sources/pyside2/tests/QtCore/qobject_tr_as_instance_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qpoint_test.py b/sources/pyside2/tests/QtCore/qpoint_test.py index 05473aa76..e77662772 100644 --- a/sources/pyside2/tests/QtCore/qpoint_test.py +++ b/sources/pyside2/tests/QtCore/qpoint_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qprocess_test.py b/sources/pyside2/tests/QtCore/qprocess_test.py index 0d46320ec..23d44a21f 100644 --- a/sources/pyside2/tests/QtCore/qprocess_test.py +++ b/sources/pyside2/tests/QtCore/qprocess_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qproperty_decorator.py b/sources/pyside2/tests/QtCore/qproperty_decorator.py index 9140781d5..c6f0d3c37 100644 --- a/sources/pyside2/tests/QtCore/qproperty_decorator.py +++ b/sources/pyside2/tests/QtCore/qproperty_decorator.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qrect_test.py b/sources/pyside2/tests/QtCore/qrect_test.py index e05495a00..bcf9f95ba 100644 --- a/sources/pyside2/tests/QtCore/qrect_test.py +++ b/sources/pyside2/tests/QtCore/qrect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qregexp_test.py b/sources/pyside2/tests/QtCore/qregexp_test.py index c0d04c006..36d3b07cc 100644 --- a/sources/pyside2/tests/QtCore/qregexp_test.py +++ b/sources/pyside2/tests/QtCore/qregexp_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qregularexpression_test.py b/sources/pyside2/tests/QtCore/qregularexpression_test.py index e00fb479d..cef3ec668 100644 --- a/sources/pyside2/tests/QtCore/qregularexpression_test.py +++ b/sources/pyside2/tests/QtCore/qregularexpression_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qresource_test.py b/sources/pyside2/tests/QtCore/qresource_test.py index a3e9888cb..49c4a1049 100644 --- a/sources/pyside2/tests/QtCore/qresource_test.py +++ b/sources/pyside2/tests/QtCore/qresource_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qsize_test.py b/sources/pyside2/tests/QtCore/qsize_test.py index 4001135a8..1bc7779fb 100644 --- a/sources/pyside2/tests/QtCore/qsize_test.py +++ b/sources/pyside2/tests/QtCore/qsize_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qslot_object_test.py b/sources/pyside2/tests/QtCore/qslot_object_test.py index 0aa8af56c..cfb9e7883 100644 --- a/sources/pyside2/tests/QtCore/qslot_object_test.py +++ b/sources/pyside2/tests/QtCore/qslot_object_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qsrand_test.py b/sources/pyside2/tests/QtCore/qsrand_test.py index cc36c0e12..459bfeb59 100644 --- a/sources/pyside2/tests/QtCore/qsrand_test.py +++ b/sources/pyside2/tests/QtCore/qsrand_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstandardpaths_test.py b/sources/pyside2/tests/QtCore/qstandardpaths_test.py index 4f15bdc20..957aa4e18 100644 --- a/sources/pyside2/tests/QtCore/qstandardpaths_test.py +++ b/sources/pyside2/tests/QtCore/qstandardpaths_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstate_test.py b/sources/pyside2/tests/QtCore/qstate_test.py index 20cc33650..8627f4bba 100644 --- a/sources/pyside2/tests/QtCore/qstate_test.py +++ b/sources/pyside2/tests/QtCore/qstate_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstatemachine_test.py b/sources/pyside2/tests/QtCore/qstatemachine_test.py index 21aeb09df..34e107e50 100644 --- a/sources/pyside2/tests/QtCore/qstatemachine_test.py +++ b/sources/pyside2/tests/QtCore/qstatemachine_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstorageinfo_test.py b/sources/pyside2/tests/QtCore/qstorageinfo_test.py index 5252793e7..783b59564 100644 --- a/sources/pyside2/tests/QtCore/qstorageinfo_test.py +++ b/sources/pyside2/tests/QtCore/qstorageinfo_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qstring_test.py b/sources/pyside2/tests/QtCore/qstring_test.py index 3d848caa4..e3ac812da 100644 --- a/sources/pyside2/tests/QtCore/qstring_test.py +++ b/sources/pyside2/tests/QtCore/qstring_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qsysinfo_test.py b/sources/pyside2/tests/QtCore/qsysinfo_test.py index dda0f4be4..7e25e4fe9 100644 --- a/sources/pyside2/tests/QtCore/qsysinfo_test.py +++ b/sources/pyside2/tests/QtCore/qsysinfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtext_codec_test.py b/sources/pyside2/tests/QtCore/qtext_codec_test.py index 8d3cbcdb9..5506c202a 100644 --- a/sources/pyside2/tests/QtCore/qtext_codec_test.py +++ b/sources/pyside2/tests/QtCore/qtext_codec_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtextstream_test.py b/sources/pyside2/tests/QtCore/qtextstream_test.py index 7fa29dc5b..5cc961aec 100644 --- a/sources/pyside2/tests/QtCore/qtextstream_test.py +++ b/sources/pyside2/tests/QtCore/qtextstream_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py b/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py index 1d928af0b..ee3ed1a4a 100644 --- a/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py +++ b/sources/pyside2/tests/QtCore/qthread_prod_cons_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qthread_signal_test.py b/sources/pyside2/tests/QtCore/qthread_signal_test.py index 26685f9a6..31b148a00 100644 --- a/sources/pyside2/tests/QtCore/qthread_signal_test.py +++ b/sources/pyside2/tests/QtCore/qthread_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qthread_test.py b/sources/pyside2/tests/QtCore/qthread_test.py index c42a472e7..1df2c9994 100644 --- a/sources/pyside2/tests/QtCore/qthread_test.py +++ b/sources/pyside2/tests/QtCore/qthread_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py b/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py index e1a22c250..e25a97c3e 100644 --- a/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py +++ b/sources/pyside2/tests/QtCore/qtimer_singleshot_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtimer_timeout_test.py b/sources/pyside2/tests/QtCore/qtimer_timeout_test.py index c3fd8e144..bb8caf84c 100644 --- a/sources/pyside2/tests/QtCore/qtimer_timeout_test.py +++ b/sources/pyside2/tests/QtCore/qtimer_timeout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtimezone_test.py b/sources/pyside2/tests/QtCore/qtimezone_test.py index de4015917..fb1326e53 100644 --- a/sources/pyside2/tests/QtCore/qtimezone_test.py +++ b/sources/pyside2/tests/QtCore/qtimezone_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qtnamespace_test.py b/sources/pyside2/tests/QtCore/qtnamespace_test.py index 732fe3841..06dece280 100644 --- a/sources/pyside2/tests/QtCore/qtnamespace_test.py +++ b/sources/pyside2/tests/QtCore/qtnamespace_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qurl_test.py b/sources/pyside2/tests/QtCore/qurl_test.py index 92bf9a911..b0333d534 100644 --- a/sources/pyside2/tests/QtCore/qurl_test.py +++ b/sources/pyside2/tests/QtCore/qurl_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qurlquery_test.py b/sources/pyside2/tests/QtCore/qurlquery_test.py index 01abec4c1..652a9a88b 100644 --- a/sources/pyside2/tests/QtCore/qurlquery_test.py +++ b/sources/pyside2/tests/QtCore/qurlquery_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/quuid_test.py b/sources/pyside2/tests/QtCore/quuid_test.py index f7a7dff99..c881383e5 100644 --- a/sources/pyside2/tests/QtCore/quuid_test.py +++ b/sources/pyside2/tests/QtCore/quuid_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/qversionnumber_test.py b/sources/pyside2/tests/QtCore/qversionnumber_test.py index f92e58625..d98e320f1 100644 --- a/sources/pyside2/tests/QtCore/qversionnumber_test.py +++ b/sources/pyside2/tests/QtCore/qversionnumber_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/repr_test.py b/sources/pyside2/tests/QtCore/repr_test.py index 84750923a..343c991ac 100644 --- a/sources/pyside2/tests/QtCore/repr_test.py +++ b/sources/pyside2/tests/QtCore/repr_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/resources_mc.py b/sources/pyside2/tests/QtCore/resources_mc.py index c35df5c41..4b29523f5 100644 --- a/sources/pyside2/tests/QtCore/resources_mc.py +++ b/sources/pyside2/tests/QtCore/resources_mc.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py b/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py index 74ff82c10..ea3690f91 100644 --- a/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py +++ b/sources/pyside2/tests/QtCore/setprop_on_ctor_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/staticMetaObject_test.py b/sources/pyside2/tests/QtCore/staticMetaObject_test.py index cb3bfc42a..7fdfaf417 100644 --- a/sources/pyside2/tests/QtCore/staticMetaObject_test.py +++ b/sources/pyside2/tests/QtCore/staticMetaObject_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/static_method_test.py b/sources/pyside2/tests/QtCore/static_method_test.py index c8a2ba208..28189df4c 100644 --- a/sources/pyside2/tests/QtCore/static_method_test.py +++ b/sources/pyside2/tests/QtCore/static_method_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/thread_signals_test.py b/sources/pyside2/tests/QtCore/thread_signals_test.py index 9ae1a26b9..18e289793 100644 --- a/sources/pyside2/tests/QtCore/thread_signals_test.py +++ b/sources/pyside2/tests/QtCore/thread_signals_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/tr_noop_test.py b/sources/pyside2/tests/QtCore/tr_noop_test.py index 1b322c7ba..42cf4a525 100644 --- a/sources/pyside2/tests/QtCore/tr_noop_test.py +++ b/sources/pyside2/tests/QtCore/tr_noop_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/translation_test.py b/sources/pyside2/tests/QtCore/translation_test.py index 991db3572..90eda0623 100644 --- a/sources/pyside2/tests/QtCore/translation_test.py +++ b/sources/pyside2/tests/QtCore/translation_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/unaryoperator_test.py b/sources/pyside2/tests/QtCore/unaryoperator_test.py index 0937d31a7..ea5813a5f 100644 --- a/sources/pyside2/tests/QtCore/unaryoperator_test.py +++ b/sources/pyside2/tests/QtCore/unaryoperator_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/unicode_test.py b/sources/pyside2/tests/QtCore/unicode_test.py index 445dc0be2..3326e2e0e 100644 --- a/sources/pyside2/tests/QtCore/unicode_test.py +++ b/sources/pyside2/tests/QtCore/unicode_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtCore/versioninfo_test.py b/sources/pyside2/tests/QtCore/versioninfo_test.py index 091ebb70e..0c3a3b174 100644 --- a/sources/pyside2/tests/QtCore/versioninfo_test.py +++ b/sources/pyside2/tests/QtCore/versioninfo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py b/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py index 79dfca29d..baef03f4c 100644 --- a/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py +++ b/sources/pyside2/tests/QtDataVisualization/datavisualization_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_1091.py b/sources/pyside2/tests/QtGui/bug_1091.py index ee988c562..28f7d9bea 100644 --- a/sources/pyside2/tests/QtGui/bug_1091.py +++ b/sources/pyside2/tests/QtGui/bug_1091.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_300_test.py b/sources/pyside2/tests/QtGui/bug_300_test.py index a8784c78f..c2c1bc9cb 100644 --- a/sources/pyside2/tests/QtGui/bug_300_test.py +++ b/sources/pyside2/tests/QtGui/bug_300_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_367.py b/sources/pyside2/tests/QtGui/bug_367.py index 53d582ba9..8f03d95ac 100644 --- a/sources/pyside2/tests/QtGui/bug_367.py +++ b/sources/pyside2/tests/QtGui/bug_367.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_480.py b/sources/pyside2/tests/QtGui/bug_480.py index 8a0fcf86b..506dbf53a 100644 --- a/sources/pyside2/tests/QtGui/bug_480.py +++ b/sources/pyside2/tests/QtGui/bug_480.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_606.py b/sources/pyside2/tests/QtGui/bug_606.py index e6b063e71..6f01b5797 100644 --- a/sources/pyside2/tests/QtGui/bug_606.py +++ b/sources/pyside2/tests/QtGui/bug_606.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_617.py b/sources/pyside2/tests/QtGui/bug_617.py index 41fd911fb..370d6469f 100644 --- a/sources/pyside2/tests/QtGui/bug_617.py +++ b/sources/pyside2/tests/QtGui/bug_617.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_652.py b/sources/pyside2/tests/QtGui/bug_652.py index 996a04726..92b2d5a82 100644 --- a/sources/pyside2/tests/QtGui/bug_652.py +++ b/sources/pyside2/tests/QtGui/bug_652.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_660.py b/sources/pyside2/tests/QtGui/bug_660.py index 63afdc909..a5fc5be91 100644 --- a/sources/pyside2/tests/QtGui/bug_660.py +++ b/sources/pyside2/tests/QtGui/bug_660.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_716.py b/sources/pyside2/tests/QtGui/bug_716.py index 9cc7984f3..f29739490 100644 --- a/sources/pyside2/tests/QtGui/bug_716.py +++ b/sources/pyside2/tests/QtGui/bug_716.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_740.py b/sources/pyside2/tests/QtGui/bug_740.py index 9dbd6fb25..5ea45e7f2 100644 --- a/sources/pyside2/tests/QtGui/bug_740.py +++ b/sources/pyside2/tests/QtGui/bug_740.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_743.py b/sources/pyside2/tests/QtGui/bug_743.py index 9e25af59a..75933ae21 100644 --- a/sources/pyside2/tests/QtGui/bug_743.py +++ b/sources/pyside2/tests/QtGui/bug_743.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_991.py b/sources/pyside2/tests/QtGui/bug_991.py index 2169d65cf..43af0832a 100644 --- a/sources/pyside2/tests/QtGui/bug_991.py +++ b/sources/pyside2/tests/QtGui/bug_991.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py b/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py index fed593a75..0946d70ed 100644 --- a/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py +++ b/sources/pyside2/tests/QtGui/bug_PYSIDE-344.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py b/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py index a60e068b9..128a6574b 100644 --- a/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py +++ b/sources/pyside2/tests/QtGui/bug_PYSIDE-41.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/deepcopy_test.py b/sources/pyside2/tests/QtGui/deepcopy_test.py index c14ebd9cb..b99912647 100644 --- a/sources/pyside2/tests/QtGui/deepcopy_test.py +++ b/sources/pyside2/tests/QtGui/deepcopy_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py b/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py index 2aba360be..ad2c043a0 100644 --- a/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py +++ b/sources/pyside2/tests/QtGui/float_to_int_implicit_conversion_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/pyside_reload_test.py b/sources/pyside2/tests/QtGui/pyside_reload_test.py index 68d9b9428..c3e8c218e 100644 --- a/sources/pyside2/tests/QtGui/pyside_reload_test.py +++ b/sources/pyside2/tests/QtGui/pyside_reload_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qcolor_reduce_test.py b/sources/pyside2/tests/QtGui/qcolor_reduce_test.py index e399385d7..7f904fd10 100644 --- a/sources/pyside2/tests/QtGui/qcolor_reduce_test.py +++ b/sources/pyside2/tests/QtGui/qcolor_reduce_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qcolor_test.py b/sources/pyside2/tests/QtGui/qcolor_test.py index e99b187e2..021e7c128 100644 --- a/sources/pyside2/tests/QtGui/qcolor_test.py +++ b/sources/pyside2/tests/QtGui/qcolor_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qcursor_test.py b/sources/pyside2/tests/QtGui/qcursor_test.py index afdf8f8d3..da41fa03a 100644 --- a/sources/pyside2/tests/QtGui/qcursor_test.py +++ b/sources/pyside2/tests/QtGui/qcursor_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py b/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py index 9c5bb9087..bc25be308 100644 --- a/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py +++ b/sources/pyside2/tests/QtGui/qdatastream_gui_operators_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qdesktopservices_test.py b/sources/pyside2/tests/QtGui/qdesktopservices_test.py index e85d94829..e3c26719c 100644 --- a/sources/pyside2/tests/QtGui/qdesktopservices_test.py +++ b/sources/pyside2/tests/QtGui/qdesktopservices_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qfontmetrics_test.py b/sources/pyside2/tests/QtGui/qfontmetrics_test.py index 3658bb07e..4390678bb 100644 --- a/sources/pyside2/tests/QtGui/qfontmetrics_test.py +++ b/sources/pyside2/tests/QtGui/qfontmetrics_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qicon_test.py b/sources/pyside2/tests/QtGui/qicon_test.py index 9b2717c71..3dab7c814 100644 --- a/sources/pyside2/tests/QtGui/qicon_test.py +++ b/sources/pyside2/tests/QtGui/qicon_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qitemselection_test.py b/sources/pyside2/tests/QtGui/qitemselection_test.py index b21d287b3..e77813db1 100644 --- a/sources/pyside2/tests/QtGui/qitemselection_test.py +++ b/sources/pyside2/tests/QtGui/qitemselection_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qkeysequence_test.py b/sources/pyside2/tests/QtGui/qkeysequence_test.py index 3c6707162..a1a0d11d5 100644 --- a/sources/pyside2/tests/QtGui/qkeysequence_test.py +++ b/sources/pyside2/tests/QtGui/qkeysequence_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qmatrix_test.py b/sources/pyside2/tests/QtGui/qmatrix_test.py index bbaea8ee0..cac8a7ab7 100644 --- a/sources/pyside2/tests/QtGui/qmatrix_test.py +++ b/sources/pyside2/tests/QtGui/qmatrix_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qopenglbuffer_test.py b/sources/pyside2/tests/QtGui/qopenglbuffer_test.py index 2dc743df6..eb11dc0b9 100644 --- a/sources/pyside2/tests/QtGui/qopenglbuffer_test.py +++ b/sources/pyside2/tests/QtGui/qopenglbuffer_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qopenglwindow_test.py b/sources/pyside2/tests/QtGui/qopenglwindow_test.py index 2d1ef813c..b20db90b6 100644 --- a/sources/pyside2/tests/QtGui/qopenglwindow_test.py +++ b/sources/pyside2/tests/QtGui/qopenglwindow_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpainter_test.py b/sources/pyside2/tests/QtGui/qpainter_test.py index d381bd8cd..77cea835f 100644 --- a/sources/pyside2/tests/QtGui/qpainter_test.py +++ b/sources/pyside2/tests/QtGui/qpainter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpdfwriter_test.py b/sources/pyside2/tests/QtGui/qpdfwriter_test.py index 7ae2381f9..da00ff0c9 100644 --- a/sources/pyside2/tests/QtGui/qpdfwriter_test.py +++ b/sources/pyside2/tests/QtGui/qpdfwriter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpixelformat_test.py b/sources/pyside2/tests/QtGui/qpixelformat_test.py index 5755eeecf..563f36cdf 100644 --- a/sources/pyside2/tests/QtGui/qpixelformat_test.py +++ b/sources/pyside2/tests/QtGui/qpixelformat_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpixmap_test.py b/sources/pyside2/tests/QtGui/qpixmap_test.py index 8106faf24..8f853a38a 100644 --- a/sources/pyside2/tests/QtGui/qpixmap_test.py +++ b/sources/pyside2/tests/QtGui/qpixmap_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpixmapcache_test.py b/sources/pyside2/tests/QtGui/qpixmapcache_test.py index 3e45dee59..7a2073b12 100644 --- a/sources/pyside2/tests/QtGui/qpixmapcache_test.py +++ b/sources/pyside2/tests/QtGui/qpixmapcache_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qpolygonf_test.py b/sources/pyside2/tests/QtGui/qpolygonf_test.py index 4768e3bc6..023af533d 100644 --- a/sources/pyside2/tests/QtGui/qpolygonf_test.py +++ b/sources/pyside2/tests/QtGui/qpolygonf_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qradialgradient_test.py b/sources/pyside2/tests/QtGui/qradialgradient_test.py index 5a885977d..c9f5bd8b0 100644 --- a/sources/pyside2/tests/QtGui/qradialgradient_test.py +++ b/sources/pyside2/tests/QtGui/qradialgradient_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qrasterwindow_test.py b/sources/pyside2/tests/QtGui/qrasterwindow_test.py index 202cca117..887982111 100644 --- a/sources/pyside2/tests/QtGui/qrasterwindow_test.py +++ b/sources/pyside2/tests/QtGui/qrasterwindow_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qregion_test.py b/sources/pyside2/tests/QtGui/qregion_test.py index 49780786d..3d5c17c36 100644 --- a/sources/pyside2/tests/QtGui/qregion_test.py +++ b/sources/pyside2/tests/QtGui/qregion_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qstylehints_test.py b/sources/pyside2/tests/QtGui/qstylehints_test.py index 462163077..1623bf746 100644 --- a/sources/pyside2/tests/QtGui/qstylehints_test.py +++ b/sources/pyside2/tests/QtGui/qstylehints_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py b/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py index 908480bff..ce5474b42 100644 --- a/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py +++ b/sources/pyside2/tests/QtGui/qtextdocument_undoredo_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py b/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py index 4706dccdf..c5166ca18 100644 --- a/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py +++ b/sources/pyside2/tests/QtGui/qtextdocumentwriter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtextline_test.py b/sources/pyside2/tests/QtGui/qtextline_test.py index c9c17c09a..b7d308889 100644 --- a/sources/pyside2/tests/QtGui/qtextline_test.py +++ b/sources/pyside2/tests/QtGui/qtextline_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/qtransform_test.py b/sources/pyside2/tests/QtGui/qtransform_test.py index b2d3a2394..f121868b0 100644 --- a/sources/pyside2/tests/QtGui/qtransform_test.py +++ b/sources/pyside2/tests/QtGui/qtransform_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/repr_test.py b/sources/pyside2/tests/QtGui/repr_test.py index 440f4d0d6..bcf276319 100644 --- a/sources/pyside2/tests/QtGui/repr_test.py +++ b/sources/pyside2/tests/QtGui/repr_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtGui/timed_app_test.py b/sources/pyside2/tests/QtGui/timed_app_test.py index 0e958f1b1..d35e595eb 100644 --- a/sources/pyside2/tests/QtGui/timed_app_test.py +++ b/sources/pyside2/tests/QtGui/timed_app_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtHelp/help_test.py b/sources/pyside2/tests/QtHelp/help_test.py index 825bfdc74..0acd9d7b9 100644 --- a/sources/pyside2/tests/QtHelp/help_test.py +++ b/sources/pyside2/tests/QtHelp/help_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtHelp/helpsearchengine_test.py b/sources/pyside2/tests/QtHelp/helpsearchengine_test.py index 221830555..0e2ace02e 100644 --- a/sources/pyside2/tests/QtHelp/helpsearchengine_test.py +++ b/sources/pyside2/tests/QtHelp/helpsearchengine_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtLocation/location.py b/sources/pyside2/tests/QtLocation/location.py index dc0fa8849..e3c2f546e 100644 --- a/sources/pyside2/tests/QtLocation/location.py +++ b/sources/pyside2/tests/QtLocation/location.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtMultimedia/audio_test.py b/sources/pyside2/tests/QtMultimedia/audio_test.py index bf4433fe7..78c254ff9 100644 --- a/sources/pyside2/tests/QtMultimedia/audio_test.py +++ b/sources/pyside2/tests/QtMultimedia/audio_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py b/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py index eb1a359c7..5e99c8ade 100644 --- a/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py +++ b/sources/pyside2/tests/QtMultimediaWidgets/qmultimediawidgets.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/accessManager_test.py b/sources/pyside2/tests/QtNetwork/accessManager_test.py index 8a101a839..6c452844e 100644 --- a/sources/pyside2/tests/QtNetwork/accessManager_test.py +++ b/sources/pyside2/tests/QtNetwork/accessManager_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/bug_1084.py b/sources/pyside2/tests/QtNetwork/bug_1084.py index 4a8a9c14f..b9dfd009a 100644 --- a/sources/pyside2/tests/QtNetwork/bug_1084.py +++ b/sources/pyside2/tests/QtNetwork/bug_1084.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/bug_446.py b/sources/pyside2/tests/QtNetwork/bug_446.py index 3542ee02e..da4e27d42 100644 --- a/sources/pyside2/tests/QtNetwork/bug_446.py +++ b/sources/pyside2/tests/QtNetwork/bug_446.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/qipv6address_test.py b/sources/pyside2/tests/QtNetwork/qipv6address_test.py index fce6896f5..04e6c3fc4 100644 --- a/sources/pyside2/tests/QtNetwork/qipv6address_test.py +++ b/sources/pyside2/tests/QtNetwork/qipv6address_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/tcpserver_test.py b/sources/pyside2/tests/QtNetwork/tcpserver_test.py index a97787706..afa332898 100644 --- a/sources/pyside2/tests/QtNetwork/tcpserver_test.py +++ b/sources/pyside2/tests/QtNetwork/tcpserver_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtNetwork/udpsocket_test.py b/sources/pyside2/tests/QtNetwork/udpsocket_test.py index 7caaab155..b20ef134a 100644 --- a/sources/pyside2/tests/QtNetwork/udpsocket_test.py +++ b/sources/pyside2/tests/QtNetwork/udpsocket_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py b/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py index 6109b5701..1ec033471 100644 --- a/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py +++ b/sources/pyside2/tests/QtOpenGL/qglbuffer_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtOpenGL/qglwidget_test.py b/sources/pyside2/tests/QtOpenGL/qglwidget_test.py index ae2d3259e..8779578bf 100644 --- a/sources/pyside2/tests/QtOpenGL/qglwidget_test.py +++ b/sources/pyside2/tests/QtOpenGL/qglwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtPositioning/positioning.py b/sources/pyside2/tests/QtPositioning/positioning.py index 13560e7b6..1b3e263ec 100644 --- a/sources/pyside2/tests/QtPositioning/positioning.py +++ b/sources/pyside2/tests/QtPositioning/positioning.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtPrintSupport/bug_500.py b/sources/pyside2/tests/QtPrintSupport/bug_500.py index c5bd11486..824a9c893 100644 --- a/sources/pyside2/tests/QtPrintSupport/bug_500.py +++ b/sources/pyside2/tests/QtPrintSupport/bug_500.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py b/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py index 0e142a1d8..1274973b4 100644 --- a/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py +++ b/sources/pyside2/tests/QtPrintSupport/returnquadruplesofnumbers_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_1029.py b/sources/pyside2/tests/QtQml/bug_1029.py index f9727685a..92734cb3b 100755 --- a/sources/pyside2/tests/QtQml/bug_1029.py +++ b/sources/pyside2/tests/QtQml/bug_1029.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_1029.qml b/sources/pyside2/tests/QtQml/bug_1029.qml index 2eb3e5651..000a7568b 100755 --- a/sources/pyside2/tests/QtQml/bug_1029.qml +++ b/sources/pyside2/tests/QtQml/bug_1029.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_451.py b/sources/pyside2/tests/QtQml/bug_451.py index 89dad1dd8..5a6df7ff2 100755 --- a/sources/pyside2/tests/QtQml/bug_451.py +++ b/sources/pyside2/tests/QtQml/bug_451.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_451.qml b/sources/pyside2/tests/QtQml/bug_451.qml index d5d2eaac5..71bf691b4 100755 --- a/sources/pyside2/tests/QtQml/bug_451.qml +++ b/sources/pyside2/tests/QtQml/bug_451.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_456.py b/sources/pyside2/tests/QtQml/bug_456.py index 2eb48133c..9c94e76a6 100755 --- a/sources/pyside2/tests/QtQml/bug_456.py +++ b/sources/pyside2/tests/QtQml/bug_456.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_456.qml b/sources/pyside2/tests/QtQml/bug_456.qml index 83037e761..9b1b8c03c 100755 --- a/sources/pyside2/tests/QtQml/bug_456.qml +++ b/sources/pyside2/tests/QtQml/bug_456.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_557.py b/sources/pyside2/tests/QtQml/bug_557.py index 090d3fbd6..bc18ba2a2 100755 --- a/sources/pyside2/tests/QtQml/bug_557.py +++ b/sources/pyside2/tests/QtQml/bug_557.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_726.py b/sources/pyside2/tests/QtQml/bug_726.py index e9b50b470..310153421 100755 --- a/sources/pyside2/tests/QtQml/bug_726.py +++ b/sources/pyside2/tests/QtQml/bug_726.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_726.qml b/sources/pyside2/tests/QtQml/bug_726.qml index e971866e1..79f960243 100755 --- a/sources/pyside2/tests/QtQml/bug_726.qml +++ b/sources/pyside2/tests/QtQml/bug_726.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_814.py b/sources/pyside2/tests/QtQml/bug_814.py index 141591e34..a03431b50 100755 --- a/sources/pyside2/tests/QtQml/bug_814.py +++ b/sources/pyside2/tests/QtQml/bug_814.py @@ -7,7 +7,7 @@ ## Copyright (C) 2011 Thomas Perl ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_814.qml b/sources/pyside2/tests/QtQml/bug_814.qml index 09ef9db70..411896770 100755 --- a/sources/pyside2/tests/QtQml/bug_814.qml +++ b/sources/pyside2/tests/QtQml/bug_814.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_825.py b/sources/pyside2/tests/QtQml/bug_825.py index 7f7cb74ea..fe67f64b9 100755 --- a/sources/pyside2/tests/QtQml/bug_825.py +++ b/sources/pyside2/tests/QtQml/bug_825.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_825.qml b/sources/pyside2/tests/QtQml/bug_825.qml index 2f1b905d9..6ae06d5b8 100755 --- a/sources/pyside2/tests/QtQml/bug_825.qml +++ b/sources/pyside2/tests/QtQml/bug_825.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_847.py b/sources/pyside2/tests/QtQml/bug_847.py index dc7e3866e..c38278537 100755 --- a/sources/pyside2/tests/QtQml/bug_847.py +++ b/sources/pyside2/tests/QtQml/bug_847.py @@ -7,7 +7,7 @@ ## Copyright (C) 2011 Thomas Perl ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_847.qml b/sources/pyside2/tests/QtQml/bug_847.qml index 93d8ee19c..3833b1637 100755 --- a/sources/pyside2/tests/QtQml/bug_847.qml +++ b/sources/pyside2/tests/QtQml/bug_847.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_915.py b/sources/pyside2/tests/QtQml/bug_915.py index c25ff9810..b0f231aee 100755 --- a/sources/pyside2/tests/QtQml/bug_915.py +++ b/sources/pyside2/tests/QtQml/bug_915.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_926.py b/sources/pyside2/tests/QtQml/bug_926.py index 95dffe272..6eef7b1a7 100755 --- a/sources/pyside2/tests/QtQml/bug_926.py +++ b/sources/pyside2/tests/QtQml/bug_926.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_926.qml b/sources/pyside2/tests/QtQml/bug_926.qml index 04518d48c..9217403a4 100755 --- a/sources/pyside2/tests/QtQml/bug_926.qml +++ b/sources/pyside2/tests/QtQml/bug_926.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_951.py b/sources/pyside2/tests/QtQml/bug_951.py index 230849b20..38cf597ef 100755 --- a/sources/pyside2/tests/QtQml/bug_951.py +++ b/sources/pyside2/tests/QtQml/bug_951.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_951.qml b/sources/pyside2/tests/QtQml/bug_951.qml index 58b22c0e4..8242223f9 100755 --- a/sources/pyside2/tests/QtQml/bug_951.qml +++ b/sources/pyside2/tests/QtQml/bug_951.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_995.py b/sources/pyside2/tests/QtQml/bug_995.py index 4fc27c80b..7363f0e1b 100755 --- a/sources/pyside2/tests/QtQml/bug_995.py +++ b/sources/pyside2/tests/QtQml/bug_995.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_995.qml b/sources/pyside2/tests/QtQml/bug_995.qml index fcc17be28..1369dcca6 100755 --- a/sources/pyside2/tests/QtQml/bug_995.qml +++ b/sources/pyside2/tests/QtQml/bug_995.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_997.py b/sources/pyside2/tests/QtQml/bug_997.py index 84ee326ab..45c777f8b 100755 --- a/sources/pyside2/tests/QtQml/bug_997.py +++ b/sources/pyside2/tests/QtQml/bug_997.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/bug_997.qml b/sources/pyside2/tests/QtQml/bug_997.qml index 823c3a862..7d2b7fcc0 100755 --- a/sources/pyside2/tests/QtQml/bug_997.qml +++ b/sources/pyside2/tests/QtQml/bug_997.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/connect_python_qml.py b/sources/pyside2/tests/QtQml/connect_python_qml.py index fccaf8d85..e2fedaa3e 100644 --- a/sources/pyside2/tests/QtQml/connect_python_qml.py +++ b/sources/pyside2/tests/QtQml/connect_python_qml.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/connect_python_qml.qml b/sources/pyside2/tests/QtQml/connect_python_qml.qml index a838c634e..249debf91 100755 --- a/sources/pyside2/tests/QtQml/connect_python_qml.qml +++ b/sources/pyside2/tests/QtQml/connect_python_qml.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/hw.qml b/sources/pyside2/tests/QtQml/hw.qml index 62d718698..8b086f31f 100755 --- a/sources/pyside2/tests/QtQml/hw.qml +++ b/sources/pyside2/tests/QtQml/hw.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/javascript_exceptions.py b/sources/pyside2/tests/QtQml/javascript_exceptions.py index 7a5331a15..3e22a91c7 100644 --- a/sources/pyside2/tests/QtQml/javascript_exceptions.py +++ b/sources/pyside2/tests/QtQml/javascript_exceptions.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/javascript_exceptions.qml b/sources/pyside2/tests/QtQml/javascript_exceptions.qml index 33c97f33a..91cc83ee4 100644 --- a/sources/pyside2/tests/QtQml/javascript_exceptions.qml +++ b/sources/pyside2/tests/QtQml/javascript_exceptions.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py index e280d7d2b..08806a4a4 100644 --- a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py +++ b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml index 13cd9de7d..212166a93 100644 --- a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml +++ b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml index 667490bc9..55dbe144a 100644 --- a/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml +++ b/sources/pyside2/tests/QtQml/qqmlincubator_incubateWhile_component.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qqmlnetwork_test.py b/sources/pyside2/tests/QtQml/qqmlnetwork_test.py index 4551bbe01..3e6d1c2aa 100755 --- a/sources/pyside2/tests/QtQml/qqmlnetwork_test.py +++ b/sources/pyside2/tests/QtQml/qqmlnetwork_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py index 23130b460..19b982c67 100644 --- a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py +++ b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml index a13c944a9..17d0cbdfe 100644 --- a/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml +++ b/sources/pyside2/tests/QtQml/qquickitem_grabToImage.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/qquickview_test.py b/sources/pyside2/tests/QtQml/qquickview_test.py index 7eb9af1a6..1b503fa7e 100755 --- a/sources/pyside2/tests/QtQml/qquickview_test.py +++ b/sources/pyside2/tests/QtQml/qquickview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/registertype.py b/sources/pyside2/tests/QtQml/registertype.py index 80fb48b60..5be65b7bd 100755 --- a/sources/pyside2/tests/QtQml/registertype.py +++ b/sources/pyside2/tests/QtQml/registertype.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/registertype.qml b/sources/pyside2/tests/QtQml/registertype.qml index 00b5fb774..c41226016 100755 --- a/sources/pyside2/tests/QtQml/registertype.qml +++ b/sources/pyside2/tests/QtQml/registertype.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/view.qml b/sources/pyside2/tests/QtQml/view.qml index 95cae6fca..dcc0076a0 100755 --- a/sources/pyside2/tests/QtQml/view.qml +++ b/sources/pyside2/tests/QtQml/view.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtQml/viewmodel.qml b/sources/pyside2/tests/QtQml/viewmodel.qml index f3c1f2f9c..61366a73e 100755 --- a/sources/pyside2/tests/QtQml/viewmodel.qml +++ b/sources/pyside2/tests/QtQml/viewmodel.qml @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/base_test.py b/sources/pyside2/tests/QtScript/base_test.py index 86bcc0ac6..4343a6d77 100644 --- a/sources/pyside2/tests/QtScript/base_test.py +++ b/sources/pyside2/tests/QtScript/base_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/bug_1022.py b/sources/pyside2/tests/QtScript/bug_1022.py index 7fcc6501b..d076b23aa 100644 --- a/sources/pyside2/tests/QtScript/bug_1022.py +++ b/sources/pyside2/tests/QtScript/bug_1022.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/engine_test.py b/sources/pyside2/tests/QtScript/engine_test.py index 3b13f12c0..2b228281c 100644 --- a/sources/pyside2/tests/QtScript/engine_test.py +++ b/sources/pyside2/tests/QtScript/engine_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/property_test.py b/sources/pyside2/tests/QtScript/property_test.py index ad6be1b89..a5c9f059b 100644 --- a/sources/pyside2/tests/QtScript/property_test.py +++ b/sources/pyside2/tests/QtScript/property_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScript/qscriptvalue_test.py b/sources/pyside2/tests/QtScript/qscriptvalue_test.py index fed013389..11a763cc4 100644 --- a/sources/pyside2/tests/QtScript/qscriptvalue_test.py +++ b/sources/pyside2/tests/QtScript/qscriptvalue_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtScriptTools/debugger_test.py b/sources/pyside2/tests/QtScriptTools/debugger_test.py index a987d88bf..bcb73c13f 100644 --- a/sources/pyside2/tests/QtScriptTools/debugger_test.py +++ b/sources/pyside2/tests/QtScriptTools/debugger_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSensors/sensors.py b/sources/pyside2/tests/QtSensors/sensors.py index ef1dfc50d..2f25adebb 100644 --- a/sources/pyside2/tests/QtSensors/sensors.py +++ b/sources/pyside2/tests/QtSensors/sensors.py @@ -5,7 +5,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSql/bug_1013.py b/sources/pyside2/tests/QtSql/bug_1013.py index c0005cee0..3b8fb5d09 100644 --- a/sources/pyside2/tests/QtSql/bug_1013.py +++ b/sources/pyside2/tests/QtSql/bug_1013.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py b/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py index 1db367ca2..5bb034aa0 100644 --- a/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py +++ b/sources/pyside2/tests/QtSql/qsqldatabaseandqueries_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSql/qvarianttype_test.py b/sources/pyside2/tests/QtSql/qvarianttype_test.py index d17180306..002b05069 100644 --- a/sources/pyside2/tests/QtSql/qvarianttype_test.py +++ b/sources/pyside2/tests/QtSql/qvarianttype_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSvg/qsvggenerator_test.py b/sources/pyside2/tests/QtSvg/qsvggenerator_test.py index 8ebcee142..2b3bed756 100644 --- a/sources/pyside2/tests/QtSvg/qsvggenerator_test.py +++ b/sources/pyside2/tests/QtSvg/qsvggenerator_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py b/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py index c33e777f6..ee276ae93 100644 --- a/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py +++ b/sources/pyside2/tests/QtSvg/qsvgrenderer_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtSvg/qsvgwidget_test.py b/sources/pyside2/tests/QtSvg/qsvgwidget_test.py index 1e0fd99c9..59cf35d63 100644 --- a/sources/pyside2/tests/QtSvg/qsvgwidget_test.py +++ b/sources/pyside2/tests/QtSvg/qsvgwidget_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/click_test.py b/sources/pyside2/tests/QtTest/click_test.py index f2f372e84..c03c42ddd 100644 --- a/sources/pyside2/tests/QtTest/click_test.py +++ b/sources/pyside2/tests/QtTest/click_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/eventfilter_test.py b/sources/pyside2/tests/QtTest/eventfilter_test.py index fb670608b..f69f85ac0 100644 --- a/sources/pyside2/tests/QtTest/eventfilter_test.py +++ b/sources/pyside2/tests/QtTest/eventfilter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/qvalidator_test.py b/sources/pyside2/tests/QtTest/qvalidator_test.py index 9bdd3e162..408f14f6e 100644 --- a/sources/pyside2/tests/QtTest/qvalidator_test.py +++ b/sources/pyside2/tests/QtTest/qvalidator_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTest/touchevent_test.py b/sources/pyside2/tests/QtTest/touchevent_test.py index edeee8d3b..1fa8adc60 100644 --- a/sources/pyside2/tests/QtTest/touchevent_test.py +++ b/sources/pyside2/tests/QtTest/touchevent_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py b/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py index 8cf263668..69ffed26b 100644 --- a/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py +++ b/sources/pyside2/tests/QtTextToSpeech/qtexttospeech_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_1060.py b/sources/pyside2/tests/QtUiTools/bug_1060.py index aa8035bbe..94c15b54d 100644 --- a/sources/pyside2/tests/QtUiTools/bug_1060.py +++ b/sources/pyside2/tests/QtUiTools/bug_1060.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_360.py b/sources/pyside2/tests/QtUiTools/bug_360.py index 102692f5f..345c4f95e 100644 --- a/sources/pyside2/tests/QtUiTools/bug_360.py +++ b/sources/pyside2/tests/QtUiTools/bug_360.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_376.py b/sources/pyside2/tests/QtUiTools/bug_376.py index 2d8df9fc4..f26177ab4 100644 --- a/sources/pyside2/tests/QtUiTools/bug_376.py +++ b/sources/pyside2/tests/QtUiTools/bug_376.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_392.py b/sources/pyside2/tests/QtUiTools/bug_392.py index 082fdf7b7..9e8648135 100644 --- a/sources/pyside2/tests/QtUiTools/bug_392.py +++ b/sources/pyside2/tests/QtUiTools/bug_392.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_426.py b/sources/pyside2/tests/QtUiTools/bug_426.py index 272683121..5b055a45f 100644 --- a/sources/pyside2/tests/QtUiTools/bug_426.py +++ b/sources/pyside2/tests/QtUiTools/bug_426.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_552.py b/sources/pyside2/tests/QtUiTools/bug_552.py index 077db7917..b9d4f750b 100644 --- a/sources/pyside2/tests/QtUiTools/bug_552.py +++ b/sources/pyside2/tests/QtUiTools/bug_552.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_797.py b/sources/pyside2/tests/QtUiTools/bug_797.py index 0ae63bc12..b1a0e5bb3 100644 --- a/sources/pyside2/tests/QtUiTools/bug_797.py +++ b/sources/pyside2/tests/QtUiTools/bug_797.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_909.py b/sources/pyside2/tests/QtUiTools/bug_909.py index 3af95121e..c4185e11f 100644 --- a/sources/pyside2/tests/QtUiTools/bug_909.py +++ b/sources/pyside2/tests/QtUiTools/bug_909.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_913.py b/sources/pyside2/tests/QtUiTools/bug_913.py index b2fc1aea1..9ace5bbef 100644 --- a/sources/pyside2/tests/QtUiTools/bug_913.py +++ b/sources/pyside2/tests/QtUiTools/bug_913.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_958.py b/sources/pyside2/tests/QtUiTools/bug_958.py index 954cc7aa5..503433405 100644 --- a/sources/pyside2/tests/QtUiTools/bug_958.py +++ b/sources/pyside2/tests/QtUiTools/bug_958.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/bug_965.py b/sources/pyside2/tests/QtUiTools/bug_965.py index ed464c70b..b0df5fc71 100644 --- a/sources/pyside2/tests/QtUiTools/bug_965.py +++ b/sources/pyside2/tests/QtUiTools/bug_965.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/ui_test.py b/sources/pyside2/tests/QtUiTools/ui_test.py index 3305fafdf..f84f9c3d1 100644 --- a/sources/pyside2/tests/QtUiTools/ui_test.py +++ b/sources/pyside2/tests/QtUiTools/ui_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtUiTools/uiloader_test.py b/sources/pyside2/tests/QtUiTools/uiloader_test.py index f6d43ee2e..c550b8020 100644 --- a/sources/pyside2/tests/QtUiTools/uiloader_test.py +++ b/sources/pyside2/tests/QtUiTools/uiloader_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt b/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt index e43fb5814..06a9e9cdf 100644 --- a/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt +++ b/sources/pyside2/tests/QtWebEngineCore/CMakeLists.txt @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py b/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py index dbc4dfc52..2a110742a 100644 --- a/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py +++ b/sources/pyside2/tests/QtWebEngineCore/web_engine_custom_scheme.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt b/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt index 84c7fec57..b4afb06d2 100644 --- a/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt +++ b/sources/pyside2/tests/QtWebEngineWidgets/CMakeLists.txt @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py b/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py index bcbe72390..a56d6d0f5 100644 --- a/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py +++ b/sources/pyside2/tests/QtWebEngineWidgets/pyside-474-qtwebengineview.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_448.py b/sources/pyside2/tests/QtWebKit/bug_448.py index e3ae0078b..c8341840a 100644 --- a/sources/pyside2/tests/QtWebKit/bug_448.py +++ b/sources/pyside2/tests/QtWebKit/bug_448.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_694.py b/sources/pyside2/tests/QtWebKit/bug_694.py index 3028f0e77..60fb37f84 100644 --- a/sources/pyside2/tests/QtWebKit/bug_694.py +++ b/sources/pyside2/tests/QtWebKit/bug_694.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_803.py b/sources/pyside2/tests/QtWebKit/bug_803.py index 01efebe3c..ea2b34ce2 100644 --- a/sources/pyside2/tests/QtWebKit/bug_803.py +++ b/sources/pyside2/tests/QtWebKit/bug_803.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_899.py b/sources/pyside2/tests/QtWebKit/bug_899.py index 9e017eb42..817aeb6d5 100644 --- a/sources/pyside2/tests/QtWebKit/bug_899.py +++ b/sources/pyside2/tests/QtWebKit/bug_899.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/bug_959.py b/sources/pyside2/tests/QtWebKit/bug_959.py index c4c61f416..2ebfdbe99 100644 --- a/sources/pyside2/tests/QtWebKit/bug_959.py +++ b/sources/pyside2/tests/QtWebKit/bug_959.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/qml_plugin_test.py b/sources/pyside2/tests/QtWebKit/qml_plugin_test.py index b18a7b24e..586185418 100644 --- a/sources/pyside2/tests/QtWebKit/qml_plugin_test.py +++ b/sources/pyside2/tests/QtWebKit/qml_plugin_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py b/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py index 3a85663f9..e98de7b87 100644 --- a/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py +++ b/sources/pyside2/tests/QtWebKit/qvariantlist_property_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py b/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py index 86de0192b..b49fe13dd 100644 --- a/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py +++ b/sources/pyside2/tests/QtWebKit/shouldInterruptjavascript_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/webframe_test.py b/sources/pyside2/tests/QtWebKit/webframe_test.py index 723b0214a..4aea6709a 100644 --- a/sources/pyside2/tests/QtWebKit/webframe_test.py +++ b/sources/pyside2/tests/QtWebKit/webframe_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/webpage_test.py b/sources/pyside2/tests/QtWebKit/webpage_test.py index bed7e642e..95cd307d5 100644 --- a/sources/pyside2/tests/QtWebKit/webpage_test.py +++ b/sources/pyside2/tests/QtWebKit/webpage_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWebKit/webview_test.py b/sources/pyside2/tests/QtWebKit/webview_test.py index f00a418ca..ce7a3a7bf 100644 --- a/sources/pyside2/tests/QtWebKit/webview_test.py +++ b/sources/pyside2/tests/QtWebKit/webview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/action_clear.py b/sources/pyside2/tests/QtWidgets/action_clear.py index eb51e42f2..e7bd882bc 100644 --- a/sources/pyside2/tests/QtWidgets/action_clear.py +++ b/sources/pyside2/tests/QtWidgets/action_clear.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/add_action_test.py b/sources/pyside2/tests/QtWidgets/add_action_test.py index 9210e736c..852bcc130 100644 --- a/sources/pyside2/tests/QtWidgets/add_action_test.py +++ b/sources/pyside2/tests/QtWidgets/add_action_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/api2_test.py b/sources/pyside2/tests/QtWidgets/api2_test.py index fc5cd5bd8..90ad4eb00 100644 --- a/sources/pyside2/tests/QtWidgets/api2_test.py +++ b/sources/pyside2/tests/QtWidgets/api2_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/application_test.py b/sources/pyside2/tests/QtWidgets/application_test.py index 8bd267ae7..bd0f94125 100644 --- a/sources/pyside2/tests/QtWidgets/application_test.py +++ b/sources/pyside2/tests/QtWidgets/application_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1002.py b/sources/pyside2/tests/QtWidgets/bug_1002.py index c36ad3eac..e4f5bf75d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1002.py +++ b/sources/pyside2/tests/QtWidgets/bug_1002.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1006.py b/sources/pyside2/tests/QtWidgets/bug_1006.py index 20f646bd0..49dc22cfd 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1006.py +++ b/sources/pyside2/tests/QtWidgets/bug_1006.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1048.py b/sources/pyside2/tests/QtWidgets/bug_1048.py index 2af612fde..2042a99c4 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1048.py +++ b/sources/pyside2/tests/QtWidgets/bug_1048.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_1077.py b/sources/pyside2/tests/QtWidgets/bug_1077.py index 36b3f1c43..7943e5550 100644 --- a/sources/pyside2/tests/QtWidgets/bug_1077.py +++ b/sources/pyside2/tests/QtWidgets/bug_1077.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_172.py b/sources/pyside2/tests/QtWidgets/bug_172.py index 3c408feb1..5b0822555 100644 --- a/sources/pyside2/tests/QtWidgets/bug_172.py +++ b/sources/pyside2/tests/QtWidgets/bug_172.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_243.py b/sources/pyside2/tests/QtWidgets/bug_243.py index b802fbe4b..7ce0a468e 100644 --- a/sources/pyside2/tests/QtWidgets/bug_243.py +++ b/sources/pyside2/tests/QtWidgets/bug_243.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_307.py b/sources/pyside2/tests/QtWidgets/bug_307.py index b2340d72e..4e5ecab45 100644 --- a/sources/pyside2/tests/QtWidgets/bug_307.py +++ b/sources/pyside2/tests/QtWidgets/bug_307.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_324.py b/sources/pyside2/tests/QtWidgets/bug_324.py index 4c3351248..fbaf43738 100644 --- a/sources/pyside2/tests/QtWidgets/bug_324.py +++ b/sources/pyside2/tests/QtWidgets/bug_324.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_338.py b/sources/pyside2/tests/QtWidgets/bug_338.py index 0b1923a3f..27957a032 100644 --- a/sources/pyside2/tests/QtWidgets/bug_338.py +++ b/sources/pyside2/tests/QtWidgets/bug_338.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_363.py b/sources/pyside2/tests/QtWidgets/bug_363.py index afb702ecf..642c719e7 100644 --- a/sources/pyside2/tests/QtWidgets/bug_363.py +++ b/sources/pyside2/tests/QtWidgets/bug_363.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_389.py b/sources/pyside2/tests/QtWidgets/bug_389.py index b9309443a..d29b6d523 100644 --- a/sources/pyside2/tests/QtWidgets/bug_389.py +++ b/sources/pyside2/tests/QtWidgets/bug_389.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_400.py b/sources/pyside2/tests/QtWidgets/bug_400.py index e552cb99a..64e0231d9 100644 --- a/sources/pyside2/tests/QtWidgets/bug_400.py +++ b/sources/pyside2/tests/QtWidgets/bug_400.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_416.py b/sources/pyside2/tests/QtWidgets/bug_416.py index b3406c34f..ea8a7c14d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_416.py +++ b/sources/pyside2/tests/QtWidgets/bug_416.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_429.py b/sources/pyside2/tests/QtWidgets/bug_429.py index 8a7cde84a..dea855f30 100644 --- a/sources/pyside2/tests/QtWidgets/bug_429.py +++ b/sources/pyside2/tests/QtWidgets/bug_429.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_430.py b/sources/pyside2/tests/QtWidgets/bug_430.py index 57ade02a9..89f6f795d 100644 --- a/sources/pyside2/tests/QtWidgets/bug_430.py +++ b/sources/pyside2/tests/QtWidgets/bug_430.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_433.py b/sources/pyside2/tests/QtWidgets/bug_433.py index 7c06b5d63..a214b2cce 100644 --- a/sources/pyside2/tests/QtWidgets/bug_433.py +++ b/sources/pyside2/tests/QtWidgets/bug_433.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_467.py b/sources/pyside2/tests/QtWidgets/bug_467.py index 2bd1884f9..0a207f1a7 100644 --- a/sources/pyside2/tests/QtWidgets/bug_467.py +++ b/sources/pyside2/tests/QtWidgets/bug_467.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_493.py b/sources/pyside2/tests/QtWidgets/bug_493.py index d05bafcbf..100959fbb 100644 --- a/sources/pyside2/tests/QtWidgets/bug_493.py +++ b/sources/pyside2/tests/QtWidgets/bug_493.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_512.py b/sources/pyside2/tests/QtWidgets/bug_512.py index 85dfe8c0c..4815c2d86 100644 --- a/sources/pyside2/tests/QtWidgets/bug_512.py +++ b/sources/pyside2/tests/QtWidgets/bug_512.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_525.py b/sources/pyside2/tests/QtWidgets/bug_525.py index 924a2d63c..842a4406f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_525.py +++ b/sources/pyside2/tests/QtWidgets/bug_525.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_546.py b/sources/pyside2/tests/QtWidgets/bug_546.py index 68a1f1381..a56406cc3 100644 --- a/sources/pyside2/tests/QtWidgets/bug_546.py +++ b/sources/pyside2/tests/QtWidgets/bug_546.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_547.py b/sources/pyside2/tests/QtWidgets/bug_547.py index 95d6f7325..ac2000716 100644 --- a/sources/pyside2/tests/QtWidgets/bug_547.py +++ b/sources/pyside2/tests/QtWidgets/bug_547.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_549.py b/sources/pyside2/tests/QtWidgets/bug_549.py index 0c2c86d05..0e2afc653 100644 --- a/sources/pyside2/tests/QtWidgets/bug_549.py +++ b/sources/pyside2/tests/QtWidgets/bug_549.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_569.py b/sources/pyside2/tests/QtWidgets/bug_569.py index fb2c55338..4e3d07c35 100644 --- a/sources/pyside2/tests/QtWidgets/bug_569.py +++ b/sources/pyside2/tests/QtWidgets/bug_569.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_575.py b/sources/pyside2/tests/QtWidgets/bug_575.py index 462bb054f..4996c6986 100644 --- a/sources/pyside2/tests/QtWidgets/bug_575.py +++ b/sources/pyside2/tests/QtWidgets/bug_575.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_576.py b/sources/pyside2/tests/QtWidgets/bug_576.py index ee1961ca7..b0b044499 100644 --- a/sources/pyside2/tests/QtWidgets/bug_576.py +++ b/sources/pyside2/tests/QtWidgets/bug_576.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_585.py b/sources/pyside2/tests/QtWidgets/bug_585.py index 393223ffb..1c5eb75f1 100644 --- a/sources/pyside2/tests/QtWidgets/bug_585.py +++ b/sources/pyside2/tests/QtWidgets/bug_585.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_589.py b/sources/pyside2/tests/QtWidgets/bug_589.py index 2a2e6d508..c75a12f7f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_589.py +++ b/sources/pyside2/tests/QtWidgets/bug_589.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_632.py b/sources/pyside2/tests/QtWidgets/bug_632.py index 3b3d1d002..e60416102 100644 --- a/sources/pyside2/tests/QtWidgets/bug_632.py +++ b/sources/pyside2/tests/QtWidgets/bug_632.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_635.py b/sources/pyside2/tests/QtWidgets/bug_635.py index 6dca6fc7d..59f27fa22 100644 --- a/sources/pyside2/tests/QtWidgets/bug_635.py +++ b/sources/pyside2/tests/QtWidgets/bug_635.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_640.py b/sources/pyside2/tests/QtWidgets/bug_640.py index 11df88286..9e63a1d7f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_640.py +++ b/sources/pyside2/tests/QtWidgets/bug_640.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_653.py b/sources/pyside2/tests/QtWidgets/bug_653.py index 9aafc62c7..e1b2ed416 100644 --- a/sources/pyside2/tests/QtWidgets/bug_653.py +++ b/sources/pyside2/tests/QtWidgets/bug_653.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_662.py b/sources/pyside2/tests/QtWidgets/bug_662.py index 32e42fce3..a5cc650c1 100644 --- a/sources/pyside2/tests/QtWidgets/bug_662.py +++ b/sources/pyside2/tests/QtWidgets/bug_662.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_667.py b/sources/pyside2/tests/QtWidgets/bug_667.py index d15239e8d..e2b472299 100644 --- a/sources/pyside2/tests/QtWidgets/bug_667.py +++ b/sources/pyside2/tests/QtWidgets/bug_667.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_668.py b/sources/pyside2/tests/QtWidgets/bug_668.py index 886205481..27c73c660 100644 --- a/sources/pyside2/tests/QtWidgets/bug_668.py +++ b/sources/pyside2/tests/QtWidgets/bug_668.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_674.py b/sources/pyside2/tests/QtWidgets/bug_674.py index a1320d01a..40fd19206 100644 --- a/sources/pyside2/tests/QtWidgets/bug_674.py +++ b/sources/pyside2/tests/QtWidgets/bug_674.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_675.py b/sources/pyside2/tests/QtWidgets/bug_675.py index d0680974c..93489064b 100644 --- a/sources/pyside2/tests/QtWidgets/bug_675.py +++ b/sources/pyside2/tests/QtWidgets/bug_675.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_688.py b/sources/pyside2/tests/QtWidgets/bug_688.py index a97e3c23c..716d88df3 100644 --- a/sources/pyside2/tests/QtWidgets/bug_688.py +++ b/sources/pyside2/tests/QtWidgets/bug_688.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_693.py b/sources/pyside2/tests/QtWidgets/bug_693.py index ecfbe5632..31b0262c4 100644 --- a/sources/pyside2/tests/QtWidgets/bug_693.py +++ b/sources/pyside2/tests/QtWidgets/bug_693.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_696.py b/sources/pyside2/tests/QtWidgets/bug_696.py index aa5894e3d..93703758e 100644 --- a/sources/pyside2/tests/QtWidgets/bug_696.py +++ b/sources/pyside2/tests/QtWidgets/bug_696.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_711.py b/sources/pyside2/tests/QtWidgets/bug_711.py index b2efad676..073d4e3c8 100644 --- a/sources/pyside2/tests/QtWidgets/bug_711.py +++ b/sources/pyside2/tests/QtWidgets/bug_711.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_714.py b/sources/pyside2/tests/QtWidgets/bug_714.py index 35d4f6d62..345207ff9 100644 --- a/sources/pyside2/tests/QtWidgets/bug_714.py +++ b/sources/pyside2/tests/QtWidgets/bug_714.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_722.py b/sources/pyside2/tests/QtWidgets/bug_722.py index b2d58a742..ddabd4ee8 100644 --- a/sources/pyside2/tests/QtWidgets/bug_722.py +++ b/sources/pyside2/tests/QtWidgets/bug_722.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_728.py b/sources/pyside2/tests/QtWidgets/bug_728.py index b051d11ee..59269d72c 100644 --- a/sources/pyside2/tests/QtWidgets/bug_728.py +++ b/sources/pyside2/tests/QtWidgets/bug_728.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_736.py b/sources/pyside2/tests/QtWidgets/bug_736.py index 25f69dde4..31ce80e57 100644 --- a/sources/pyside2/tests/QtWidgets/bug_736.py +++ b/sources/pyside2/tests/QtWidgets/bug_736.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_750.py b/sources/pyside2/tests/QtWidgets/bug_750.py index 7666e9c28..334f11e90 100644 --- a/sources/pyside2/tests/QtWidgets/bug_750.py +++ b/sources/pyside2/tests/QtWidgets/bug_750.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_778.py b/sources/pyside2/tests/QtWidgets/bug_778.py index fc6f13ad4..b03be3c92 100644 --- a/sources/pyside2/tests/QtWidgets/bug_778.py +++ b/sources/pyside2/tests/QtWidgets/bug_778.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_785.py b/sources/pyside2/tests/QtWidgets/bug_785.py index ae37f73ea..312b17996 100644 --- a/sources/pyside2/tests/QtWidgets/bug_785.py +++ b/sources/pyside2/tests/QtWidgets/bug_785.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_793.py b/sources/pyside2/tests/QtWidgets/bug_793.py index 90ddde90d..3d63cae2e 100644 --- a/sources/pyside2/tests/QtWidgets/bug_793.py +++ b/sources/pyside2/tests/QtWidgets/bug_793.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_811.py b/sources/pyside2/tests/QtWidgets/bug_811.py index dff0518f4..4715c1a97 100644 --- a/sources/pyside2/tests/QtWidgets/bug_811.py +++ b/sources/pyside2/tests/QtWidgets/bug_811.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_834.py b/sources/pyside2/tests/QtWidgets/bug_834.py index d20e3557f..129da321c 100644 --- a/sources/pyside2/tests/QtWidgets/bug_834.py +++ b/sources/pyside2/tests/QtWidgets/bug_834.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_836.py b/sources/pyside2/tests/QtWidgets/bug_836.py index 9ccfc7d9b..69e23e2dc 100644 --- a/sources/pyside2/tests/QtWidgets/bug_836.py +++ b/sources/pyside2/tests/QtWidgets/bug_836.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_844.py b/sources/pyside2/tests/QtWidgets/bug_844.py index 73b7f39ad..822863294 100644 --- a/sources/pyside2/tests/QtWidgets/bug_844.py +++ b/sources/pyside2/tests/QtWidgets/bug_844.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_854.py b/sources/pyside2/tests/QtWidgets/bug_854.py index a02537763..080faf3c5 100644 --- a/sources/pyside2/tests/QtWidgets/bug_854.py +++ b/sources/pyside2/tests/QtWidgets/bug_854.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_860.py b/sources/pyside2/tests/QtWidgets/bug_860.py index 3ee572d2d..6cacfb21f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_860.py +++ b/sources/pyside2/tests/QtWidgets/bug_860.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_862.py b/sources/pyside2/tests/QtWidgets/bug_862.py index 11d0fddd8..ac0325536 100644 --- a/sources/pyside2/tests/QtWidgets/bug_862.py +++ b/sources/pyside2/tests/QtWidgets/bug_862.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_871.py b/sources/pyside2/tests/QtWidgets/bug_871.py index e7631d44b..8905291ef 100644 --- a/sources/pyside2/tests/QtWidgets/bug_871.py +++ b/sources/pyside2/tests/QtWidgets/bug_871.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_879.py b/sources/pyside2/tests/QtWidgets/bug_879.py index 0aaeb6b8c..59eb979aa 100644 --- a/sources/pyside2/tests/QtWidgets/bug_879.py +++ b/sources/pyside2/tests/QtWidgets/bug_879.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_919.py b/sources/pyside2/tests/QtWidgets/bug_919.py index 4e9056900..d1cd460ec 100644 --- a/sources/pyside2/tests/QtWidgets/bug_919.py +++ b/sources/pyside2/tests/QtWidgets/bug_919.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_921.py b/sources/pyside2/tests/QtWidgets/bug_921.py index cd321a990..3e24129d8 100644 --- a/sources/pyside2/tests/QtWidgets/bug_921.py +++ b/sources/pyside2/tests/QtWidgets/bug_921.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_941.py b/sources/pyside2/tests/QtWidgets/bug_941.py index c26fc6f7d..562be9a3b 100644 --- a/sources/pyside2/tests/QtWidgets/bug_941.py +++ b/sources/pyside2/tests/QtWidgets/bug_941.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_964.py b/sources/pyside2/tests/QtWidgets/bug_964.py index e6dd21d1d..9c7af6c53 100644 --- a/sources/pyside2/tests/QtWidgets/bug_964.py +++ b/sources/pyside2/tests/QtWidgets/bug_964.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_967.py b/sources/pyside2/tests/QtWidgets/bug_967.py index d1ca281b3..643041100 100644 --- a/sources/pyside2/tests/QtWidgets/bug_967.py +++ b/sources/pyside2/tests/QtWidgets/bug_967.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_972.py b/sources/pyside2/tests/QtWidgets/bug_972.py index 7276687e2..adc472403 100644 --- a/sources/pyside2/tests/QtWidgets/bug_972.py +++ b/sources/pyside2/tests/QtWidgets/bug_972.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_979.py b/sources/pyside2/tests/QtWidgets/bug_979.py index 416f8bb1e..4bc0c966e 100644 --- a/sources/pyside2/tests/QtWidgets/bug_979.py +++ b/sources/pyside2/tests/QtWidgets/bug_979.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_988.py b/sources/pyside2/tests/QtWidgets/bug_988.py index 0093ca454..e74edac82 100644 --- a/sources/pyside2/tests/QtWidgets/bug_988.py +++ b/sources/pyside2/tests/QtWidgets/bug_988.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/bug_998.py b/sources/pyside2/tests/QtWidgets/bug_998.py index 788941d81..8e0c96e5f 100644 --- a/sources/pyside2/tests/QtWidgets/bug_998.py +++ b/sources/pyside2/tests/QtWidgets/bug_998.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/customproxywidget_test.py b/sources/pyside2/tests/QtWidgets/customproxywidget_test.py index e0009d6c0..183f33404 100644 --- a/sources/pyside2/tests/QtWidgets/customproxywidget_test.py +++ b/sources/pyside2/tests/QtWidgets/customproxywidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/event_filter_test.py b/sources/pyside2/tests/QtWidgets/event_filter_test.py index e5e42c881..30ba91ec4 100644 --- a/sources/pyside2/tests/QtWidgets/event_filter_test.py +++ b/sources/pyside2/tests/QtWidgets/event_filter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/grandparent_method_test.py b/sources/pyside2/tests/QtWidgets/grandparent_method_test.py index 0d8ee5d15..a4ad1f5e4 100644 --- a/sources/pyside2/tests/QtWidgets/grandparent_method_test.py +++ b/sources/pyside2/tests/QtWidgets/grandparent_method_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/hashabletype_test.py b/sources/pyside2/tests/QtWidgets/hashabletype_test.py index 59d34342e..c8ee3947d 100644 --- a/sources/pyside2/tests/QtWidgets/hashabletype_test.py +++ b/sources/pyside2/tests/QtWidgets/hashabletype_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/keep_reference_test.py b/sources/pyside2/tests/QtWidgets/keep_reference_test.py index 1180ecc19..094e4231c 100644 --- a/sources/pyside2/tests/QtWidgets/keep_reference_test.py +++ b/sources/pyside2/tests/QtWidgets/keep_reference_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/missing_symbols_test.py b/sources/pyside2/tests/QtWidgets/missing_symbols_test.py index a93153d20..de243c4b2 100644 --- a/sources/pyside2/tests/QtWidgets/missing_symbols_test.py +++ b/sources/pyside2/tests/QtWidgets/missing_symbols_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/paint_event_test.py b/sources/pyside2/tests/QtWidgets/paint_event_test.py index 859a2389c..6f1b75f2f 100644 --- a/sources/pyside2/tests/QtWidgets/paint_event_test.py +++ b/sources/pyside2/tests/QtWidgets/paint_event_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/parent_method_test.py b/sources/pyside2/tests/QtWidgets/parent_method_test.py index bd17e2b0a..65a8d713d 100644 --- a/sources/pyside2/tests/QtWidgets/parent_method_test.py +++ b/sources/pyside2/tests/QtWidgets/parent_method_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/python_properties_test.py b/sources/pyside2/tests/QtWidgets/python_properties_test.py index be5ba6a33..f5bcf5eb8 100644 --- a/sources/pyside2/tests/QtWidgets/python_properties_test.py +++ b/sources/pyside2/tests/QtWidgets/python_properties_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py b/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py index 893bf4d47..c253ee7d4 100644 --- a/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qabstracttextdocumentlayout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qaction_test.py b/sources/pyside2/tests/QtWidgets/qaction_test.py index e5837b2e8..7e391c5f7 100644 --- a/sources/pyside2/tests/QtWidgets/qaction_test.py +++ b/sources/pyside2/tests/QtWidgets/qaction_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapp_issue_585.py b/sources/pyside2/tests/QtWidgets/qapp_issue_585.py index fb50b4436..f124ee6a6 100644 --- a/sources/pyside2/tests/QtWidgets/qapp_issue_585.py +++ b/sources/pyside2/tests/QtWidgets/qapp_issue_585.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapp_test.py b/sources/pyside2/tests/QtWidgets/qapp_test.py index 6cf2dcb3e..0bd919318 100644 --- a/sources/pyside2/tests/QtWidgets/qapp_test.py +++ b/sources/pyside2/tests/QtWidgets/qapp_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py b/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py index 2c1d92a25..f74ced668 100644 --- a/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py +++ b/sources/pyside2/tests/QtWidgets/qapplication_exit_segfault_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py b/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py index 9b2fc3a6c..e79e303f0 100644 --- a/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py +++ b/sources/pyside2/tests/QtWidgets/qapplication_singleton_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qbrush_test.py b/sources/pyside2/tests/QtWidgets/qbrush_test.py index 6b28a6a49..7c49e9b86 100644 --- a/sources/pyside2/tests/QtWidgets/qbrush_test.py +++ b/sources/pyside2/tests/QtWidgets/qbrush_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qcolormap_test.py b/sources/pyside2/tests/QtWidgets/qcolormap_test.py index ed356a6f9..12c624c35 100644 --- a/sources/pyside2/tests/QtWidgets/qcolormap_test.py +++ b/sources/pyside2/tests/QtWidgets/qcolormap_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qdynamic_signal.py b/sources/pyside2/tests/QtWidgets/qdynamic_signal.py index d566dc4ed..b8ea7af3f 100644 --- a/sources/pyside2/tests/QtWidgets/qdynamic_signal.py +++ b/sources/pyside2/tests/QtWidgets/qdynamic_signal.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qfontdialog_test.py b/sources/pyside2/tests/QtWidgets/qfontdialog_test.py index 236d4151b..dd9980c90 100644 --- a/sources/pyside2/tests/QtWidgets/qfontdialog_test.py +++ b/sources/pyside2/tests/QtWidgets/qfontdialog_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qformlayout_test.py b/sources/pyside2/tests/QtWidgets/qformlayout_test.py index 049d4f010..f42a75cee 100644 --- a/sources/pyside2/tests/QtWidgets/qformlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qformlayout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py index 21064f2c2..7565fd99a 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsitem_isblocked_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py index 9e3774f2a..8e9931d42 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsitem_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py index 77a55549d..97a8bc5b6 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsobjectreimpl_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py index ce5718a16..0e5cd8bfe 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsproxywidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py b/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py index 02b79e584..07926d177 100644 --- a/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py +++ b/sources/pyside2/tests/QtWidgets/qgraphicsscene_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qimage_test.py b/sources/pyside2/tests/QtWidgets/qimage_test.py index 4beab84a0..07f59c8e0 100644 --- a/sources/pyside2/tests/QtWidgets/qimage_test.py +++ b/sources/pyside2/tests/QtWidgets/qimage_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py b/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py index 5088eff33..2f5dcec62 100644 --- a/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py +++ b/sources/pyside2/tests/QtWidgets/qinputdialog_get_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py b/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py index 6c76d7c42..cbfaf9c31 100644 --- a/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py +++ b/sources/pyside2/tests/QtWidgets/qkeysequenceedit_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlabel_test.py b/sources/pyside2/tests/QtWidgets/qlabel_test.py index 3f2ae78c6..2c5616001 100644 --- a/sources/pyside2/tests/QtWidgets/qlabel_test.py +++ b/sources/pyside2/tests/QtWidgets/qlabel_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of PySide2. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py b/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py index daf2caf2c..ece5626a3 100644 --- a/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py +++ b/sources/pyside2/tests/QtWidgets/qlayout_ref_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlayout_test.py b/sources/pyside2/tests/QtWidgets/qlayout_test.py index cb2f751d0..09b394a60 100644 --- a/sources/pyside2/tests/QtWidgets/qlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qlayout_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py b/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py index b7f101a5a..6da0a31b8 100644 --- a/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py +++ b/sources/pyside2/tests/QtWidgets/qlcdnumber_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlistwidget_test.py b/sources/pyside2/tests/QtWidgets/qlistwidget_test.py index 1c7430143..7e2d351bc 100644 --- a/sources/pyside2/tests/QtWidgets/qlistwidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qlistwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py b/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py index b3d03e841..1bee79863 100644 --- a/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py +++ b/sources/pyside2/tests/QtWidgets/qlistwidgetitem_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qmainwindow_test.py b/sources/pyside2/tests/QtWidgets/qmainwindow_test.py index 0361ed082..a6b4a05cc 100644 --- a/sources/pyside2/tests/QtWidgets/qmainwindow_test.py +++ b/sources/pyside2/tests/QtWidgets/qmainwindow_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qmenu_test.py b/sources/pyside2/tests/QtWidgets/qmenu_test.py index bff041b27..74a677938 100644 --- a/sources/pyside2/tests/QtWidgets/qmenu_test.py +++ b/sources/pyside2/tests/QtWidgets/qmenu_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qmenuadd_test.py b/sources/pyside2/tests/QtWidgets/qmenuadd_test.py index 7b97ed97e..916b15660 100644 --- a/sources/pyside2/tests/QtWidgets/qmenuadd_test.py +++ b/sources/pyside2/tests/QtWidgets/qmenuadd_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qobject_mi_test.py b/sources/pyside2/tests/QtWidgets/qobject_mi_test.py index 868e54e0c..4a7f8b35d 100644 --- a/sources/pyside2/tests/QtWidgets/qobject_mi_test.py +++ b/sources/pyside2/tests/QtWidgets/qobject_mi_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpen_test.py b/sources/pyside2/tests/QtWidgets/qpen_test.py index c0bb667b2..28efa731a 100644 --- a/sources/pyside2/tests/QtWidgets/qpen_test.py +++ b/sources/pyside2/tests/QtWidgets/qpen_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpicture_test.py b/sources/pyside2/tests/QtWidgets/qpicture_test.py index 5809be26c..b5ec577d2 100644 --- a/sources/pyside2/tests/QtWidgets/qpicture_test.py +++ b/sources/pyside2/tests/QtWidgets/qpicture_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py b/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py index ab26d25bc..d3748beb9 100644 --- a/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py +++ b/sources/pyside2/tests/QtWidgets/qpixmap_constructor.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qpushbutton_test.py b/sources/pyside2/tests/QtWidgets/qpushbutton_test.py index bc32eb428..c73d550fb 100644 --- a/sources/pyside2/tests/QtWidgets/qpushbutton_test.py +++ b/sources/pyside2/tests/QtWidgets/qpushbutton_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qshortcut_test.py b/sources/pyside2/tests/QtWidgets/qshortcut_test.py index 610c5fd2f..7faaf6f92 100644 --- a/sources/pyside2/tests/QtWidgets/qshortcut_test.py +++ b/sources/pyside2/tests/QtWidgets/qshortcut_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qsplitter_test.py b/sources/pyside2/tests/QtWidgets/qsplitter_test.py index bf06305d6..6a6824a1a 100644 --- a/sources/pyside2/tests/QtWidgets/qsplitter_test.py +++ b/sources/pyside2/tests/QtWidgets/qsplitter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py b/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py index 4c57227c1..7a34cf238 100644 --- a/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py +++ b/sources/pyside2/tests/QtWidgets/qstandarditemmodel_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py b/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py index 80d7bd241..6538607ff 100644 --- a/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py +++ b/sources/pyside2/tests/QtWidgets/qstring_qkeysequence_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qstyle_test.py b/sources/pyside2/tests/QtWidgets/qstyle_test.py index 0aae41d51..38b457a82 100644 --- a/sources/pyside2/tests/QtWidgets/qstyle_test.py +++ b/sources/pyside2/tests/QtWidgets/qstyle_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtableview_test.py b/sources/pyside2/tests/QtWidgets/qtableview_test.py index fb1d913e2..1f5b52cda 100644 --- a/sources/pyside2/tests/QtWidgets/qtableview_test.py +++ b/sources/pyside2/tests/QtWidgets/qtableview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtabwidget_test.py b/sources/pyside2/tests/QtWidgets/qtabwidget_test.py index 40c3d059a..b3ce46d90 100644 --- a/sources/pyside2/tests/QtWidgets/qtabwidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qtabwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py b/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py index 5e3cd894d..c3300fc77 100644 --- a/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py +++ b/sources/pyside2/tests/QtWidgets/qtabwidgetclear_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py b/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py index 6fe08ecf9..f6730a282 100644 --- a/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py +++ b/sources/pyside2/tests/QtWidgets/qtextedit_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtextedit_test.py b/sources/pyside2/tests/QtWidgets/qtextedit_test.py index ee3016506..34467ddae 100644 --- a/sources/pyside2/tests/QtWidgets/qtextedit_test.py +++ b/sources/pyside2/tests/QtWidgets/qtextedit_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtoolbar_test.py b/sources/pyside2/tests/QtWidgets/qtoolbar_test.py index f7c5cc052..24b36e09b 100644 --- a/sources/pyside2/tests/QtWidgets/qtoolbar_test.py +++ b/sources/pyside2/tests/QtWidgets/qtoolbar_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtoolbox_test.py b/sources/pyside2/tests/QtWidgets/qtoolbox_test.py index 13ed8ecdd..f41933c2e 100644 --- a/sources/pyside2/tests/QtWidgets/qtoolbox_test.py +++ b/sources/pyside2/tests/QtWidgets/qtoolbox_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtreeview_test.py b/sources/pyside2/tests/QtWidgets/qtreeview_test.py index 6d89d1a49..a344aeff8 100644 --- a/sources/pyside2/tests/QtWidgets/qtreeview_test.py +++ b/sources/pyside2/tests/QtWidgets/qtreeview_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qtreewidget_test.py b/sources/pyside2/tests/QtWidgets/qtreewidget_test.py index 84459b624..4afd0690d 100644 --- a/sources/pyside2/tests/QtWidgets/qtreewidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qtreewidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qvariant_test.py b/sources/pyside2/tests/QtWidgets/qvariant_test.py index ae6e7616c..a595f405b 100644 --- a/sources/pyside2/tests/QtWidgets/qvariant_test.py +++ b/sources/pyside2/tests/QtWidgets/qvariant_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py b/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py index d55dd80f3..7fb17f912 100644 --- a/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py +++ b/sources/pyside2/tests/QtWidgets/qwidget_setlayout_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/qwidget_test.py b/sources/pyside2/tests/QtWidgets/qwidget_test.py index 6153864db..1e8387d11 100644 --- a/sources/pyside2/tests/QtWidgets/qwidget_test.py +++ b/sources/pyside2/tests/QtWidgets/qwidget_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/reference_count_test.py b/sources/pyside2/tests/QtWidgets/reference_count_test.py index 91ab28579..836020ad9 100644 --- a/sources/pyside2/tests/QtWidgets/reference_count_test.py +++ b/sources/pyside2/tests/QtWidgets/reference_count_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/standardpixmap_test.py b/sources/pyside2/tests/QtWidgets/standardpixmap_test.py index 701745baf..57c697aa3 100644 --- a/sources/pyside2/tests/QtWidgets/standardpixmap_test.py +++ b/sources/pyside2/tests/QtWidgets/standardpixmap_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/test_module_template.py b/sources/pyside2/tests/QtWidgets/test_module_template.py index 5656f4d64..cc61fcf69 100644 --- a/sources/pyside2/tests/QtWidgets/test_module_template.py +++ b/sources/pyside2/tests/QtWidgets/test_module_template.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py b/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py index 749a8d3a5..8895e1980 100644 --- a/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py +++ b/sources/pyside2/tests/QtWidgets/virtual_protected_inheritance_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py b/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py index 83f1ab99d..756915d67 100644 --- a/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py +++ b/sources/pyside2/tests/QtWidgets/virtual_pure_override_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtWidgets/wrong_return_test.py b/sources/pyside2/tests/QtWidgets/wrong_return_test.py index d6c9fa7b6..f4f036cc9 100644 --- a/sources/pyside2/tests/QtWidgets/wrong_return_test.py +++ b/sources/pyside2/tests/QtWidgets/wrong_return_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtXml/qdomdocument_test.py b/sources/pyside2/tests/QtXml/qdomdocument_test.py index bd9fb671e..2af37b01a 100644 --- a/sources/pyside2/tests/QtXml/qdomdocument_test.py +++ b/sources/pyside2/tests/QtXml/qdomdocument_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py b/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py index 168c9b3b6..770495385 100644 --- a/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py +++ b/sources/pyside2/tests/QtXml/qxmlsimplereader_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/QtXmlPatterns/import_test.py b/sources/pyside2/tests/QtXmlPatterns/import_test.py index a2cee57be..26f740368 100644 --- a/sources/pyside2/tests/QtXmlPatterns/import_test.py +++ b/sources/pyside2/tests/QtXmlPatterns/import_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/mac/qmacstyle_test.py b/sources/pyside2/tests/mac/qmacstyle_test.py index 848582167..8db9fa279 100644 --- a/sources/pyside2/tests/mac/qmacstyle_test.py +++ b/sources/pyside2/tests/mac/qmacstyle_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/manually/bug_841.py b/sources/pyside2/tests/manually/bug_841.py index f54a8c924..6a3af9422 100644 --- a/sources/pyside2/tests/manually/bug_841.py +++ b/sources/pyside2/tests/manually/bug_841.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/all_modules_load_test.py b/sources/pyside2/tests/pysidetest/all_modules_load_test.py index 09c2f2407..e802685fb 100644 --- a/sources/pyside2/tests/pysidetest/all_modules_load_test.py +++ b/sources/pyside2/tests/pysidetest/all_modules_load_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/bug_1016.py b/sources/pyside2/tests/pysidetest/bug_1016.py index 6f976d2b9..c2b709333 100644 --- a/sources/pyside2/tests/pysidetest/bug_1016.py +++ b/sources/pyside2/tests/pysidetest/bug_1016.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/decoratedslot_test.py b/sources/pyside2/tests/pysidetest/decoratedslot_test.py index a6ab77fea..47878ed8c 100644 --- a/sources/pyside2/tests/pysidetest/decoratedslot_test.py +++ b/sources/pyside2/tests/pysidetest/decoratedslot_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py b/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py index 4f5aa4196..1d5a59178 100644 --- a/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py +++ b/sources/pyside2/tests/pysidetest/delegatecreateseditor_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/enum_test.py b/sources/pyside2/tests/pysidetest/enum_test.py index 6a44c94e9..428e087f0 100644 --- a/sources/pyside2/tests/pysidetest/enum_test.py +++ b/sources/pyside2/tests/pysidetest/enum_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/hiddenobject.cpp b/sources/pyside2/tests/pysidetest/hiddenobject.cpp index 7212dbb65..24ef290ea 100644 --- a/sources/pyside2/tests/pysidetest/hiddenobject.cpp +++ b/sources/pyside2/tests/pysidetest/hiddenobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/hiddenobject.h b/sources/pyside2/tests/pysidetest/hiddenobject.h index 0c7883818..ffa8d614a 100644 --- a/sources/pyside2/tests/pysidetest/hiddenobject.h +++ b/sources/pyside2/tests/pysidetest/hiddenobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py b/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py index 8a8ac6906..906d0ddb7 100644 --- a/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py +++ b/sources/pyside2/tests/pysidetest/homonymoussignalandmethod_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/list_signal_test.py b/sources/pyside2/tests/pysidetest/list_signal_test.py index d3286a851..a438f0c89 100644 --- a/sources/pyside2/tests/pysidetest/list_signal_test.py +++ b/sources/pyside2/tests/pysidetest/list_signal_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py b/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py index 113ac7b6d..44bb33be6 100644 --- a/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py +++ b/sources/pyside2/tests/pysidetest/mixin_signal_slots_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/modelview_test.py b/sources/pyside2/tests/pysidetest/modelview_test.py index d1b0b9182..a0f723c4a 100644 --- a/sources/pyside2/tests/pysidetest/modelview_test.py +++ b/sources/pyside2/tests/pysidetest/modelview_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py b/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py index b5d197197..960f675ea 100644 --- a/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py +++ b/sources/pyside2/tests/pysidetest/new_inherited_functions_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/notify_id.py b/sources/pyside2/tests/pysidetest/notify_id.py index 167240fea..d96e8d91f 100644 --- a/sources/pyside2/tests/pysidetest/notify_id.py +++ b/sources/pyside2/tests/pysidetest/notify_id.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/pysidetest_global.h b/sources/pyside2/tests/pysidetest/pysidetest_global.h index d41b3d68c..0077ade96 100644 --- a/sources/pyside2/tests/pysidetest/pysidetest_global.h +++ b/sources/pyside2/tests/pysidetest/pysidetest_global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py b/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py index 6295f4ff4..b38cff68b 100644 --- a/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py +++ b/sources/pyside2/tests/pysidetest/qapp_like_a_macro_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/qvariant_test.py b/sources/pyside2/tests/pysidetest/qvariant_test.py index 2c341a53f..ec8343a12 100644 --- a/sources/pyside2/tests/pysidetest/qvariant_test.py +++ b/sources/pyside2/tests/pysidetest/qvariant_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signal_slot_warning.py b/sources/pyside2/tests/pysidetest/signal_slot_warning.py index 90a4813e0..84ddc23de 100644 --- a/sources/pyside2/tests/pysidetest/signal_slot_warning.py +++ b/sources/pyside2/tests/pysidetest/signal_slot_warning.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signalandnamespace_test.py b/sources/pyside2/tests/pysidetest/signalandnamespace_test.py index 480910da0..9bb42ea40 100644 --- a/sources/pyside2/tests/pysidetest/signalandnamespace_test.py +++ b/sources/pyside2/tests/pysidetest/signalandnamespace_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py b/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py index 176ec9523..43b31f5c0 100644 --- a/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py +++ b/sources/pyside2/tests/pysidetest/signalemissionfrompython_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py b/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py index 260fefeaa..11951fb09 100644 --- a/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py +++ b/sources/pyside2/tests/pysidetest/signalwithdefaultvalue_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testobject.cpp b/sources/pyside2/tests/pysidetest/testobject.cpp index a7e69b1b8..03a7a965c 100644 --- a/sources/pyside2/tests/pysidetest/testobject.cpp +++ b/sources/pyside2/tests/pysidetest/testobject.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testobject.h b/sources/pyside2/tests/pysidetest/testobject.h index e9fa7d0d2..6cfb01101 100644 --- a/sources/pyside2/tests/pysidetest/testobject.h +++ b/sources/pyside2/tests/pysidetest/testobject.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testview.cpp b/sources/pyside2/tests/pysidetest/testview.cpp index d0efc3ca6..49e3730f5 100644 --- a/sources/pyside2/tests/pysidetest/testview.cpp +++ b/sources/pyside2/tests/pysidetest/testview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/testview.h b/sources/pyside2/tests/pysidetest/testview.h index 94a3666f2..66d0a94d9 100644 --- a/sources/pyside2/tests/pysidetest/testview.h +++ b/sources/pyside2/tests/pysidetest/testview.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/typedef_signal_test.py b/sources/pyside2/tests/pysidetest/typedef_signal_test.py index dd09e43b0..f7724b618 100644 --- a/sources/pyside2/tests/pysidetest/typedef_signal_test.py +++ b/sources/pyside2/tests/pysidetest/typedef_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/pysidetest/version_test.py b/sources/pyside2/tests/pysidetest/version_test.py index 9500b48bc..447fafdeb 100644 --- a/sources/pyside2/tests/pysidetest/version_test.py +++ b/sources/pyside2/tests/pysidetest/version_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/CMakeLists.txt b/sources/pyside2/tests/registry/CMakeLists.txt index 70214699d..210219cb2 100644 --- a/sources/pyside2/tests/registry/CMakeLists.txt +++ b/sources/pyside2/tests/registry/CMakeLists.txt @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/existence_test.py b/sources/pyside2/tests/registry/existence_test.py index 2f7bac383..ef2a9b804 100644 --- a/sources/pyside2/tests/registry/existence_test.py +++ b/sources/pyside2/tests/registry/existence_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py index 5ee547806..d49f08de1 100644 --- a/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_darwin_5_6_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py index 011b429a4..787ae0e80 100644 --- a/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_darwin_5_9_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py index 5e9119171..7c1188b21 100644 --- a/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_linux_5_6_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py index ec9569fc6..77ee0fdfa 100644 --- a/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_linux_5_9_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py b/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py index 108a5019e..dbf8e59c4 100644 --- a/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py +++ b/sources/pyside2/tests/registry/exists_win32_5_6_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py b/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py index 85fdd3568..08f7ca897 100644 --- a/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py +++ b/sources/pyside2/tests/registry/exists_win32_5_9_4_ci.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/init_platform.py b/sources/pyside2/tests/registry/init_platform.py index f9549d1fd..93f0d6e52 100644 --- a/sources/pyside2/tests/registry/init_platform.py +++ b/sources/pyside2/tests/registry/init_platform.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/signature_test.py b/sources/pyside2/tests/registry/signature_test.py index 08c3d2bf1..ae5b9381e 100644 --- a/sources/pyside2/tests/registry/signature_test.py +++ b/sources/pyside2/tests/registry/signature_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/registry/util.py b/sources/pyside2/tests/registry/util.py index fa4c56df5..b2a246473 100644 --- a/sources/pyside2/tests/registry/util.py +++ b/sources/pyside2/tests/registry/util.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/pyside2/tests/run_test.sh b/sources/pyside2/tests/run_test.sh index c714e307b..f059ac014 100755 --- a/sources/pyside2/tests/run_test.sh +++ b/sources/pyside2/tests/run_test.sh @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/args_dont_match_test.py b/sources/pyside2/tests/signals/args_dont_match_test.py index 40a6e8811..f50611ad6 100644 --- a/sources/pyside2/tests/signals/args_dont_match_test.py +++ b/sources/pyside2/tests/signals/args_dont_match_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_189.py b/sources/pyside2/tests/signals/bug_189.py index ae8aa6a44..51810b66c 100644 --- a/sources/pyside2/tests/signals/bug_189.py +++ b/sources/pyside2/tests/signals/bug_189.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_311.py b/sources/pyside2/tests/signals/bug_311.py index 4d19d4dfd..2f77bb973 100644 --- a/sources/pyside2/tests/signals/bug_311.py +++ b/sources/pyside2/tests/signals/bug_311.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_312.py b/sources/pyside2/tests/signals/bug_312.py index ad9185903..08019654c 100644 --- a/sources/pyside2/tests/signals/bug_312.py +++ b/sources/pyside2/tests/signals/bug_312.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_319.py b/sources/pyside2/tests/signals/bug_319.py index c3dd1184d..7210af072 100644 --- a/sources/pyside2/tests/signals/bug_319.py +++ b/sources/pyside2/tests/signals/bug_319.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/bug_79.py b/sources/pyside2/tests/signals/bug_79.py index f86a61d59..9eb783d77 100644 --- a/sources/pyside2/tests/signals/bug_79.py +++ b/sources/pyside2/tests/signals/bug_79.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/decorators_test.py b/sources/pyside2/tests/signals/decorators_test.py index 7e398eb76..e5a8be461 100644 --- a/sources/pyside2/tests/signals/decorators_test.py +++ b/sources/pyside2/tests/signals/decorators_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/disconnect_test.py b/sources/pyside2/tests/signals/disconnect_test.py index d72f3fcf0..79c33ed7a 100644 --- a/sources/pyside2/tests/signals/disconnect_test.py +++ b/sources/pyside2/tests/signals/disconnect_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/invalid_callback_test.py b/sources/pyside2/tests/signals/invalid_callback_test.py index 2b6a9edec..b3b301d67 100644 --- a/sources/pyside2/tests/signals/invalid_callback_test.py +++ b/sources/pyside2/tests/signals/invalid_callback_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/lambda_gui_test.py b/sources/pyside2/tests/signals/lambda_gui_test.py index 4c2471442..f6eb7b364 100644 --- a/sources/pyside2/tests/signals/lambda_gui_test.py +++ b/sources/pyside2/tests/signals/lambda_gui_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/lambda_test.py b/sources/pyside2/tests/signals/lambda_test.py index 031b3976d..c22674fcc 100644 --- a/sources/pyside2/tests/signals/lambda_test.py +++ b/sources/pyside2/tests/signals/lambda_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/leaking_signal_test.py b/sources/pyside2/tests/signals/leaking_signal_test.py index 0e1c8170f..f8ac041ba 100644 --- a/sources/pyside2/tests/signals/leaking_signal_test.py +++ b/sources/pyside2/tests/signals/leaking_signal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/multiple_connections_gui_test.py b/sources/pyside2/tests/signals/multiple_connections_gui_test.py index c175b257a..a80f6277c 100644 --- a/sources/pyside2/tests/signals/multiple_connections_gui_test.py +++ b/sources/pyside2/tests/signals/multiple_connections_gui_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/multiple_connections_test.py b/sources/pyside2/tests/signals/multiple_connections_test.py index 9d7556151..2ce780e4e 100644 --- a/sources/pyside2/tests/signals/multiple_connections_test.py +++ b/sources/pyside2/tests/signals/multiple_connections_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/pysignal_test.py b/sources/pyside2/tests/signals/pysignal_test.py index 897c8d064..a5f2d8c5e 100644 --- a/sources/pyside2/tests/signals/pysignal_test.py +++ b/sources/pyside2/tests/signals/pysignal_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/qobject_destroyed_test.py b/sources/pyside2/tests/signals/qobject_destroyed_test.py index e51681df2..87e78c22c 100644 --- a/sources/pyside2/tests/signals/qobject_destroyed_test.py +++ b/sources/pyside2/tests/signals/qobject_destroyed_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/qobject_receivers_test.py b/sources/pyside2/tests/signals/qobject_receivers_test.py index 602b16488..629fda5cf 100644 --- a/sources/pyside2/tests/signals/qobject_receivers_test.py +++ b/sources/pyside2/tests/signals/qobject_receivers_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/qobject_sender_test.py b/sources/pyside2/tests/signals/qobject_sender_test.py index a2e8ea743..432450bb8 100644 --- a/sources/pyside2/tests/signals/qobject_sender_test.py +++ b/sources/pyside2/tests/signals/qobject_sender_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref01_test.py b/sources/pyside2/tests/signals/ref01_test.py index 7e4abe360..e12dfc910 100644 --- a/sources/pyside2/tests/signals/ref01_test.py +++ b/sources/pyside2/tests/signals/ref01_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref02_test.py b/sources/pyside2/tests/signals/ref02_test.py index 1964888b8..5449d6afa 100644 --- a/sources/pyside2/tests/signals/ref02_test.py +++ b/sources/pyside2/tests/signals/ref02_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref03_test.py b/sources/pyside2/tests/signals/ref03_test.py index 260587b5b..da24da659 100644 --- a/sources/pyside2/tests/signals/ref03_test.py +++ b/sources/pyside2/tests/signals/ref03_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref04_test.py b/sources/pyside2/tests/signals/ref04_test.py index 9f3f283d2..033449cc7 100644 --- a/sources/pyside2/tests/signals/ref04_test.py +++ b/sources/pyside2/tests/signals/ref04_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref05_test.py b/sources/pyside2/tests/signals/ref05_test.py index 1435f7ff9..9bc299332 100644 --- a/sources/pyside2/tests/signals/ref05_test.py +++ b/sources/pyside2/tests/signals/ref05_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/ref06_test.py b/sources/pyside2/tests/signals/ref06_test.py index 645d507ec..a5b26b393 100644 --- a/sources/pyside2/tests/signals/ref06_test.py +++ b/sources/pyside2/tests/signals/ref06_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/segfault_proxyparent_test.py b/sources/pyside2/tests/signals/segfault_proxyparent_test.py index 27530aae7..758c7888f 100644 --- a/sources/pyside2/tests/signals/segfault_proxyparent_test.py +++ b/sources/pyside2/tests/signals/segfault_proxyparent_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/self_connect_test.py b/sources/pyside2/tests/signals/self_connect_test.py index ef47f20d2..ee84a75c5 100644 --- a/sources/pyside2/tests/signals/self_connect_test.py +++ b/sources/pyside2/tests/signals/self_connect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/short_circuit_test.py b/sources/pyside2/tests/signals/short_circuit_test.py index 00f4947bf..e181b6497 100644 --- a/sources/pyside2/tests/signals/short_circuit_test.py +++ b/sources/pyside2/tests/signals/short_circuit_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal2signal_connect_test.py b/sources/pyside2/tests/signals/signal2signal_connect_test.py index 6d8836846..4619a8694 100644 --- a/sources/pyside2/tests/signals/signal2signal_connect_test.py +++ b/sources/pyside2/tests/signals/signal2signal_connect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_autoconnect_test.py b/sources/pyside2/tests/signals/signal_autoconnect_test.py index b938e3327..9fe8f94d3 100644 --- a/sources/pyside2/tests/signals/signal_autoconnect_test.py +++ b/sources/pyside2/tests/signals/signal_autoconnect_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_connectiontype_support_test.py b/sources/pyside2/tests/signals/signal_connectiontype_support_test.py index e65beed2b..d8dee9454 100644 --- a/sources/pyside2/tests/signals/signal_connectiontype_support_test.py +++ b/sources/pyside2/tests/signals/signal_connectiontype_support_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_emission_gui_test.py b/sources/pyside2/tests/signals/signal_emission_gui_test.py index adc390e97..a357b1536 100644 --- a/sources/pyside2/tests/signals/signal_emission_gui_test.py +++ b/sources/pyside2/tests/signals/signal_emission_gui_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_emission_test.py b/sources/pyside2/tests/signals/signal_emission_test.py index 3e812a12f..d4f17700b 100644 --- a/sources/pyside2/tests/signals/signal_emission_test.py +++ b/sources/pyside2/tests/signals/signal_emission_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_func_test.py b/sources/pyside2/tests/signals/signal_func_test.py index 250c38600..37bb191fe 100644 --- a/sources/pyside2/tests/signals/signal_func_test.py +++ b/sources/pyside2/tests/signals/signal_func_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_manager_refcount_test.py b/sources/pyside2/tests/signals/signal_manager_refcount_test.py index 891b00516..ece9a3ce0 100644 --- a/sources/pyside2/tests/signals/signal_manager_refcount_test.py +++ b/sources/pyside2/tests/signals/signal_manager_refcount_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_number_limit_test.py b/sources/pyside2/tests/signals/signal_number_limit_test.py index bc9789276..ba1edac25 100644 --- a/sources/pyside2/tests/signals/signal_number_limit_test.py +++ b/sources/pyside2/tests/signals/signal_number_limit_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_object_test.py b/sources/pyside2/tests/signals/signal_object_test.py index 7b0e3d209..ab9522b13 100644 --- a/sources/pyside2/tests/signals/signal_object_test.py +++ b/sources/pyside2/tests/signals/signal_object_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_signature_test.py b/sources/pyside2/tests/signals/signal_signature_test.py index 8bc645d55..191f209a8 100644 --- a/sources/pyside2/tests/signals/signal_signature_test.py +++ b/sources/pyside2/tests/signals/signal_signature_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/signal_with_primitive_type_test.py b/sources/pyside2/tests/signals/signal_with_primitive_type_test.py index 7802fdb83..cc3f084d0 100644 --- a/sources/pyside2/tests/signals/signal_with_primitive_type_test.py +++ b/sources/pyside2/tests/signals/signal_with_primitive_type_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/slot_reference_count_test.py b/sources/pyside2/tests/signals/slot_reference_count_test.py index b03074645..e6bcda0e8 100644 --- a/sources/pyside2/tests/signals/slot_reference_count_test.py +++ b/sources/pyside2/tests/signals/slot_reference_count_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/signals/static_metaobject_test.py b/sources/pyside2/tests/signals/static_metaobject_test.py index 2df066254..b66610f38 100644 --- a/sources/pyside2/tests/signals/static_metaobject_test.py +++ b/sources/pyside2/tests/signals/static_metaobject_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/tools/list-class-hierarchy.py b/sources/pyside2/tests/tools/list-class-hierarchy.py index 41f16bf6f..b734ae69e 100755 --- a/sources/pyside2/tests/tools/list-class-hierarchy.py +++ b/sources/pyside2/tests/tools/list-class-hierarchy.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/color.py b/sources/pyside2/tests/util/color.py index 73c7827ca..37c2c86ef 100644 --- a/sources/pyside2/tests/util/color.py +++ b/sources/pyside2/tests/util/color.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/helper/__init__.py b/sources/pyside2/tests/util/helper/__init__.py index fa85d9ab4..084b3e710 100644 --- a/sources/pyside2/tests/util/helper/__init__.py +++ b/sources/pyside2/tests/util/helper/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/helper/docmodifier.py b/sources/pyside2/tests/util/helper/docmodifier.py index b87894348..5db344f62 100644 --- a/sources/pyside2/tests/util/helper/docmodifier.py +++ b/sources/pyside2/tests/util/helper/docmodifier.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/httpd.py b/sources/pyside2/tests/util/httpd.py index 896bb4388..4cf74a20d 100644 --- a/sources/pyside2/tests/util/httpd.py +++ b/sources/pyside2/tests/util/httpd.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/processtimer.py b/sources/pyside2/tests/util/processtimer.py index dfe16fbea..61a39dbf0 100644 --- a/sources/pyside2/tests/util/processtimer.py +++ b/sources/pyside2/tests/util/processtimer.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/py2xfunctions.py b/sources/pyside2/tests/util/py2xfunctions.py index d4693543e..11bc6826b 100644 --- a/sources/pyside2/tests/util/py2xfunctions.py +++ b/sources/pyside2/tests/util/py2xfunctions.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/py3kcompat.py b/sources/pyside2/tests/util/py3kcompat.py index 37df63092..b58181fff 100644 --- a/sources/pyside2/tests/util/py3kcompat.py +++ b/sources/pyside2/tests/util/py3kcompat.py @@ -4,7 +4,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/py3xfunctions.py b/sources/pyside2/tests/util/py3xfunctions.py index 7efbcffbe..2d84c4721 100644 --- a/sources/pyside2/tests/util/py3xfunctions.py +++ b/sources/pyside2/tests/util/py3xfunctions.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/pyqt_diff.py b/sources/pyside2/tests/util/pyqt_diff.py index ff33a1f46..bf755b1f7 100644 --- a/sources/pyside2/tests/util/pyqt_diff.py +++ b/sources/pyside2/tests/util/pyqt_diff.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/pyqtcheck.py b/sources/pyside2/tests/util/pyqtcheck.py index 672b306c8..d6cac920f 100644 --- a/sources/pyside2/tests/util/pyqtcheck.py +++ b/sources/pyside2/tests/util/pyqtcheck.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/rename_imports.sh b/sources/pyside2/tests/util/rename_imports.sh index fe204e3f7..64b1123ef 100755 --- a/sources/pyside2/tests/util/rename_imports.sh +++ b/sources/pyside2/tests/util/rename_imports.sh @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/pyside2/tests/util/test_processtimer.py b/sources/pyside2/tests/util/test_processtimer.py index 41f4712dc..ba3e99775 100644 --- a/sources/pyside2/tests/util/test_processtimer.py +++ b/sources/pyside2/tests/util/test_processtimer.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp b/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp index dfea8c2c4..8e1732be9 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp +++ b/sources/shiboken2/ApiExtractor/abstractmetabuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetabuilder.h b/sources/shiboken2/ApiExtractor/abstractmetabuilder.h index 696a94eda..bd1236375 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetabuilder.h +++ b/sources/shiboken2/ApiExtractor/abstractmetabuilder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h b/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h index 3c30571e2..7becb2c34 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h +++ b/sources/shiboken2/ApiExtractor/abstractmetabuilder_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetalang.cpp b/sources/shiboken2/ApiExtractor/abstractmetalang.cpp index e5b7c3ffe..ba33f78d9 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetalang.cpp +++ b/sources/shiboken2/ApiExtractor/abstractmetalang.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetalang.h b/sources/shiboken2/ApiExtractor/abstractmetalang.h index a85597d5e..c31c5a386 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetalang.h +++ b/sources/shiboken2/ApiExtractor/abstractmetalang.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h b/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h index 534347503..9ff11d44e 100644 --- a/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h +++ b/sources/shiboken2/ApiExtractor/abstractmetalang_typedefs.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/apiextractor.cpp b/sources/shiboken2/ApiExtractor/apiextractor.cpp index 258dcb4ba..4c4eaff6c 100644 --- a/sources/shiboken2/ApiExtractor/apiextractor.cpp +++ b/sources/shiboken2/ApiExtractor/apiextractor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/apiextractor.h b/sources/shiboken2/ApiExtractor/apiextractor.h index a4b6fddfc..702d3994c 100644 --- a/sources/shiboken2/ApiExtractor/apiextractor.h +++ b/sources/shiboken2/ApiExtractor/apiextractor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/apiextractormacros.h b/sources/shiboken2/ApiExtractor/apiextractormacros.h index 5ed706d5b..026cd5a9e 100644 --- a/sources/shiboken2/ApiExtractor/apiextractormacros.h +++ b/sources/shiboken2/ApiExtractor/apiextractormacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp index 7f309051c..a6b6f2af3 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h index e23f96740..2c4dd0e03 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangbuilder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp index aea1f4daa..d6915daab 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h index 55d01b813..2bbe526f7 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangdebugutils.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp index 144858684..ddafcdb04 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangparser.h b/sources/shiboken2/ApiExtractor/clangparser/clangparser.h index 13c30cb1a..36b9e0bd1 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangparser.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp b/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp index 0e568b533..2ff18b23b 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/clangutils.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/clangutils.h b/sources/shiboken2/ApiExtractor/clangparser/clangutils.h index 7898a85f0..98d0c9752 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/clangutils.h +++ b/sources/shiboken2/ApiExtractor/clangparser/clangutils.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp index 2793d2829..655454898 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp +++ b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h index 88e473998..68d09f6f5 100644 --- a/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h +++ b/sources/shiboken2/ApiExtractor/clangparser/compilersupport.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/dependency.h b/sources/shiboken2/ApiExtractor/dependency.h index 9ec941d92..97ae32df9 100644 --- a/sources/shiboken2/ApiExtractor/dependency.h +++ b/sources/shiboken2/ApiExtractor/dependency.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/docparser.cpp b/sources/shiboken2/ApiExtractor/docparser.cpp index cb2609db8..0cbae33eb 100644 --- a/sources/shiboken2/ApiExtractor/docparser.cpp +++ b/sources/shiboken2/ApiExtractor/docparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/docparser.h b/sources/shiboken2/ApiExtractor/docparser.h index 943bfa23b..fff71a877 100644 --- a/sources/shiboken2/ApiExtractor/docparser.h +++ b/sources/shiboken2/ApiExtractor/docparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/doxygenparser.cpp b/sources/shiboken2/ApiExtractor/doxygenparser.cpp index 50a54e568..dfdb37a47 100644 --- a/sources/shiboken2/ApiExtractor/doxygenparser.cpp +++ b/sources/shiboken2/ApiExtractor/doxygenparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/doxygenparser.h b/sources/shiboken2/ApiExtractor/doxygenparser.h index 5e790d324..ed3a7bf0d 100644 --- a/sources/shiboken2/ApiExtractor/doxygenparser.h +++ b/sources/shiboken2/ApiExtractor/doxygenparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/fileout.cpp b/sources/shiboken2/ApiExtractor/fileout.cpp index 156fa0d40..e3c96d57b 100644 --- a/sources/shiboken2/ApiExtractor/fileout.cpp +++ b/sources/shiboken2/ApiExtractor/fileout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/fileout.h b/sources/shiboken2/ApiExtractor/fileout.h index a86a1fba9..539ae7a43 100644 --- a/sources/shiboken2/ApiExtractor/fileout.h +++ b/sources/shiboken2/ApiExtractor/fileout.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/graph.cpp b/sources/shiboken2/ApiExtractor/graph.cpp index 1f898b1a0..65f33e373 100644 --- a/sources/shiboken2/ApiExtractor/graph.cpp +++ b/sources/shiboken2/ApiExtractor/graph.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/graph.h b/sources/shiboken2/ApiExtractor/graph.h index 183625b16..879ac97e4 100644 --- a/sources/shiboken2/ApiExtractor/graph.h +++ b/sources/shiboken2/ApiExtractor/graph.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/header_paths.h b/sources/shiboken2/ApiExtractor/header_paths.h index 702ede84f..4681f14de 100644 --- a/sources/shiboken2/ApiExtractor/header_paths.h +++ b/sources/shiboken2/ApiExtractor/header_paths.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/include.cpp b/sources/shiboken2/ApiExtractor/include.cpp index aa4f535f4..963999b9d 100644 --- a/sources/shiboken2/ApiExtractor/include.cpp +++ b/sources/shiboken2/ApiExtractor/include.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/include.h b/sources/shiboken2/ApiExtractor/include.h index c0fd0f872..16059876a 100644 --- a/sources/shiboken2/ApiExtractor/include.h +++ b/sources/shiboken2/ApiExtractor/include.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel.cpp b/sources/shiboken2/ApiExtractor/parser/codemodel.cpp index 7e148c191..a06f56434 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel.cpp +++ b/sources/shiboken2/ApiExtractor/parser/codemodel.cpp @@ -4,7 +4,7 @@ ** Copyright (C) 2002-2005 Roberto Raggi ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel.h b/sources/shiboken2/ApiExtractor/parser/codemodel.h index 990b3c14b..9a77c5f43 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel.h +++ b/sources/shiboken2/ApiExtractor/parser/codemodel.h @@ -4,7 +4,7 @@ ** Copyright (C) 2002-2005 Roberto Raggi ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h b/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h index e35d2e9a4..b8a10ba93 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h +++ b/sources/shiboken2/ApiExtractor/parser/codemodel_enums.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h b/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h index 2ec5f82ee..f67c64221 100644 --- a/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h +++ b/sources/shiboken2/ApiExtractor/parser/codemodel_fwd.h @@ -4,7 +4,7 @@ ** Copyright (C) 2002-2005 Roberto Raggi ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp b/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp index c0f8a1e4d..513bb3532 100644 --- a/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp +++ b/sources/shiboken2/ApiExtractor/parser/enumvalue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/parser/enumvalue.h b/sources/shiboken2/ApiExtractor/parser/enumvalue.h index 3fd80927c..4905e89ba 100644 --- a/sources/shiboken2/ApiExtractor/parser/enumvalue.h +++ b/sources/shiboken2/ApiExtractor/parser/enumvalue.h @@ -3,7 +3,7 @@ ** Copyright (C) 2018 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/qtdocparser.cpp b/sources/shiboken2/ApiExtractor/qtdocparser.cpp index 36985ba92..8917f801e 100644 --- a/sources/shiboken2/ApiExtractor/qtdocparser.cpp +++ b/sources/shiboken2/ApiExtractor/qtdocparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/qtdocparser.h b/sources/shiboken2/ApiExtractor/qtdocparser.h index 8fe1d7beb..3ea0122b4 100644 --- a/sources/shiboken2/ApiExtractor/qtdocparser.h +++ b/sources/shiboken2/ApiExtractor/qtdocparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/reporthandler.cpp b/sources/shiboken2/ApiExtractor/reporthandler.cpp index 320a98c60..36f725e30 100644 --- a/sources/shiboken2/ApiExtractor/reporthandler.cpp +++ b/sources/shiboken2/ApiExtractor/reporthandler.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/reporthandler.h b/sources/shiboken2/ApiExtractor/reporthandler.h index c51530077..c122f005d 100644 --- a/sources/shiboken2/ApiExtractor/reporthandler.h +++ b/sources/shiboken2/ApiExtractor/reporthandler.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp index 5f4ce5c9d..8a6b59285 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h index be2b0aa4e..cb0b6693e 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetaclass.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp index b1755820e..7f1361a7d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h index eeea22ace..b2aa7544f 100644 --- a/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h +++ b/sources/shiboken2/ApiExtractor/tests/testabstractmetatype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp b/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp index 37532799d..2a953243e 100644 --- a/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testaddfunction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testaddfunction.h b/sources/shiboken2/ApiExtractor/tests/testaddfunction.h index 26df04c01..d95f0ecfe 100644 --- a/sources/shiboken2/ApiExtractor/tests/testaddfunction.h +++ b/sources/shiboken2/ApiExtractor/tests/testaddfunction.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp b/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp index 8f391af44..a8b9a2eff 100644 --- a/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testarrayargument.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testarrayargument.h b/sources/shiboken2/ApiExtractor/tests/testarrayargument.h index 7dcbf374b..2e58ae6ee 100644 --- a/sources/shiboken2/ApiExtractor/tests/testarrayargument.h +++ b/sources/shiboken2/ApiExtractor/tests/testarrayargument.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp index d36708ec0..7bbde3bd4 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h index ba899b7d8..bd5e7ece1 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h +++ b/sources/shiboken2/ApiExtractor/tests/testcodeinjection.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp b/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp index b7279d910..2234fb4c3 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testcontainer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testcontainer.h b/sources/shiboken2/ApiExtractor/tests/testcontainer.h index b970aaf10..44e6636aa 100644 --- a/sources/shiboken2/ApiExtractor/tests/testcontainer.h +++ b/sources/shiboken2/ApiExtractor/tests/testcontainer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp index 2584db577..67865d3aa 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h index 138f884f2..b571a57a0 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h +++ b/sources/shiboken2/ApiExtractor/tests/testconversionoperator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp index 263ddc8d7..8c662d76b 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h index 8c610f090..894bd3d71 100644 --- a/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h +++ b/sources/shiboken2/ApiExtractor/tests/testconversionruletag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp b/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp index 7f803f69d..7718d3df6 100644 --- a/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testctorinformation.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testctorinformation.h b/sources/shiboken2/ApiExtractor/tests/testctorinformation.h index a2a29e0ae..ee655d450 100644 --- a/sources/shiboken2/ApiExtractor/tests/testctorinformation.h +++ b/sources/shiboken2/ApiExtractor/tests/testctorinformation.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp index b15bc5ac5..b46c23f56 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h index afdc0d655..3023a1120 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h +++ b/sources/shiboken2/ApiExtractor/tests/testdroptypeentries.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp index 316c7e7c5..f4204e9b9 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h index 82cfd1ee8..068ef4952 100644 --- a/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h +++ b/sources/shiboken2/ApiExtractor/tests/testdtorinformation.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testenum.cpp b/sources/shiboken2/ApiExtractor/tests/testenum.cpp index 44148cd28..87f2608a1 100644 --- a/sources/shiboken2/ApiExtractor/tests/testenum.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testenum.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testenum.h b/sources/shiboken2/ApiExtractor/tests/testenum.h index d59e5dff4..312551763 100644 --- a/sources/shiboken2/ApiExtractor/tests/testenum.h +++ b/sources/shiboken2/ApiExtractor/tests/testenum.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp b/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp index 82aa96db6..216101215 100644 --- a/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testextrainclude.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testextrainclude.h b/sources/shiboken2/ApiExtractor/tests/testextrainclude.h index cb0dee506..33c5377c7 100644 --- a/sources/shiboken2/ApiExtractor/tests/testextrainclude.h +++ b/sources/shiboken2/ApiExtractor/tests/testextrainclude.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp index c291d8211..b9aee5824 100644 --- a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h index c37871485..d68499cd9 100644 --- a/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h +++ b/sources/shiboken2/ApiExtractor/tests/testfunctiontag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp index 3aada8791..7b3616daa 100644 --- a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h index 7ba7924b8..da8ae4597 100644 --- a/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h +++ b/sources/shiboken2/ApiExtractor/tests/testimplicitconversions.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp index a16511032..766265def 100644 --- a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h index 941b00e4b..45a85493c 100644 --- a/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h +++ b/sources/shiboken2/ApiExtractor/tests/testinserttemplate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp index 74427448f..7911a5eb1 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h index f4b316ce1..6428a5697 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h +++ b/sources/shiboken2/ApiExtractor/tests/testmodifydocumentation.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp index 9eaefa6a5..d0a0c9c7a 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h index b8af43b3a..f116b5124 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h +++ b/sources/shiboken2/ApiExtractor/tests/testmodifyfunction.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp index 971143304..a4e506e8c 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h index 5fc83a597..5ee8a21ea 100644 --- a/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h +++ b/sources/shiboken2/ApiExtractor/tests/testmultipleinheritance.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp b/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp index 28de6607d..e3aad6b50 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testnamespace.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnamespace.h b/sources/shiboken2/ApiExtractor/tests/testnamespace.h index 469308c58..5153a28a3 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnamespace.h +++ b/sources/shiboken2/ApiExtractor/tests/testnamespace.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp index 2aa13c86f..10194eb34 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h index 9e512e7d7..a870511ff 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h +++ b/sources/shiboken2/ApiExtractor/tests/testnestedtypes.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp index 509229a37..4f0b0e10f 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h index d563da9d9..e4e051077 100644 --- a/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h +++ b/sources/shiboken2/ApiExtractor/tests/testnumericaltypedef.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp index a5960a2d8..e78f9f274 100644 --- a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h index 0b2ecb47a..ee5f5159f 100644 --- a/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h +++ b/sources/shiboken2/ApiExtractor/tests/testprimitivetypetag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp index ca2013343..11cda3317 100644 --- a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h index 523d9d371..4acbddcfc 100644 --- a/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h +++ b/sources/shiboken2/ApiExtractor/tests/testrefcounttag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp index 5b0d591de..c7b4abe9a 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h index edc47914e..0f717b55d 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h +++ b/sources/shiboken2/ApiExtractor/tests/testreferencetopointer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp b/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp index 4185b25cb..b586fd711 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testremovefield.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremovefield.h b/sources/shiboken2/ApiExtractor/tests/testremovefield.h index 49015b568..8b52cc32f 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremovefield.h +++ b/sources/shiboken2/ApiExtractor/tests/testremovefield.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp index 98cb1cdb4..96090d1cc 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h index cf3bda8a6..9e96dc2e9 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h +++ b/sources/shiboken2/ApiExtractor/tests/testremoveimplconv.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp index 1dd1a552b..a6d28ccf5 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h index bcf96d284..23c3e5144 100644 --- a/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h +++ b/sources/shiboken2/ApiExtractor/tests/testremoveoperatormethod.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp b/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp index 8228c7c56..2e5a5759a 100644 --- a/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testresolvetype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testresolvetype.h b/sources/shiboken2/ApiExtractor/tests/testresolvetype.h index df8a1ffaf..62c08bcd7 100644 --- a/sources/shiboken2/ApiExtractor/tests/testresolvetype.h +++ b/sources/shiboken2/ApiExtractor/tests/testresolvetype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp index ae030a1e7..2ea95595e 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h index 93b5c11f7..ba3b43cfb 100644 --- a/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h +++ b/sources/shiboken2/ApiExtractor/tests/testreverseoperators.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp b/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp index f1419e43a..ea506f3b5 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testtemplates.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtemplates.h b/sources/shiboken2/ApiExtractor/tests/testtemplates.h index 93f5cbf69..3e1565933 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtemplates.h +++ b/sources/shiboken2/ApiExtractor/tests/testtemplates.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp b/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp index 17fdd0b22..9d7729513 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testtoposort.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtoposort.h b/sources/shiboken2/ApiExtractor/tests/testtoposort.h index 2a662abaa..0770a8d0e 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtoposort.h +++ b/sources/shiboken2/ApiExtractor/tests/testtoposort.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp b/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp index 56c90e5c8..1ec7ce025 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testtyperevision.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testtyperevision.h b/sources/shiboken2/ApiExtractor/tests/testtyperevision.h index 17755e576..4dfa241e3 100644 --- a/sources/shiboken2/ApiExtractor/tests/testtyperevision.h +++ b/sources/shiboken2/ApiExtractor/tests/testtyperevision.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testutil.h b/sources/shiboken2/ApiExtractor/tests/testutil.h index dde92162d..3d2dd19ea 100644 --- a/sources/shiboken2/ApiExtractor/tests/testutil.h +++ b/sources/shiboken2/ApiExtractor/tests/testutil.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp index 7da3a7c1d..1850025d6 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h index 82c4a213d..244181707 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h +++ b/sources/shiboken2/ApiExtractor/tests/testvaluetypedefaultctortag.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp b/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp index 69c05e8bb..68681550f 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp +++ b/sources/shiboken2/ApiExtractor/tests/testvoidarg.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/tests/testvoidarg.h b/sources/shiboken2/ApiExtractor/tests/testvoidarg.h index 86e3996cf..44d90d075 100644 --- a/sources/shiboken2/ApiExtractor/tests/testvoidarg.h +++ b/sources/shiboken2/ApiExtractor/tests/testvoidarg.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typedatabase.cpp b/sources/shiboken2/ApiExtractor/typedatabase.cpp index 4f72624c0..9529de40a 100644 --- a/sources/shiboken2/ApiExtractor/typedatabase.cpp +++ b/sources/shiboken2/ApiExtractor/typedatabase.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typedatabase.h b/sources/shiboken2/ApiExtractor/typedatabase.h index c642be018..2e7b009c2 100644 --- a/sources/shiboken2/ApiExtractor/typedatabase.h +++ b/sources/shiboken2/ApiExtractor/typedatabase.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h b/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h index dc4835bc9..083602322 100644 --- a/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h +++ b/sources/shiboken2/ApiExtractor/typedatabase_typedefs.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typeparser.cpp b/sources/shiboken2/ApiExtractor/typeparser.cpp index 617bf2412..9ef4be346 100644 --- a/sources/shiboken2/ApiExtractor/typeparser.cpp +++ b/sources/shiboken2/ApiExtractor/typeparser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typeparser.h b/sources/shiboken2/ApiExtractor/typeparser.h index c25e01600..e51a2c21a 100644 --- a/sources/shiboken2/ApiExtractor/typeparser.h +++ b/sources/shiboken2/ApiExtractor/typeparser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem.cpp b/sources/shiboken2/ApiExtractor/typesystem.cpp index 349afffaf..52f05ce5b 100644 --- a/sources/shiboken2/ApiExtractor/typesystem.cpp +++ b/sources/shiboken2/ApiExtractor/typesystem.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem.h b/sources/shiboken2/ApiExtractor/typesystem.h index 248c16d9f..79e60cd75 100644 --- a/sources/shiboken2/ApiExtractor/typesystem.h +++ b/sources/shiboken2/ApiExtractor/typesystem.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem_enums.h b/sources/shiboken2/ApiExtractor/typesystem_enums.h index 40ff46d88..6bfc94368 100644 --- a/sources/shiboken2/ApiExtractor/typesystem_enums.h +++ b/sources/shiboken2/ApiExtractor/typesystem_enums.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem_p.h b/sources/shiboken2/ApiExtractor/typesystem_p.h index f2896684a..882cf3fab 100644 --- a/sources/shiboken2/ApiExtractor/typesystem_p.h +++ b/sources/shiboken2/ApiExtractor/typesystem_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/ApiExtractor/typesystem_typedefs.h b/sources/shiboken2/ApiExtractor/typesystem_typedefs.h index 16b448045..dc6e5cbcc 100644 --- a/sources/shiboken2/ApiExtractor/typesystem_typedefs.h +++ b/sources/shiboken2/ApiExtractor/typesystem_typedefs.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/generator.cpp b/sources/shiboken2/generator/generator.cpp index 82c51c757..ded504905 100644 --- a/sources/shiboken2/generator/generator.cpp +++ b/sources/shiboken2/generator/generator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/generator.h b/sources/shiboken2/generator/generator.h index c0dc92dea..e48f86f6f 100644 --- a/sources/shiboken2/generator/generator.h +++ b/sources/shiboken2/generator/generator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/main.cpp b/sources/shiboken2/generator/main.cpp index 9d3168754..69f59a1b4 100644 --- a/sources/shiboken2/generator/main.cpp +++ b/sources/shiboken2/generator/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp index b3b918088..98cdbf286 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h index f4db588f0..d68eb1ea5 100644 --- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.h +++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/cppgenerator.cpp b/sources/shiboken2/generator/shiboken2/cppgenerator.cpp index 5bb3323b4..d7c04d3c9 100644 --- a/sources/shiboken2/generator/shiboken2/cppgenerator.cpp +++ b/sources/shiboken2/generator/shiboken2/cppgenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/cppgenerator.h b/sources/shiboken2/generator/shiboken2/cppgenerator.h index be27a2a44..4dbd31828 100644 --- a/sources/shiboken2/generator/shiboken2/cppgenerator.h +++ b/sources/shiboken2/generator/shiboken2/cppgenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/headergenerator.cpp b/sources/shiboken2/generator/shiboken2/headergenerator.cpp index 38ceba0bd..8fde3cd31 100644 --- a/sources/shiboken2/generator/shiboken2/headergenerator.cpp +++ b/sources/shiboken2/generator/shiboken2/headergenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/headergenerator.h b/sources/shiboken2/generator/shiboken2/headergenerator.h index 3abc9d423..acf0448a7 100644 --- a/sources/shiboken2/generator/shiboken2/headergenerator.h +++ b/sources/shiboken2/generator/shiboken2/headergenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/overloaddata.cpp b/sources/shiboken2/generator/shiboken2/overloaddata.cpp index eff9dfdfc..73198ba12 100644 --- a/sources/shiboken2/generator/shiboken2/overloaddata.cpp +++ b/sources/shiboken2/generator/shiboken2/overloaddata.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/overloaddata.h b/sources/shiboken2/generator/shiboken2/overloaddata.h index a0246b9e6..435c19aa2 100644 --- a/sources/shiboken2/generator/shiboken2/overloaddata.h +++ b/sources/shiboken2/generator/shiboken2/overloaddata.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp b/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp index e57ce7cfc..b2734418c 100644 --- a/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp +++ b/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generator/shiboken2/shibokengenerator.h b/sources/shiboken2/generator/shiboken2/shibokengenerator.h index fc0a77898..d44f4aa66 100644 --- a/sources/shiboken2/generator/shiboken2/shibokengenerator.h +++ b/sources/shiboken2/generator/shiboken2/shibokengenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generatorrunnermacros.h b/sources/shiboken2/generatorrunnermacros.h index 1c6c6c50f..1f1119dfa 100644 --- a/sources/shiboken2/generatorrunnermacros.h +++ b/sources/shiboken2/generatorrunnermacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/generators/shiboken/shiboken.cpp b/sources/shiboken2/generators/shiboken/shiboken.cpp index 1abe65ac8..a047c15f1 100644 --- a/sources/shiboken2/generators/shiboken/shiboken.cpp +++ b/sources/shiboken2/generators/shiboken/shiboken.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/autodecref.h b/sources/shiboken2/libshiboken/autodecref.h index 4810ebd55..1f3f41eab 100644 --- a/sources/shiboken2/libshiboken/autodecref.h +++ b/sources/shiboken2/libshiboken/autodecref.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/basewrapper.cpp b/sources/shiboken2/libshiboken/basewrapper.cpp index 00def8369..21f6933d2 100644 --- a/sources/shiboken2/libshiboken/basewrapper.cpp +++ b/sources/shiboken2/libshiboken/basewrapper.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/basewrapper.h b/sources/shiboken2/libshiboken/basewrapper.h index 1ec846144..fc553cf8c 100644 --- a/sources/shiboken2/libshiboken/basewrapper.h +++ b/sources/shiboken2/libshiboken/basewrapper.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/basewrapper_p.h b/sources/shiboken2/libshiboken/basewrapper_p.h index 93ae62da8..ebd2648e7 100644 --- a/sources/shiboken2/libshiboken/basewrapper_p.h +++ b/sources/shiboken2/libshiboken/basewrapper_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/bindingmanager.cpp b/sources/shiboken2/libshiboken/bindingmanager.cpp index 20830f75a..de3458ab5 100644 --- a/sources/shiboken2/libshiboken/bindingmanager.cpp +++ b/sources/shiboken2/libshiboken/bindingmanager.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/bindingmanager.h b/sources/shiboken2/libshiboken/bindingmanager.h index dbfa23225..13a4d3a2e 100644 --- a/sources/shiboken2/libshiboken/bindingmanager.h +++ b/sources/shiboken2/libshiboken/bindingmanager.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/debugfreehook.cpp b/sources/shiboken2/libshiboken/debugfreehook.cpp index 57bc68b5f..c66866cf1 100644 --- a/sources/shiboken2/libshiboken/debugfreehook.cpp +++ b/sources/shiboken2/libshiboken/debugfreehook.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/debugfreehook.h b/sources/shiboken2/libshiboken/debugfreehook.h index b07fb7604..fdf98d5d3 100644 --- a/sources/shiboken2/libshiboken/debugfreehook.h +++ b/sources/shiboken2/libshiboken/debugfreehook.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/gilstate.cpp b/sources/shiboken2/libshiboken/gilstate.cpp index e2644520e..64a0b60f3 100644 --- a/sources/shiboken2/libshiboken/gilstate.cpp +++ b/sources/shiboken2/libshiboken/gilstate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/gilstate.h b/sources/shiboken2/libshiboken/gilstate.h index 394a67390..00b049802 100644 --- a/sources/shiboken2/libshiboken/gilstate.h +++ b/sources/shiboken2/libshiboken/gilstate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/helper.cpp b/sources/shiboken2/libshiboken/helper.cpp index 0a66e1ca9..472924723 100644 --- a/sources/shiboken2/libshiboken/helper.cpp +++ b/sources/shiboken2/libshiboken/helper.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/helper.h b/sources/shiboken2/libshiboken/helper.h index 19c07820a..b215142c7 100644 --- a/sources/shiboken2/libshiboken/helper.h +++ b/sources/shiboken2/libshiboken/helper.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/python25compat.h b/sources/shiboken2/libshiboken/python25compat.h index ca69c1c2f..42f78481d 100644 --- a/sources/shiboken2/libshiboken/python25compat.h +++ b/sources/shiboken2/libshiboken/python25compat.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/qapp_macro.cpp b/sources/shiboken2/libshiboken/qapp_macro.cpp index 63ca40f5b..e6a877a32 100644 --- a/sources/shiboken2/libshiboken/qapp_macro.cpp +++ b/sources/shiboken2/libshiboken/qapp_macro.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/qapp_macro.h b/sources/shiboken2/libshiboken/qapp_macro.h index ae92b87df..ded892383 100644 --- a/sources/shiboken2/libshiboken/qapp_macro.h +++ b/sources/shiboken2/libshiboken/qapp_macro.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkarrayconverter.cpp b/sources/shiboken2/libshiboken/sbkarrayconverter.cpp index bbd113b98..1646c9117 100644 --- a/sources/shiboken2/libshiboken/sbkarrayconverter.cpp +++ b/sources/shiboken2/libshiboken/sbkarrayconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkarrayconverter.h b/sources/shiboken2/libshiboken/sbkarrayconverter.h index aa3efd2f1..2b82b25b4 100644 --- a/sources/shiboken2/libshiboken/sbkarrayconverter.h +++ b/sources/shiboken2/libshiboken/sbkarrayconverter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkarrayconverter_p.h b/sources/shiboken2/libshiboken/sbkarrayconverter_p.h index a8c013915..a5e003e9a 100644 --- a/sources/shiboken2/libshiboken/sbkarrayconverter_p.h +++ b/sources/shiboken2/libshiboken/sbkarrayconverter_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkconverter.cpp b/sources/shiboken2/libshiboken/sbkconverter.cpp index 5b62a90f6..64884d601 100644 --- a/sources/shiboken2/libshiboken/sbkconverter.cpp +++ b/sources/shiboken2/libshiboken/sbkconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkconverter.h b/sources/shiboken2/libshiboken/sbkconverter.h index 686e7ac30..da71db5b5 100644 --- a/sources/shiboken2/libshiboken/sbkconverter.h +++ b/sources/shiboken2/libshiboken/sbkconverter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkconverter_p.h b/sources/shiboken2/libshiboken/sbkconverter_p.h index ea00e1cd5..f39608663 100644 --- a/sources/shiboken2/libshiboken/sbkconverter_p.h +++ b/sources/shiboken2/libshiboken/sbkconverter_p.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkdbg.h b/sources/shiboken2/libshiboken/sbkdbg.h index be95e0e2d..c26816bbd 100644 --- a/sources/shiboken2/libshiboken/sbkdbg.h +++ b/sources/shiboken2/libshiboken/sbkdbg.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkenum.cpp b/sources/shiboken2/libshiboken/sbkenum.cpp index 4aa69416c..37649f6fa 100644 --- a/sources/shiboken2/libshiboken/sbkenum.cpp +++ b/sources/shiboken2/libshiboken/sbkenum.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkenum.h b/sources/shiboken2/libshiboken/sbkenum.h index 365e9e2ae..4e4665423 100644 --- a/sources/shiboken2/libshiboken/sbkenum.h +++ b/sources/shiboken2/libshiboken/sbkenum.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkmodule.cpp b/sources/shiboken2/libshiboken/sbkmodule.cpp index 5a75477dd..a29ec38c7 100644 --- a/sources/shiboken2/libshiboken/sbkmodule.cpp +++ b/sources/shiboken2/libshiboken/sbkmodule.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkmodule.h b/sources/shiboken2/libshiboken/sbkmodule.h index 20c4bb78a..659c41c4d 100644 --- a/sources/shiboken2/libshiboken/sbkmodule.h +++ b/sources/shiboken2/libshiboken/sbkmodule.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp b/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp index e285e3ede..8bc680796 100644 --- a/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp +++ b/sources/shiboken2/libshiboken/sbknumpyarrayconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkpython.h b/sources/shiboken2/libshiboken/sbkpython.h index 6fd01ad81..57828f624 100644 --- a/sources/shiboken2/libshiboken/sbkpython.h +++ b/sources/shiboken2/libshiboken/sbkpython.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkstring.cpp b/sources/shiboken2/libshiboken/sbkstring.cpp index ccc86d7b8..58f58d286 100644 --- a/sources/shiboken2/libshiboken/sbkstring.cpp +++ b/sources/shiboken2/libshiboken/sbkstring.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkstring.h b/sources/shiboken2/libshiboken/sbkstring.h index a28e3ab57..d437f1c77 100644 --- a/sources/shiboken2/libshiboken/sbkstring.h +++ b/sources/shiboken2/libshiboken/sbkstring.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/sbkversion.h.in b/sources/shiboken2/libshiboken/sbkversion.h.in index 7327717a5..447376c1b 100644 --- a/sources/shiboken2/libshiboken/sbkversion.h.in +++ b/sources/shiboken2/libshiboken/sbkversion.h.in @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shiboken.h b/sources/shiboken2/libshiboken/shiboken.h index f6c65e8f4..1356670aa 100644 --- a/sources/shiboken2/libshiboken/shiboken.h +++ b/sources/shiboken2/libshiboken/shiboken.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shibokenbuffer.cpp b/sources/shiboken2/libshiboken/shibokenbuffer.cpp index 9a76e7385..2404aeb66 100644 --- a/sources/shiboken2/libshiboken/shibokenbuffer.cpp +++ b/sources/shiboken2/libshiboken/shibokenbuffer.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shibokenbuffer.h b/sources/shiboken2/libshiboken/shibokenbuffer.h index c26113ea8..04a5b6dd0 100644 --- a/sources/shiboken2/libshiboken/shibokenbuffer.h +++ b/sources/shiboken2/libshiboken/shibokenbuffer.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/shibokenmacros.h b/sources/shiboken2/libshiboken/shibokenmacros.h index 1d318d0cd..7bebd85e4 100644 --- a/sources/shiboken2/libshiboken/shibokenmacros.h +++ b/sources/shiboken2/libshiboken/shibokenmacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/signature.cpp b/sources/shiboken2/libshiboken/signature.cpp index 2bc137b50..b266784c0 100644 --- a/sources/shiboken2/libshiboken/signature.cpp +++ b/sources/shiboken2/libshiboken/signature.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/signature.h b/sources/shiboken2/libshiboken/signature.h index dca84398b..3a229cb5c 100644 --- a/sources/shiboken2/libshiboken/signature.h +++ b/sources/shiboken2/libshiboken/signature.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/threadstatesaver.cpp b/sources/shiboken2/libshiboken/threadstatesaver.cpp index 3dad0d3e1..517341617 100644 --- a/sources/shiboken2/libshiboken/threadstatesaver.cpp +++ b/sources/shiboken2/libshiboken/threadstatesaver.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/threadstatesaver.h b/sources/shiboken2/libshiboken/threadstatesaver.h index ce1eaf67a..e9f97f300 100644 --- a/sources/shiboken2/libshiboken/threadstatesaver.h +++ b/sources/shiboken2/libshiboken/threadstatesaver.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp index 2113cbc85..7c20b9b58 100644 --- a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp +++ b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h index eb801c21c..f139a491a 100644 --- a/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h +++ b/sources/shiboken2/libshiboken/tmp-referencetopython/sbkconverter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/voidptr.cpp b/sources/shiboken2/libshiboken/voidptr.cpp index 78a158227..790297595 100644 --- a/sources/shiboken2/libshiboken/voidptr.cpp +++ b/sources/shiboken2/libshiboken/voidptr.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/libshiboken/voidptr.h b/sources/shiboken2/libshiboken/voidptr.h index 0095c72e5..240895df8 100644 --- a/sources/shiboken2/libshiboken/voidptr.h +++ b/sources/shiboken2/libshiboken/voidptr.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the Qt for Python project. +** This file is part of Qt for Python. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage diff --git a/sources/shiboken2/shiboken_version.py b/sources/shiboken2/shiboken_version.py index 24b06e0b3..10cbd6956 100644 --- a/sources/shiboken2/shiboken_version.py +++ b/sources/shiboken2/shiboken_version.py @@ -3,7 +3,7 @@ ## Copyright (C) 2018 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the Qt for Python project. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/dumpcodemodel/main.cpp b/sources/shiboken2/tests/dumpcodemodel/main.cpp index 02ed09578..997e13511 100644 --- a/sources/shiboken2/tests/dumpcodemodel/main.cpp +++ b/sources/shiboken2/tests/dumpcodemodel/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/libminimalmacros.h b/sources/shiboken2/tests/libminimal/libminimalmacros.h index 8a00d665e..a9c417624 100644 --- a/sources/shiboken2/tests/libminimal/libminimalmacros.h +++ b/sources/shiboken2/tests/libminimal/libminimalmacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/listuser.cpp b/sources/shiboken2/tests/libminimal/listuser.cpp index 0d2e8bcea..4ce00f39c 100644 --- a/sources/shiboken2/tests/libminimal/listuser.cpp +++ b/sources/shiboken2/tests/libminimal/listuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/listuser.h b/sources/shiboken2/tests/libminimal/listuser.h index a1bf4388a..6c7e6aedd 100644 --- a/sources/shiboken2/tests/libminimal/listuser.h +++ b/sources/shiboken2/tests/libminimal/listuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/minbool.h b/sources/shiboken2/tests/libminimal/minbool.h index e0bc6c34a..72a2cbabe 100644 --- a/sources/shiboken2/tests/libminimal/minbool.h +++ b/sources/shiboken2/tests/libminimal/minbool.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/obj.cpp b/sources/shiboken2/tests/libminimal/obj.cpp index 98240496e..fd6e9f7d9 100644 --- a/sources/shiboken2/tests/libminimal/obj.cpp +++ b/sources/shiboken2/tests/libminimal/obj.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/obj.h b/sources/shiboken2/tests/libminimal/obj.h index 297d3792d..a5e20d496 100644 --- a/sources/shiboken2/tests/libminimal/obj.h +++ b/sources/shiboken2/tests/libminimal/obj.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/typedef.cpp b/sources/shiboken2/tests/libminimal/typedef.cpp index a9fe67cb3..e0886d982 100644 --- a/sources/shiboken2/tests/libminimal/typedef.cpp +++ b/sources/shiboken2/tests/libminimal/typedef.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/typedef.h b/sources/shiboken2/tests/libminimal/typedef.h index 49e020b75..8e3455652 100644 --- a/sources/shiboken2/tests/libminimal/typedef.h +++ b/sources/shiboken2/tests/libminimal/typedef.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libminimal/val.h b/sources/shiboken2/tests/libminimal/val.h index 4a6018f30..9af7ab70a 100644 --- a/sources/shiboken2/tests/libminimal/val.h +++ b/sources/shiboken2/tests/libminimal/val.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h b/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h index 02c184be7..e1bcf0961 100644 --- a/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h +++ b/sources/shiboken2/tests/libother/extendsnoimplicitconversion.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/libothermacros.h b/sources/shiboken2/tests/libother/libothermacros.h index 26f0c2ad0..757e9a304 100644 --- a/sources/shiboken2/tests/libother/libothermacros.h +++ b/sources/shiboken2/tests/libother/libothermacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/number.cpp b/sources/shiboken2/tests/libother/number.cpp index 1f5a0d77c..bc97de6a6 100644 --- a/sources/shiboken2/tests/libother/number.cpp +++ b/sources/shiboken2/tests/libother/number.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/number.h b/sources/shiboken2/tests/libother/number.h index 5a77ae2b4..222c6e1a6 100644 --- a/sources/shiboken2/tests/libother/number.h +++ b/sources/shiboken2/tests/libother/number.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherderived.cpp b/sources/shiboken2/tests/libother/otherderived.cpp index 5c3962107..5b1714f2a 100644 --- a/sources/shiboken2/tests/libother/otherderived.cpp +++ b/sources/shiboken2/tests/libother/otherderived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherderived.h b/sources/shiboken2/tests/libother/otherderived.h index b466deb5f..dfb219e1d 100644 --- a/sources/shiboken2/tests/libother/otherderived.h +++ b/sources/shiboken2/tests/libother/otherderived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/othermultiplederived.cpp b/sources/shiboken2/tests/libother/othermultiplederived.cpp index 2e4cafcd2..554df3c76 100644 --- a/sources/shiboken2/tests/libother/othermultiplederived.cpp +++ b/sources/shiboken2/tests/libother/othermultiplederived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/othermultiplederived.h b/sources/shiboken2/tests/libother/othermultiplederived.h index 411e8e1b2..84a426ac9 100644 --- a/sources/shiboken2/tests/libother/othermultiplederived.h +++ b/sources/shiboken2/tests/libother/othermultiplederived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherobjecttype.cpp b/sources/shiboken2/tests/libother/otherobjecttype.cpp index a15cf781c..ca356ce94 100644 --- a/sources/shiboken2/tests/libother/otherobjecttype.cpp +++ b/sources/shiboken2/tests/libother/otherobjecttype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libother/otherobjecttype.h b/sources/shiboken2/tests/libother/otherobjecttype.h index ae28d2de2..22687c8bd 100644 --- a/sources/shiboken2/tests/libother/otherobjecttype.h +++ b/sources/shiboken2/tests/libother/otherobjecttype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/abstract.cpp b/sources/shiboken2/tests/libsample/abstract.cpp index 839c9888c..c4900d0af 100644 --- a/sources/shiboken2/tests/libsample/abstract.cpp +++ b/sources/shiboken2/tests/libsample/abstract.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/abstract.h b/sources/shiboken2/tests/libsample/abstract.h index 71ffc8c1c..9e7cf5a29 100644 --- a/sources/shiboken2/tests/libsample/abstract.h +++ b/sources/shiboken2/tests/libsample/abstract.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/blackbox.cpp b/sources/shiboken2/tests/libsample/blackbox.cpp index b5fd2f6b9..f3dd57e97 100644 --- a/sources/shiboken2/tests/libsample/blackbox.cpp +++ b/sources/shiboken2/tests/libsample/blackbox.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/blackbox.h b/sources/shiboken2/tests/libsample/blackbox.h index c4f2983b1..629a217cc 100644 --- a/sources/shiboken2/tests/libsample/blackbox.h +++ b/sources/shiboken2/tests/libsample/blackbox.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bucket.cpp b/sources/shiboken2/tests/libsample/bucket.cpp index a559aa7c6..91e546d6e 100644 --- a/sources/shiboken2/tests/libsample/bucket.cpp +++ b/sources/shiboken2/tests/libsample/bucket.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bucket.h b/sources/shiboken2/tests/libsample/bucket.h index 8bbbb75db..09f933863 100644 --- a/sources/shiboken2/tests/libsample/bucket.h +++ b/sources/shiboken2/tests/libsample/bucket.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bytearray.cpp b/sources/shiboken2/tests/libsample/bytearray.cpp index 15370e2d1..021d2a079 100644 --- a/sources/shiboken2/tests/libsample/bytearray.cpp +++ b/sources/shiboken2/tests/libsample/bytearray.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/bytearray.h b/sources/shiboken2/tests/libsample/bytearray.h index 0d41f84b7..5dfb63fd5 100644 --- a/sources/shiboken2/tests/libsample/bytearray.h +++ b/sources/shiboken2/tests/libsample/bytearray.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/collector.cpp b/sources/shiboken2/tests/libsample/collector.cpp index c81c6dbd3..398f79918 100644 --- a/sources/shiboken2/tests/libsample/collector.cpp +++ b/sources/shiboken2/tests/libsample/collector.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/collector.h b/sources/shiboken2/tests/libsample/collector.h index d46632c96..6d51c624c 100644 --- a/sources/shiboken2/tests/libsample/collector.h +++ b/sources/shiboken2/tests/libsample/collector.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/complex.cpp b/sources/shiboken2/tests/libsample/complex.cpp index a95262913..a9b7f03c3 100644 --- a/sources/shiboken2/tests/libsample/complex.cpp +++ b/sources/shiboken2/tests/libsample/complex.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/complex.h b/sources/shiboken2/tests/libsample/complex.h index 23f99b005..d0f6c1408 100644 --- a/sources/shiboken2/tests/libsample/complex.h +++ b/sources/shiboken2/tests/libsample/complex.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/ctorconvrule.h b/sources/shiboken2/tests/libsample/ctorconvrule.h index cf760622b..ceab8d6dc 100644 --- a/sources/shiboken2/tests/libsample/ctorconvrule.h +++ b/sources/shiboken2/tests/libsample/ctorconvrule.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/cvlist.h b/sources/shiboken2/tests/libsample/cvlist.h index 744933abe..50ad8bfe8 100644 --- a/sources/shiboken2/tests/libsample/cvlist.h +++ b/sources/shiboken2/tests/libsample/cvlist.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/derived.cpp b/sources/shiboken2/tests/libsample/derived.cpp index 2e33b734e..4fa3e4081 100644 --- a/sources/shiboken2/tests/libsample/derived.cpp +++ b/sources/shiboken2/tests/libsample/derived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/derived.h b/sources/shiboken2/tests/libsample/derived.h index f3d845419..783a6dc50 100644 --- a/sources/shiboken2/tests/libsample/derived.h +++ b/sources/shiboken2/tests/libsample/derived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/echo.cpp b/sources/shiboken2/tests/libsample/echo.cpp index f2ed06756..55e2a461e 100644 --- a/sources/shiboken2/tests/libsample/echo.cpp +++ b/sources/shiboken2/tests/libsample/echo.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/echo.h b/sources/shiboken2/tests/libsample/echo.h index 3af5b14ca..3f645694a 100644 --- a/sources/shiboken2/tests/libsample/echo.h +++ b/sources/shiboken2/tests/libsample/echo.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/expression.cpp b/sources/shiboken2/tests/libsample/expression.cpp index ca678031b..a6051306e 100644 --- a/sources/shiboken2/tests/libsample/expression.cpp +++ b/sources/shiboken2/tests/libsample/expression.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/expression.h b/sources/shiboken2/tests/libsample/expression.h index 4ddfac22c..3add5572e 100644 --- a/sources/shiboken2/tests/libsample/expression.h +++ b/sources/shiboken2/tests/libsample/expression.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/filter.cpp b/sources/shiboken2/tests/libsample/filter.cpp index 589c6c49a..f862babd2 100644 --- a/sources/shiboken2/tests/libsample/filter.cpp +++ b/sources/shiboken2/tests/libsample/filter.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/filter.h b/sources/shiboken2/tests/libsample/filter.h index bc8b7fbeb..e318cba20 100644 --- a/sources/shiboken2/tests/libsample/filter.h +++ b/sources/shiboken2/tests/libsample/filter.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/functions.cpp b/sources/shiboken2/tests/libsample/functions.cpp index e2ea45dbc..5cc9a1c67 100644 --- a/sources/shiboken2/tests/libsample/functions.cpp +++ b/sources/shiboken2/tests/libsample/functions.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/functions.h b/sources/shiboken2/tests/libsample/functions.h index 1e1f41040..cad8b2a33 100644 --- a/sources/shiboken2/tests/libsample/functions.h +++ b/sources/shiboken2/tests/libsample/functions.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/handle.cpp b/sources/shiboken2/tests/libsample/handle.cpp index 3a3e1a980..643eac458 100644 --- a/sources/shiboken2/tests/libsample/handle.cpp +++ b/sources/shiboken2/tests/libsample/handle.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/handle.h b/sources/shiboken2/tests/libsample/handle.h index c171cc93e..400a0a3a6 100644 --- a/sources/shiboken2/tests/libsample/handle.h +++ b/sources/shiboken2/tests/libsample/handle.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/implicitconv.cpp b/sources/shiboken2/tests/libsample/implicitconv.cpp index c74120025..88af0d936 100644 --- a/sources/shiboken2/tests/libsample/implicitconv.cpp +++ b/sources/shiboken2/tests/libsample/implicitconv.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/implicitconv.h b/sources/shiboken2/tests/libsample/implicitconv.h index 36eb232ea..ea859a1a6 100644 --- a/sources/shiboken2/tests/libsample/implicitconv.h +++ b/sources/shiboken2/tests/libsample/implicitconv.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/injectcode.cpp b/sources/shiboken2/tests/libsample/injectcode.cpp index 52f210032..b1cf2d26b 100644 --- a/sources/shiboken2/tests/libsample/injectcode.cpp +++ b/sources/shiboken2/tests/libsample/injectcode.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/injectcode.h b/sources/shiboken2/tests/libsample/injectcode.h index ed99b8a09..927721f8f 100644 --- a/sources/shiboken2/tests/libsample/injectcode.h +++ b/sources/shiboken2/tests/libsample/injectcode.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/libsamplemacros.h b/sources/shiboken2/tests/libsample/libsamplemacros.h index 91b79f0ad..cda029ab7 100644 --- a/sources/shiboken2/tests/libsample/libsamplemacros.h +++ b/sources/shiboken2/tests/libsample/libsamplemacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/list.h b/sources/shiboken2/tests/libsample/list.h index 63241f851..f4970d947 100644 --- a/sources/shiboken2/tests/libsample/list.h +++ b/sources/shiboken2/tests/libsample/list.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/listuser.cpp b/sources/shiboken2/tests/libsample/listuser.cpp index 9e8a1c852..b50ce1e4c 100644 --- a/sources/shiboken2/tests/libsample/listuser.cpp +++ b/sources/shiboken2/tests/libsample/listuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/listuser.h b/sources/shiboken2/tests/libsample/listuser.h index d80b6e190..92360884f 100644 --- a/sources/shiboken2/tests/libsample/listuser.h +++ b/sources/shiboken2/tests/libsample/listuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/main.cpp b/sources/shiboken2/tests/libsample/main.cpp index c8b9615b1..336551ea2 100644 --- a/sources/shiboken2/tests/libsample/main.cpp +++ b/sources/shiboken2/tests/libsample/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/mapuser.cpp b/sources/shiboken2/tests/libsample/mapuser.cpp index e1527afe2..1dbd02d26 100644 --- a/sources/shiboken2/tests/libsample/mapuser.cpp +++ b/sources/shiboken2/tests/libsample/mapuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/mapuser.h b/sources/shiboken2/tests/libsample/mapuser.h index 680ef9f49..9677d2df2 100644 --- a/sources/shiboken2/tests/libsample/mapuser.h +++ b/sources/shiboken2/tests/libsample/mapuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modelindex.h b/sources/shiboken2/tests/libsample/modelindex.h index 11dec1605..dd3ddc089 100644 --- a/sources/shiboken2/tests/libsample/modelindex.h +++ b/sources/shiboken2/tests/libsample/modelindex.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modifications.cpp b/sources/shiboken2/tests/libsample/modifications.cpp index 0d3934bd5..98b22f09b 100644 --- a/sources/shiboken2/tests/libsample/modifications.cpp +++ b/sources/shiboken2/tests/libsample/modifications.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modifications.h b/sources/shiboken2/tests/libsample/modifications.h index 7baa48938..035ec844e 100644 --- a/sources/shiboken2/tests/libsample/modifications.h +++ b/sources/shiboken2/tests/libsample/modifications.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modified_constructor.cpp b/sources/shiboken2/tests/libsample/modified_constructor.cpp index cc07ae358..015cf4e80 100644 --- a/sources/shiboken2/tests/libsample/modified_constructor.cpp +++ b/sources/shiboken2/tests/libsample/modified_constructor.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/modified_constructor.h b/sources/shiboken2/tests/libsample/modified_constructor.h index 313d5b698..ccf23a1a3 100644 --- a/sources/shiboken2/tests/libsample/modified_constructor.h +++ b/sources/shiboken2/tests/libsample/modified_constructor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/multiple_derived.cpp b/sources/shiboken2/tests/libsample/multiple_derived.cpp index 335ae23f0..2c6a0b8bb 100644 --- a/sources/shiboken2/tests/libsample/multiple_derived.cpp +++ b/sources/shiboken2/tests/libsample/multiple_derived.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/multiple_derived.h b/sources/shiboken2/tests/libsample/multiple_derived.h index 37a5ec67e..b551eda74 100644 --- a/sources/shiboken2/tests/libsample/multiple_derived.h +++ b/sources/shiboken2/tests/libsample/multiple_derived.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/noimplicitconversion.h b/sources/shiboken2/tests/libsample/noimplicitconversion.h index 9df59f988..3173f4609 100644 --- a/sources/shiboken2/tests/libsample/noimplicitconversion.h +++ b/sources/shiboken2/tests/libsample/noimplicitconversion.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/nondefaultctor.h b/sources/shiboken2/tests/libsample/nondefaultctor.h index 2113d863c..bfdcbcf5b 100644 --- a/sources/shiboken2/tests/libsample/nondefaultctor.h +++ b/sources/shiboken2/tests/libsample/nondefaultctor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/null.h b/sources/shiboken2/tests/libsample/null.h index 08b95f0f0..ea34ff5a0 100644 --- a/sources/shiboken2/tests/libsample/null.h +++ b/sources/shiboken2/tests/libsample/null.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectmodel.cpp b/sources/shiboken2/tests/libsample/objectmodel.cpp index fd9f63589..c92fb2ec2 100644 --- a/sources/shiboken2/tests/libsample/objectmodel.cpp +++ b/sources/shiboken2/tests/libsample/objectmodel.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectmodel.h b/sources/shiboken2/tests/libsample/objectmodel.h index 77d5b57cd..e15ce06a4 100644 --- a/sources/shiboken2/tests/libsample/objectmodel.h +++ b/sources/shiboken2/tests/libsample/objectmodel.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttype.cpp b/sources/shiboken2/tests/libsample/objecttype.cpp index 19c5cab5b..e09a92f47 100644 --- a/sources/shiboken2/tests/libsample/objecttype.cpp +++ b/sources/shiboken2/tests/libsample/objecttype.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttype.h b/sources/shiboken2/tests/libsample/objecttype.h index b89e4a48c..9d659faa4 100644 --- a/sources/shiboken2/tests/libsample/objecttype.h +++ b/sources/shiboken2/tests/libsample/objecttype.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypebyvalue.h b/sources/shiboken2/tests/libsample/objecttypebyvalue.h index f19bc661d..64fa78c83 100644 --- a/sources/shiboken2/tests/libsample/objecttypebyvalue.h +++ b/sources/shiboken2/tests/libsample/objecttypebyvalue.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeholder.cpp b/sources/shiboken2/tests/libsample/objecttypeholder.cpp index cc4dd028a..ff2f14f12 100644 --- a/sources/shiboken2/tests/libsample/objecttypeholder.cpp +++ b/sources/shiboken2/tests/libsample/objecttypeholder.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeholder.h b/sources/shiboken2/tests/libsample/objecttypeholder.h index 715148d9d..ce13de74f 100644 --- a/sources/shiboken2/tests/libsample/objecttypeholder.h +++ b/sources/shiboken2/tests/libsample/objecttypeholder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypelayout.cpp b/sources/shiboken2/tests/libsample/objecttypelayout.cpp index 4593928ec..6f3d0eba9 100644 --- a/sources/shiboken2/tests/libsample/objecttypelayout.cpp +++ b/sources/shiboken2/tests/libsample/objecttypelayout.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypelayout.h b/sources/shiboken2/tests/libsample/objecttypelayout.h index c1bb9de04..eb099313c 100644 --- a/sources/shiboken2/tests/libsample/objecttypelayout.h +++ b/sources/shiboken2/tests/libsample/objecttypelayout.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeoperators.cpp b/sources/shiboken2/tests/libsample/objecttypeoperators.cpp index d89b6107d..dc5243f2e 100644 --- a/sources/shiboken2/tests/libsample/objecttypeoperators.cpp +++ b/sources/shiboken2/tests/libsample/objecttypeoperators.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objecttypeoperators.h b/sources/shiboken2/tests/libsample/objecttypeoperators.h index 285aeb7e7..6bb54d600 100644 --- a/sources/shiboken2/tests/libsample/objecttypeoperators.h +++ b/sources/shiboken2/tests/libsample/objecttypeoperators.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectview.cpp b/sources/shiboken2/tests/libsample/objectview.cpp index 8c617d431..d640c406e 100644 --- a/sources/shiboken2/tests/libsample/objectview.cpp +++ b/sources/shiboken2/tests/libsample/objectview.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/objectview.h b/sources/shiboken2/tests/libsample/objectview.h index 2ff7a56cc..6a54057e9 100644 --- a/sources/shiboken2/tests/libsample/objectview.h +++ b/sources/shiboken2/tests/libsample/objectview.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/oddbool.h b/sources/shiboken2/tests/libsample/oddbool.h index b52080f85..454c84157 100644 --- a/sources/shiboken2/tests/libsample/oddbool.h +++ b/sources/shiboken2/tests/libsample/oddbool.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/onlycopy.cpp b/sources/shiboken2/tests/libsample/onlycopy.cpp index b1717db6d..75bf23b5c 100644 --- a/sources/shiboken2/tests/libsample/onlycopy.cpp +++ b/sources/shiboken2/tests/libsample/onlycopy.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/onlycopy.h b/sources/shiboken2/tests/libsample/onlycopy.h index 0f61d8334..2c1b255fd 100644 --- a/sources/shiboken2/tests/libsample/onlycopy.h +++ b/sources/shiboken2/tests/libsample/onlycopy.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overload.cpp b/sources/shiboken2/tests/libsample/overload.cpp index 7b3d53db4..ebf19586e 100644 --- a/sources/shiboken2/tests/libsample/overload.cpp +++ b/sources/shiboken2/tests/libsample/overload.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overload.h b/sources/shiboken2/tests/libsample/overload.h index d546162b1..6d0165619 100644 --- a/sources/shiboken2/tests/libsample/overload.h +++ b/sources/shiboken2/tests/libsample/overload.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overloadsort.cpp b/sources/shiboken2/tests/libsample/overloadsort.cpp index 3c9cb5e42..bad0cdf52 100644 --- a/sources/shiboken2/tests/libsample/overloadsort.cpp +++ b/sources/shiboken2/tests/libsample/overloadsort.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/overloadsort.h b/sources/shiboken2/tests/libsample/overloadsort.h index 65eb8744d..024f229a5 100644 --- a/sources/shiboken2/tests/libsample/overloadsort.h +++ b/sources/shiboken2/tests/libsample/overloadsort.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pairuser.cpp b/sources/shiboken2/tests/libsample/pairuser.cpp index 5fafd733e..661988445 100644 --- a/sources/shiboken2/tests/libsample/pairuser.cpp +++ b/sources/shiboken2/tests/libsample/pairuser.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pairuser.h b/sources/shiboken2/tests/libsample/pairuser.h index 429661f14..37219f724 100644 --- a/sources/shiboken2/tests/libsample/pairuser.h +++ b/sources/shiboken2/tests/libsample/pairuser.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pen.cpp b/sources/shiboken2/tests/libsample/pen.cpp index 31734134f..d30071f49 100644 --- a/sources/shiboken2/tests/libsample/pen.cpp +++ b/sources/shiboken2/tests/libsample/pen.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pen.h b/sources/shiboken2/tests/libsample/pen.h index ca31cc973..ca079198b 100644 --- a/sources/shiboken2/tests/libsample/pen.h +++ b/sources/shiboken2/tests/libsample/pen.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/photon.cpp b/sources/shiboken2/tests/libsample/photon.cpp index 7c44cbe41..e61fd5969 100644 --- a/sources/shiboken2/tests/libsample/photon.cpp +++ b/sources/shiboken2/tests/libsample/photon.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/photon.h b/sources/shiboken2/tests/libsample/photon.h index db05d5ce0..2a32d511a 100644 --- a/sources/shiboken2/tests/libsample/photon.h +++ b/sources/shiboken2/tests/libsample/photon.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/point.cpp b/sources/shiboken2/tests/libsample/point.cpp index 6142c19c9..75e015e07 100644 --- a/sources/shiboken2/tests/libsample/point.cpp +++ b/sources/shiboken2/tests/libsample/point.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/point.h b/sources/shiboken2/tests/libsample/point.h index 4371cf9fd..579bcd515 100644 --- a/sources/shiboken2/tests/libsample/point.h +++ b/sources/shiboken2/tests/libsample/point.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pointerholder.h b/sources/shiboken2/tests/libsample/pointerholder.h index 9ad21a01f..b872ceb5c 100644 --- a/sources/shiboken2/tests/libsample/pointerholder.h +++ b/sources/shiboken2/tests/libsample/pointerholder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pointf.cpp b/sources/shiboken2/tests/libsample/pointf.cpp index e897da0d1..fadf3e591 100644 --- a/sources/shiboken2/tests/libsample/pointf.cpp +++ b/sources/shiboken2/tests/libsample/pointf.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/pointf.h b/sources/shiboken2/tests/libsample/pointf.h index c7e6a1535..f90125c8a 100644 --- a/sources/shiboken2/tests/libsample/pointf.h +++ b/sources/shiboken2/tests/libsample/pointf.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/polygon.cpp b/sources/shiboken2/tests/libsample/polygon.cpp index 6a8638f7f..fc0526db2 100644 --- a/sources/shiboken2/tests/libsample/polygon.cpp +++ b/sources/shiboken2/tests/libsample/polygon.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/polygon.h b/sources/shiboken2/tests/libsample/polygon.h index 17d559bbb..3eafa3094 100644 --- a/sources/shiboken2/tests/libsample/polygon.h +++ b/sources/shiboken2/tests/libsample/polygon.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/privatector.h b/sources/shiboken2/tests/libsample/privatector.h index 5476f49a2..f168fdacd 100644 --- a/sources/shiboken2/tests/libsample/privatector.h +++ b/sources/shiboken2/tests/libsample/privatector.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/privatedtor.h b/sources/shiboken2/tests/libsample/privatedtor.h index 3906fba81..64b8652f6 100644 --- a/sources/shiboken2/tests/libsample/privatedtor.h +++ b/sources/shiboken2/tests/libsample/privatedtor.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/protected.cpp b/sources/shiboken2/tests/libsample/protected.cpp index 91eeb9ab8..b0f3f1cdc 100644 --- a/sources/shiboken2/tests/libsample/protected.cpp +++ b/sources/shiboken2/tests/libsample/protected.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/protected.h b/sources/shiboken2/tests/libsample/protected.h index 4b12974f5..6cdc66e2b 100644 --- a/sources/shiboken2/tests/libsample/protected.h +++ b/sources/shiboken2/tests/libsample/protected.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/rect.h b/sources/shiboken2/tests/libsample/rect.h index 5e05d3cf2..1897a8dce 100644 --- a/sources/shiboken2/tests/libsample/rect.h +++ b/sources/shiboken2/tests/libsample/rect.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/reference.cpp b/sources/shiboken2/tests/libsample/reference.cpp index 5644cb5bd..37ce1a590 100644 --- a/sources/shiboken2/tests/libsample/reference.cpp +++ b/sources/shiboken2/tests/libsample/reference.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/reference.h b/sources/shiboken2/tests/libsample/reference.h index 943803688..2c0498c6f 100644 --- a/sources/shiboken2/tests/libsample/reference.h +++ b/sources/shiboken2/tests/libsample/reference.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/removednamespaces.h b/sources/shiboken2/tests/libsample/removednamespaces.h index 2d5470ac1..1de028d38 100644 --- a/sources/shiboken2/tests/libsample/removednamespaces.h +++ b/sources/shiboken2/tests/libsample/removednamespaces.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sample.cpp b/sources/shiboken2/tests/libsample/sample.cpp index b6911fd45..638413fd2 100644 --- a/sources/shiboken2/tests/libsample/sample.cpp +++ b/sources/shiboken2/tests/libsample/sample.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sample.h b/sources/shiboken2/tests/libsample/sample.h index 90040683a..fe76a53b2 100644 --- a/sources/shiboken2/tests/libsample/sample.h +++ b/sources/shiboken2/tests/libsample/sample.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/samplenamespace.cpp b/sources/shiboken2/tests/libsample/samplenamespace.cpp index b38f6520b..ec3da3dbf 100644 --- a/sources/shiboken2/tests/libsample/samplenamespace.cpp +++ b/sources/shiboken2/tests/libsample/samplenamespace.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/samplenamespace.h b/sources/shiboken2/tests/libsample/samplenamespace.h index b1da05311..37a445e51 100644 --- a/sources/shiboken2/tests/libsample/samplenamespace.h +++ b/sources/shiboken2/tests/libsample/samplenamespace.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sbkdate.cpp b/sources/shiboken2/tests/libsample/sbkdate.cpp index dc7a10e66..8ba18af43 100644 --- a/sources/shiboken2/tests/libsample/sbkdate.cpp +++ b/sources/shiboken2/tests/libsample/sbkdate.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sbkdate.h b/sources/shiboken2/tests/libsample/sbkdate.h index b2aea0e92..bbe3d3ca8 100644 --- a/sources/shiboken2/tests/libsample/sbkdate.h +++ b/sources/shiboken2/tests/libsample/sbkdate.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/simplefile.cpp b/sources/shiboken2/tests/libsample/simplefile.cpp index 40c8b401d..a47571a01 100644 --- a/sources/shiboken2/tests/libsample/simplefile.cpp +++ b/sources/shiboken2/tests/libsample/simplefile.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/simplefile.h b/sources/shiboken2/tests/libsample/simplefile.h index 89727961f..7a437a99d 100644 --- a/sources/shiboken2/tests/libsample/simplefile.h +++ b/sources/shiboken2/tests/libsample/simplefile.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/size.cpp b/sources/shiboken2/tests/libsample/size.cpp index 46b2eda09..4c195161e 100644 --- a/sources/shiboken2/tests/libsample/size.cpp +++ b/sources/shiboken2/tests/libsample/size.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/size.h b/sources/shiboken2/tests/libsample/size.h index 915252841..c72021231 100644 --- a/sources/shiboken2/tests/libsample/size.h +++ b/sources/shiboken2/tests/libsample/size.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sometime.cpp b/sources/shiboken2/tests/libsample/sometime.cpp index c4aa8604c..851b3b913 100644 --- a/sources/shiboken2/tests/libsample/sometime.cpp +++ b/sources/shiboken2/tests/libsample/sometime.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/sometime.h b/sources/shiboken2/tests/libsample/sometime.h index 0f0a0d5d3..319cd7f8f 100644 --- a/sources/shiboken2/tests/libsample/sometime.h +++ b/sources/shiboken2/tests/libsample/sometime.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/str.cpp b/sources/shiboken2/tests/libsample/str.cpp index 84725b863..634bd4a86 100644 --- a/sources/shiboken2/tests/libsample/str.cpp +++ b/sources/shiboken2/tests/libsample/str.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/str.h b/sources/shiboken2/tests/libsample/str.h index 5da035796..d3bcbaafc 100644 --- a/sources/shiboken2/tests/libsample/str.h +++ b/sources/shiboken2/tests/libsample/str.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/strlist.cpp b/sources/shiboken2/tests/libsample/strlist.cpp index 975b0d6b4..e523522f3 100644 --- a/sources/shiboken2/tests/libsample/strlist.cpp +++ b/sources/shiboken2/tests/libsample/strlist.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/strlist.h b/sources/shiboken2/tests/libsample/strlist.h index 10306fe58..27fc05e6e 100644 --- a/sources/shiboken2/tests/libsample/strlist.h +++ b/sources/shiboken2/tests/libsample/strlist.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/templateptr.cpp b/sources/shiboken2/tests/libsample/templateptr.cpp index 05eef1daa..fa5bb8206 100644 --- a/sources/shiboken2/tests/libsample/templateptr.cpp +++ b/sources/shiboken2/tests/libsample/templateptr.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/templateptr.h b/sources/shiboken2/tests/libsample/templateptr.h index f3efcbc78..584b64185 100644 --- a/sources/shiboken2/tests/libsample/templateptr.h +++ b/sources/shiboken2/tests/libsample/templateptr.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/transform.cpp b/sources/shiboken2/tests/libsample/transform.cpp index d39b03307..840f1feac 100644 --- a/sources/shiboken2/tests/libsample/transform.cpp +++ b/sources/shiboken2/tests/libsample/transform.cpp @@ -4,7 +4,7 @@ ** Copyright (C) 2013 Kitware, Inc. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/transform.h b/sources/shiboken2/tests/libsample/transform.h index 29fb7ef72..d9ec98dd4 100644 --- a/sources/shiboken2/tests/libsample/transform.h +++ b/sources/shiboken2/tests/libsample/transform.h @@ -4,7 +4,7 @@ ** Copyright (C) 2013 Kitware, Inc. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/valueandvirtual.h b/sources/shiboken2/tests/libsample/valueandvirtual.h index b3310b6f5..34a6788e2 100644 --- a/sources/shiboken2/tests/libsample/valueandvirtual.h +++ b/sources/shiboken2/tests/libsample/valueandvirtual.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/virtualmethods.cpp b/sources/shiboken2/tests/libsample/virtualmethods.cpp index f20fdb6cc..2d26bd7c8 100644 --- a/sources/shiboken2/tests/libsample/virtualmethods.cpp +++ b/sources/shiboken2/tests/libsample/virtualmethods.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/virtualmethods.h b/sources/shiboken2/tests/libsample/virtualmethods.h index 897ecbffb..3e4c8c504 100644 --- a/sources/shiboken2/tests/libsample/virtualmethods.h +++ b/sources/shiboken2/tests/libsample/virtualmethods.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsample/voidholder.h b/sources/shiboken2/tests/libsample/voidholder.h index 444c214c1..23408fad8 100644 --- a/sources/shiboken2/tests/libsample/voidholder.h +++ b/sources/shiboken2/tests/libsample/voidholder.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsmart/libsmartmacros.h b/sources/shiboken2/tests/libsmart/libsmartmacros.h index 0312f41f9..d85e219bb 100644 --- a/sources/shiboken2/tests/libsmart/libsmartmacros.h +++ b/sources/shiboken2/tests/libsmart/libsmartmacros.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsmart/smart.cpp b/sources/shiboken2/tests/libsmart/smart.cpp index 44376b207..dbe8efa66 100644 --- a/sources/shiboken2/tests/libsmart/smart.cpp +++ b/sources/shiboken2/tests/libsmart/smart.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/libsmart/smart.h b/sources/shiboken2/tests/libsmart/smart.h index 98af01dbe..ea64b4439 100644 --- a/sources/shiboken2/tests/libsmart/smart.h +++ b/sources/shiboken2/tests/libsmart/smart.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/global.h b/sources/shiboken2/tests/minimalbinding/global.h index ebffa096f..1b06245c4 100644 --- a/sources/shiboken2/tests/minimalbinding/global.h +++ b/sources/shiboken2/tests/minimalbinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/listuser_test.py b/sources/shiboken2/tests/minimalbinding/listuser_test.py index cf666086b..52ba9781f 100644 --- a/sources/shiboken2/tests/minimalbinding/listuser_test.py +++ b/sources/shiboken2/tests/minimalbinding/listuser_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/minbool_test.py b/sources/shiboken2/tests/minimalbinding/minbool_test.py index 900a5ee8a..020e9a41f 100644 --- a/sources/shiboken2/tests/minimalbinding/minbool_test.py +++ b/sources/shiboken2/tests/minimalbinding/minbool_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/obj_test.py b/sources/shiboken2/tests/minimalbinding/obj_test.py index c120908fb..b97f8b1d2 100644 --- a/sources/shiboken2/tests/minimalbinding/obj_test.py +++ b/sources/shiboken2/tests/minimalbinding/obj_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/typedef_test.py b/sources/shiboken2/tests/minimalbinding/typedef_test.py index 8a503da23..e58337060 100644 --- a/sources/shiboken2/tests/minimalbinding/typedef_test.py +++ b/sources/shiboken2/tests/minimalbinding/typedef_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/minimalbinding/val_test.py b/sources/shiboken2/tests/minimalbinding/val_test.py index 7ef55ba81..7a10f29a1 100644 --- a/sources/shiboken2/tests/minimalbinding/val_test.py +++ b/sources/shiboken2/tests/minimalbinding/val_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py b/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py index dca6f95e4..b65663f9d 100644 --- a/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py +++ b/sources/shiboken2/tests/otherbinding/collector_external_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py b/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py index d5925ef7c..2aba4bd09 100755 --- a/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py +++ b/sources/shiboken2/tests/otherbinding/conversion_operator_for_class_without_implicit_conversions_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py b/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py index d9ba6d21c..08541a1f4 100755 --- a/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py +++ b/sources/shiboken2/tests/otherbinding/extended_multiply_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/global.h b/sources/shiboken2/tests/otherbinding/global.h index be3cc5004..0fccabb92 100644 --- a/sources/shiboken2/tests/otherbinding/global.h +++ b/sources/shiboken2/tests/otherbinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/module_reload_test.py b/sources/shiboken2/tests/otherbinding/module_reload_test.py index 4db800bf9..0010130f9 100644 --- a/sources/shiboken2/tests/otherbinding/module_reload_test.py +++ b/sources/shiboken2/tests/otherbinding/module_reload_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py b/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py index 8dd7a8f61..09988496a 100755 --- a/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py +++ b/sources/shiboken2/tests/otherbinding/new_ctor_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/objtypehashes_test.py b/sources/shiboken2/tests/otherbinding/objtypehashes_test.py index 28dce63fd..a52957481 100644 --- a/sources/shiboken2/tests/otherbinding/objtypehashes_test.py +++ b/sources/shiboken2/tests/otherbinding/objtypehashes_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/otherderived_test.py b/sources/shiboken2/tests/otherbinding/otherderived_test.py index 1937380ed..e6ed761b4 100644 --- a/sources/shiboken2/tests/otherbinding/otherderived_test.py +++ b/sources/shiboken2/tests/otherbinding/otherderived_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/test_module_template.py b/sources/shiboken2/tests/otherbinding/test_module_template.py index 457709a2f..5d08944f3 100644 --- a/sources/shiboken2/tests/otherbinding/test_module_template.py +++ b/sources/shiboken2/tests/otherbinding/test_module_template.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/typediscovery_test.py b/sources/shiboken2/tests/otherbinding/typediscovery_test.py index a5b0d641c..6816b158a 100644 --- a/sources/shiboken2/tests/otherbinding/typediscovery_test.py +++ b/sources/shiboken2/tests/otherbinding/typediscovery_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py b/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py index f8b764f5b..fe13cf601 100755 --- a/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py +++ b/sources/shiboken2/tests/otherbinding/usersprimitivefromothermodule_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/otherbinding/wrongctor_test.py b/sources/shiboken2/tests/otherbinding/wrongctor_test.py index 72a82c0bf..15f43d0ca 100644 --- a/sources/shiboken2/tests/otherbinding/wrongctor_test.py +++ b/sources/shiboken2/tests/otherbinding/wrongctor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/py3kcompat.py b/sources/shiboken2/tests/py3kcompat.py index f94717310..065208994 100644 --- a/sources/shiboken2/tests/py3kcompat.py +++ b/sources/shiboken2/tests/py3kcompat.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/__del___test.py b/sources/shiboken2/tests/samplebinding/__del___test.py index 69b96f13d..0f34ebb27 100644 --- a/sources/shiboken2/tests/samplebinding/__del___test.py +++ b/sources/shiboken2/tests/samplebinding/__del___test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/abstract_test.py b/sources/shiboken2/tests/samplebinding/abstract_test.py index 748a8830b..33358ad2a 100644 --- a/sources/shiboken2/tests/samplebinding/abstract_test.py +++ b/sources/shiboken2/tests/samplebinding/abstract_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/addedfunction_test.py b/sources/shiboken2/tests/samplebinding/addedfunction_test.py index d606994a6..57cebbb3a 100644 --- a/sources/shiboken2/tests/samplebinding/addedfunction_test.py +++ b/sources/shiboken2/tests/samplebinding/addedfunction_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py b/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py index db483cc58..0954ba470 100644 --- a/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py +++ b/sources/shiboken2/tests/samplebinding/addedfunction_with_container_args_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py b/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py index 836eda102..aa27de331 100644 --- a/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py +++ b/sources/shiboken2/tests/samplebinding/argumentmodifications_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/array_numpy_test.py b/sources/shiboken2/tests/samplebinding/array_numpy_test.py index 749426ffb..37536930d 100644 --- a/sources/shiboken2/tests/samplebinding/array_numpy_test.py +++ b/sources/shiboken2/tests/samplebinding/array_numpy_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/array_sequence_test.py b/sources/shiboken2/tests/samplebinding/array_sequence_test.py index a2b3b436b..ac8217054 100644 --- a/sources/shiboken2/tests/samplebinding/array_sequence_test.py +++ b/sources/shiboken2/tests/samplebinding/array_sequence_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bug_554_test.py b/sources/shiboken2/tests/samplebinding/bug_554_test.py index 16fdcabca..85848fc39 100644 --- a/sources/shiboken2/tests/samplebinding/bug_554_test.py +++ b/sources/shiboken2/tests/samplebinding/bug_554_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bug_704_test.py b/sources/shiboken2/tests/samplebinding/bug_704_test.py index 4e3311e55..9aa865327 100644 --- a/sources/shiboken2/tests/samplebinding/bug_704_test.py +++ b/sources/shiboken2/tests/samplebinding/bug_704_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp b/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp index 13b0ab124..8f01b4a0a 100644 --- a/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp +++ b/sources/shiboken2/tests/samplebinding/bytearray_bufferprotocol.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/bytearray_test.py b/sources/shiboken2/tests/samplebinding/bytearray_test.py index 4f7ecbc58..e19271ca9 100644 --- a/sources/shiboken2/tests/samplebinding/bytearray_test.py +++ b/sources/shiboken2/tests/samplebinding/bytearray_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/child_return_test.py b/sources/shiboken2/tests/samplebinding/child_return_test.py index dde87e24a..49c843160 100644 --- a/sources/shiboken2/tests/samplebinding/child_return_test.py +++ b/sources/shiboken2/tests/samplebinding/child_return_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/class_fields_test.py b/sources/shiboken2/tests/samplebinding/class_fields_test.py index 3d104c60d..6dbacbd97 100644 --- a/sources/shiboken2/tests/samplebinding/class_fields_test.py +++ b/sources/shiboken2/tests/samplebinding/class_fields_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/collector_test.py b/sources/shiboken2/tests/samplebinding/collector_test.py index d16bc9b1a..f0b184a90 100644 --- a/sources/shiboken2/tests/samplebinding/collector_test.py +++ b/sources/shiboken2/tests/samplebinding/collector_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/complex_test.py b/sources/shiboken2/tests/samplebinding/complex_test.py index 012603741..e14b07b91 100644 --- a/sources/shiboken2/tests/samplebinding/complex_test.py +++ b/sources/shiboken2/tests/samplebinding/complex_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/conversion_operator_test.py b/sources/shiboken2/tests/samplebinding/conversion_operator_test.py index 01eb0a946..5faaaa4db 100644 --- a/sources/shiboken2/tests/samplebinding/conversion_operator_test.py +++ b/sources/shiboken2/tests/samplebinding/conversion_operator_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/copy_test.py b/sources/shiboken2/tests/samplebinding/copy_test.py index d7c95ac15..7505454a2 100644 --- a/sources/shiboken2/tests/samplebinding/copy_test.py +++ b/sources/shiboken2/tests/samplebinding/copy_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py b/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py index 2b618adaf..b7efead63 100644 --- a/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py +++ b/sources/shiboken2/tests/samplebinding/ctorconvrule_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/cyclic_test.py b/sources/shiboken2/tests/samplebinding/cyclic_test.py index 0e67216b5..1940c8d2f 100644 --- a/sources/shiboken2/tests/samplebinding/cyclic_test.py +++ b/sources/shiboken2/tests/samplebinding/cyclic_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/date_test.py b/sources/shiboken2/tests/samplebinding/date_test.py index be288fc5b..fe7b9ac18 100644 --- a/sources/shiboken2/tests/samplebinding/date_test.py +++ b/sources/shiboken2/tests/samplebinding/date_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/decisor_test.py b/sources/shiboken2/tests/samplebinding/decisor_test.py index ab13f3dc5..9102e2d4e 100644 --- a/sources/shiboken2/tests/samplebinding/decisor_test.py +++ b/sources/shiboken2/tests/samplebinding/decisor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/delete_test.py b/sources/shiboken2/tests/samplebinding/delete_test.py index 2be8bb3b5..780da415c 100644 --- a/sources/shiboken2/tests/samplebinding/delete_test.py +++ b/sources/shiboken2/tests/samplebinding/delete_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/deprecated_test.py b/sources/shiboken2/tests/samplebinding/deprecated_test.py index 9332a1ac2..b08f65271 100644 --- a/sources/shiboken2/tests/samplebinding/deprecated_test.py +++ b/sources/shiboken2/tests/samplebinding/deprecated_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/derived_test.py b/sources/shiboken2/tests/samplebinding/derived_test.py index b646089e4..05cd648f5 100644 --- a/sources/shiboken2/tests/samplebinding/derived_test.py +++ b/sources/shiboken2/tests/samplebinding/derived_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/duck_punching_test.py b/sources/shiboken2/tests/samplebinding/duck_punching_test.py index 346521b33..efc8f344f 100644 --- a/sources/shiboken2/tests/samplebinding/duck_punching_test.py +++ b/sources/shiboken2/tests/samplebinding/duck_punching_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/echo_test.py b/sources/shiboken2/tests/samplebinding/echo_test.py index 085745f38..b91394bb8 100644 --- a/sources/shiboken2/tests/samplebinding/echo_test.py +++ b/sources/shiboken2/tests/samplebinding/echo_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/enum_test.py b/sources/shiboken2/tests/samplebinding/enum_test.py index 5c8496635..0a5a84c4a 100644 --- a/sources/shiboken2/tests/samplebinding/enum_test.py +++ b/sources/shiboken2/tests/samplebinding/enum_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py b/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py index 93caa63af..5803a9975 100644 --- a/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py +++ b/sources/shiboken2/tests/samplebinding/enumfromremovednamespace_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py b/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py index b08affe84..63a5a8ab3 100644 --- a/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py +++ b/sources/shiboken2/tests/samplebinding/event_loop_call_virtual_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py b/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py index 0a5c0b32d..1a1fe840d 100644 --- a/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py +++ b/sources/shiboken2/tests/samplebinding/event_loop_thread_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/filter_test.py b/sources/shiboken2/tests/samplebinding/filter_test.py index c2884bec7..577a15bd2 100644 --- a/sources/shiboken2/tests/samplebinding/filter_test.py +++ b/sources/shiboken2/tests/samplebinding/filter_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/global.h b/sources/shiboken2/tests/samplebinding/global.h index e64b74942..f2add93ff 100644 --- a/sources/shiboken2/tests/samplebinding/global.h +++ b/sources/shiboken2/tests/samplebinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/handleholder_test.py b/sources/shiboken2/tests/samplebinding/handleholder_test.py index 6550f4990..c2504f4d2 100644 --- a/sources/shiboken2/tests/samplebinding/handleholder_test.py +++ b/sources/shiboken2/tests/samplebinding/handleholder_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/hashabletype_test.py b/sources/shiboken2/tests/samplebinding/hashabletype_test.py index a54bb14ca..c628c1751 100644 --- a/sources/shiboken2/tests/samplebinding/hashabletype_test.py +++ b/sources/shiboken2/tests/samplebinding/hashabletype_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ignorederefop_test.py b/sources/shiboken2/tests/samplebinding/ignorederefop_test.py index a6dce01b0..c5f53a981 100644 --- a/sources/shiboken2/tests/samplebinding/ignorederefop_test.py +++ b/sources/shiboken2/tests/samplebinding/ignorederefop_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py b/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py index 7359670a1..6ebca790c 100644 --- a/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py +++ b/sources/shiboken2/tests/samplebinding/implicitconv_numerical_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/implicitconv_test.py b/sources/shiboken2/tests/samplebinding/implicitconv_test.py index eb6388157..30986d576 100644 --- a/sources/shiboken2/tests/samplebinding/implicitconv_test.py +++ b/sources/shiboken2/tests/samplebinding/implicitconv_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py b/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py index 964a4d014..892a2bc93 100755 --- a/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py +++ b/sources/shiboken2/tests/samplebinding/inheritanceandscope_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/injectcode_test.py b/sources/shiboken2/tests/samplebinding/injectcode_test.py index ce2d5f6ab..d6b1d0686 100644 --- a/sources/shiboken2/tests/samplebinding/injectcode_test.py +++ b/sources/shiboken2/tests/samplebinding/injectcode_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/innerclass_test.py b/sources/shiboken2/tests/samplebinding/innerclass_test.py index 3c6fdf8f4..d76840f5c 100644 --- a/sources/shiboken2/tests/samplebinding/innerclass_test.py +++ b/sources/shiboken2/tests/samplebinding/innerclass_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/intlist_test.py b/sources/shiboken2/tests/samplebinding/intlist_test.py index d7ede92c8..3bf8fb0ef 100644 --- a/sources/shiboken2/tests/samplebinding/intlist_test.py +++ b/sources/shiboken2/tests/samplebinding/intlist_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py b/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py index dc61f0f02..63384e737 100644 --- a/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py +++ b/sources/shiboken2/tests/samplebinding/invalid_virtual_return_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/keep_reference_test.py b/sources/shiboken2/tests/samplebinding/keep_reference_test.py index 024e56133..bcfc0db1b 100644 --- a/sources/shiboken2/tests/samplebinding/keep_reference_test.py +++ b/sources/shiboken2/tests/samplebinding/keep_reference_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/list_test.py b/sources/shiboken2/tests/samplebinding/list_test.py index bcf61abf3..a2761bee3 100644 --- a/sources/shiboken2/tests/samplebinding/list_test.py +++ b/sources/shiboken2/tests/samplebinding/list_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/lock_test.py b/sources/shiboken2/tests/samplebinding/lock_test.py index 8e9b5d5f4..9bb1f8789 100644 --- a/sources/shiboken2/tests/samplebinding/lock_test.py +++ b/sources/shiboken2/tests/samplebinding/lock_test.py @@ -5,7 +5,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/map_test.py b/sources/shiboken2/tests/samplebinding/map_test.py index 52db00989..1d8d758d8 100644 --- a/sources/shiboken2/tests/samplebinding/map_test.py +++ b/sources/shiboken2/tests/samplebinding/map_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/metaclass_test.py b/sources/shiboken2/tests/samplebinding/metaclass_test.py index d1e193555..e5da496c5 100644 --- a/sources/shiboken2/tests/samplebinding/metaclass_test.py +++ b/sources/shiboken2/tests/samplebinding/metaclass_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py b/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py index 0fff89701..585a1a2df 100644 --- a/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py +++ b/sources/shiboken2/tests/samplebinding/mi_virtual_methods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/mixed_mi_test.py b/sources/shiboken2/tests/samplebinding/mixed_mi_test.py index 96181ab6c..dd557d4f6 100644 --- a/sources/shiboken2/tests/samplebinding/mixed_mi_test.py +++ b/sources/shiboken2/tests/samplebinding/mixed_mi_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modelindex_test.py b/sources/shiboken2/tests/samplebinding/modelindex_test.py index 4cc3c5d9b..251ee710a 100644 --- a/sources/shiboken2/tests/samplebinding/modelindex_test.py +++ b/sources/shiboken2/tests/samplebinding/modelindex_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modelview_test.py b/sources/shiboken2/tests/samplebinding/modelview_test.py index 45e802dfe..3f86fe4ea 100644 --- a/sources/shiboken2/tests/samplebinding/modelview_test.py +++ b/sources/shiboken2/tests/samplebinding/modelview_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modifications_test.py b/sources/shiboken2/tests/samplebinding/modifications_test.py index 90ac22c81..1dcd50359 100644 --- a/sources/shiboken2/tests/samplebinding/modifications_test.py +++ b/sources/shiboken2/tests/samplebinding/modifications_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modified_constructor_test.py b/sources/shiboken2/tests/samplebinding/modified_constructor_test.py index 46b469fce..3352cd277 100644 --- a/sources/shiboken2/tests/samplebinding/modified_constructor_test.py +++ b/sources/shiboken2/tests/samplebinding/modified_constructor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py b/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py index 9e34f6acb..53b854530 100644 --- a/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py +++ b/sources/shiboken2/tests/samplebinding/modifiedvirtualmethods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py b/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py index 8f58a5d12..5223f316a 100644 --- a/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py +++ b/sources/shiboken2/tests/samplebinding/multi_cpp_inheritance_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/multiple_derived_test.py b/sources/shiboken2/tests/samplebinding/multiple_derived_test.py index ea98c7b97..9ac206db3 100644 --- a/sources/shiboken2/tests/samplebinding/multiple_derived_test.py +++ b/sources/shiboken2/tests/samplebinding/multiple_derived_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/namespace_test.py b/sources/shiboken2/tests/samplebinding/namespace_test.py index db8d9dcd2..a5065c7a6 100644 --- a/sources/shiboken2/tests/samplebinding/namespace_test.py +++ b/sources/shiboken2/tests/samplebinding/namespace_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/newdivision_test.py b/sources/shiboken2/tests/samplebinding/newdivision_test.py index d6278f38b..331d7b365 100644 --- a/sources/shiboken2/tests/samplebinding/newdivision_test.py +++ b/sources/shiboken2/tests/samplebinding/newdivision_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py b/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py index f2f41af6a..86a05fd78 100644 --- a/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py +++ b/sources/shiboken2/tests/samplebinding/nondefaultctor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/nonzero_test.py b/sources/shiboken2/tests/samplebinding/nonzero_test.py index ae12433b6..138a92264 100644 --- a/sources/shiboken2/tests/samplebinding/nonzero_test.py +++ b/sources/shiboken2/tests/samplebinding/nonzero_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py b/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py index ebf64baeb..f82e23424 100644 --- a/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py +++ b/sources/shiboken2/tests/samplebinding/numericaltypedef_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/numpy_test.py b/sources/shiboken2/tests/samplebinding/numpy_test.py index 79f3955bd..90b97992a 100644 --- a/sources/shiboken2/tests/samplebinding/numpy_test.py +++ b/sources/shiboken2/tests/samplebinding/numpy_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttype_test.py b/sources/shiboken2/tests/samplebinding/objecttype_test.py index 27ab67227..bda14c69c 100644 --- a/sources/shiboken2/tests/samplebinding/objecttype_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttype_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py b/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py index c9ad53f20..846ae5108 100755 --- a/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttype_with_named_args_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py b/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py index abde1db71..31cbe29cc 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypebyvalue_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py b/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py index 7a14d1667..62f6ce731 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypelayout_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py b/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py index 78337035c..fa6c2f5b0 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypeoperators_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py b/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py index f111cd109..b9ab554dc 100644 --- a/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py +++ b/sources/shiboken2/tests/samplebinding/objecttypereferenceasvirtualmethodargument_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/oddbool_test.py b/sources/shiboken2/tests/samplebinding/oddbool_test.py index 69211dcf7..f99645bc6 100644 --- a/sources/shiboken2/tests/samplebinding/oddbool_test.py +++ b/sources/shiboken2/tests/samplebinding/oddbool_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py b/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py index a2adc9420..8852e152d 100644 --- a/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py +++ b/sources/shiboken2/tests/samplebinding/oldstyleclass_as_number_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py b/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py index 97101cd27..43a095137 100644 --- a/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py +++ b/sources/shiboken2/tests/samplebinding/onlycopyclass_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overflow_test.py b/sources/shiboken2/tests/samplebinding/overflow_test.py index e5be7b854..b7a1006fe 100644 --- a/sources/shiboken2/tests/samplebinding/overflow_test.py +++ b/sources/shiboken2/tests/samplebinding/overflow_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overload_sorting_test.py b/sources/shiboken2/tests/samplebinding/overload_sorting_test.py index bdc5b91f1..b3b0f7c43 100644 --- a/sources/shiboken2/tests/samplebinding/overload_sorting_test.py +++ b/sources/shiboken2/tests/samplebinding/overload_sorting_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overload_test.py b/sources/shiboken2/tests/samplebinding/overload_test.py index 85453e5c7..0cc9e4250 100644 --- a/sources/shiboken2/tests/samplebinding/overload_test.py +++ b/sources/shiboken2/tests/samplebinding/overload_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py b/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py index 66a5f8040..8db9726c8 100644 --- a/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py +++ b/sources/shiboken2/tests/samplebinding/overloadwithdefault_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py b/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py index 57432d1ee..e0b79daa7 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_argument_invalidation_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py index 06aeba53c..f0081385a 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_cpp_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py index 782a971a6..cac52113d 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_delete_child_in_python_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py b/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py index 21a5a36be..cc317df19 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_delete_parent_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py index 485f44185..e73b5a8ac 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_after_use_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py index 93fefabfa..59bf3f3df 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_child_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py index c9642fe35..d64a2120c 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_nonpolymorphic_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py b/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py index 9711e6f34..42b516ff2 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_invalidate_parent_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py b/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py index acabc5007..1a7ea2379 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_reparenting_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/ownership_transference_test.py b/sources/shiboken2/tests/samplebinding/ownership_transference_test.py index 055cb8211..42b576a4d 100644 --- a/sources/shiboken2/tests/samplebinding/ownership_transference_test.py +++ b/sources/shiboken2/tests/samplebinding/ownership_transference_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pair_test.py b/sources/shiboken2/tests/samplebinding/pair_test.py index 85885019f..ac0653dbe 100644 --- a/sources/shiboken2/tests/samplebinding/pair_test.py +++ b/sources/shiboken2/tests/samplebinding/pair_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pen_test.py b/sources/shiboken2/tests/samplebinding/pen_test.py index 18a4bb523..2a61ae367 100644 --- a/sources/shiboken2/tests/samplebinding/pen_test.py +++ b/sources/shiboken2/tests/samplebinding/pen_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/point_test.py b/sources/shiboken2/tests/samplebinding/point_test.py index e6601e86b..d6498d4b3 100644 --- a/sources/shiboken2/tests/samplebinding/point_test.py +++ b/sources/shiboken2/tests/samplebinding/point_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pointerholder_test.py b/sources/shiboken2/tests/samplebinding/pointerholder_test.py index e7bc3f503..e427e0435 100644 --- a/sources/shiboken2/tests/samplebinding/pointerholder_test.py +++ b/sources/shiboken2/tests/samplebinding/pointerholder_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pointf_test.py b/sources/shiboken2/tests/samplebinding/pointf_test.py index f8a75b028..8d8b47115 100644 --- a/sources/shiboken2/tests/samplebinding/pointf_test.py +++ b/sources/shiboken2/tests/samplebinding/pointf_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py b/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py index 68f8cde89..ef0e153e9 100644 --- a/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py +++ b/sources/shiboken2/tests/samplebinding/primitivereferenceargument_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/privatector_test.py b/sources/shiboken2/tests/samplebinding/privatector_test.py index 891222081..e972512fb 100644 --- a/sources/shiboken2/tests/samplebinding/privatector_test.py +++ b/sources/shiboken2/tests/samplebinding/privatector_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/privatedtor_test.py b/sources/shiboken2/tests/samplebinding/privatedtor_test.py index 8d4a2997a..478506779 100644 --- a/sources/shiboken2/tests/samplebinding/privatedtor_test.py +++ b/sources/shiboken2/tests/samplebinding/privatedtor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/protected_test.py b/sources/shiboken2/tests/samplebinding/protected_test.py index 7dd3fd606..d343405ad 100644 --- a/sources/shiboken2/tests/samplebinding/protected_test.py +++ b/sources/shiboken2/tests/samplebinding/protected_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pstrlist_test.py b/sources/shiboken2/tests/samplebinding/pstrlist_test.py index 96d997760..5ecccd075 100644 --- a/sources/shiboken2/tests/samplebinding/pstrlist_test.py +++ b/sources/shiboken2/tests/samplebinding/pstrlist_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/pystr_test.py b/sources/shiboken2/tests/samplebinding/pystr_test.py index f046704ba..2aa4da40c 100644 --- a/sources/shiboken2/tests/samplebinding/pystr_test.py +++ b/sources/shiboken2/tests/samplebinding/pystr_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/python_thread_test.py b/sources/shiboken2/tests/samplebinding/python_thread_test.py index b16c969e0..2015c8ed3 100644 --- a/sources/shiboken2/tests/samplebinding/python_thread_test.py +++ b/sources/shiboken2/tests/samplebinding/python_thread_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py b/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py index 4fb665f69..68de49376 100644 --- a/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py +++ b/sources/shiboken2/tests/samplebinding/receive_null_cstring_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/reference_test.py b/sources/shiboken2/tests/samplebinding/reference_test.py index 4733aa983..152730fad 100644 --- a/sources/shiboken2/tests/samplebinding/reference_test.py +++ b/sources/shiboken2/tests/samplebinding/reference_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/referencetopointer_test.py b/sources/shiboken2/tests/samplebinding/referencetopointer_test.py index d5fb679f9..5a02c5943 100644 --- a/sources/shiboken2/tests/samplebinding/referencetopointer_test.py +++ b/sources/shiboken2/tests/samplebinding/referencetopointer_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/return_null_test.py b/sources/shiboken2/tests/samplebinding/return_null_test.py index ddf65bd5c..15abb8b02 100644 --- a/sources/shiboken2/tests/samplebinding/return_null_test.py +++ b/sources/shiboken2/tests/samplebinding/return_null_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/richcompare_test.py b/sources/shiboken2/tests/samplebinding/richcompare_test.py index d452fd8ea..b219addc5 100644 --- a/sources/shiboken2/tests/samplebinding/richcompare_test.py +++ b/sources/shiboken2/tests/samplebinding/richcompare_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/sample_test.py b/sources/shiboken2/tests/samplebinding/sample_test.py index 1e6006da7..94cf4f5e3 100644 --- a/sources/shiboken2/tests/samplebinding/sample_test.py +++ b/sources/shiboken2/tests/samplebinding/sample_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp b/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp index 6a3168927..bccd51534 100644 --- a/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp +++ b/sources/shiboken2/tests/samplebinding/simplefile_glue.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/simplefile_test.py b/sources/shiboken2/tests/samplebinding/simplefile_test.py index e769af638..2a42942f7 100644 --- a/sources/shiboken2/tests/samplebinding/simplefile_test.py +++ b/sources/shiboken2/tests/samplebinding/simplefile_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/size_test.py b/sources/shiboken2/tests/samplebinding/size_test.py index e0ab8a6d4..b7547d53f 100644 --- a/sources/shiboken2/tests/samplebinding/size_test.py +++ b/sources/shiboken2/tests/samplebinding/size_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py b/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py index d0fe10721..9b5c1e029 100644 --- a/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py +++ b/sources/shiboken2/tests/samplebinding/static_nonstatic_methods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/str_test.py b/sources/shiboken2/tests/samplebinding/str_test.py index 1c2d88343..a5ead4783 100644 --- a/sources/shiboken2/tests/samplebinding/str_test.py +++ b/sources/shiboken2/tests/samplebinding/str_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/strlist_test.py b/sources/shiboken2/tests/samplebinding/strlist_test.py index 864d47b02..787374b73 100644 --- a/sources/shiboken2/tests/samplebinding/strlist_test.py +++ b/sources/shiboken2/tests/samplebinding/strlist_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py b/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py index 9507eb99e..914a3e28e 100644 --- a/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py +++ b/sources/shiboken2/tests/samplebinding/templateinheritingclass_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/time_test.py b/sources/shiboken2/tests/samplebinding/time_test.py index 16015c75a..1882ffc5c 100644 --- a/sources/shiboken2/tests/samplebinding/time_test.py +++ b/sources/shiboken2/tests/samplebinding/time_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/transform_test.py b/sources/shiboken2/tests/samplebinding/transform_test.py index fd74f3836..51839dbf0 100644 --- a/sources/shiboken2/tests/samplebinding/transform_test.py +++ b/sources/shiboken2/tests/samplebinding/transform_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/typeconverters_test.py b/sources/shiboken2/tests/samplebinding/typeconverters_test.py index 50906d1ec..46e2dd57c 100644 --- a/sources/shiboken2/tests/samplebinding/typeconverters_test.py +++ b/sources/shiboken2/tests/samplebinding/typeconverters_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/typedealloc_test.py b/sources/shiboken2/tests/samplebinding/typedealloc_test.py index 89eca07f3..8f0371d16 100644 --- a/sources/shiboken2/tests/samplebinding/typedealloc_test.py +++ b/sources/shiboken2/tests/samplebinding/typedealloc_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py b/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py index e154c562b..e1fbc4406 100644 --- a/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py +++ b/sources/shiboken2/tests/samplebinding/typedtordoublefree_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py b/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py index 08202602a..9e50dabf6 100644 --- a/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py +++ b/sources/shiboken2/tests/samplebinding/unsafe_parent_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/useraddedctor_test.py b/sources/shiboken2/tests/samplebinding/useraddedctor_test.py index a60bff722..17635259d 100644 --- a/sources/shiboken2/tests/samplebinding/useraddedctor_test.py +++ b/sources/shiboken2/tests/samplebinding/useraddedctor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/virtualdtor_test.py b/sources/shiboken2/tests/samplebinding/virtualdtor_test.py index d6678697f..388dc29dc 100644 --- a/sources/shiboken2/tests/samplebinding/virtualdtor_test.py +++ b/sources/shiboken2/tests/samplebinding/virtualdtor_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/virtualmethods_test.py b/sources/shiboken2/tests/samplebinding/virtualmethods_test.py index 4d1df42cb..a52ce6bf5 100644 --- a/sources/shiboken2/tests/samplebinding/virtualmethods_test.py +++ b/sources/shiboken2/tests/samplebinding/virtualmethods_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/visibilitychange_test.py b/sources/shiboken2/tests/samplebinding/visibilitychange_test.py index 9682fedcf..a0ead1fb4 100644 --- a/sources/shiboken2/tests/samplebinding/visibilitychange_test.py +++ b/sources/shiboken2/tests/samplebinding/visibilitychange_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/voidholder_test.py b/sources/shiboken2/tests/samplebinding/voidholder_test.py index b0a42b31b..361a3bcdd 100644 --- a/sources/shiboken2/tests/samplebinding/voidholder_test.py +++ b/sources/shiboken2/tests/samplebinding/voidholder_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/weakref_test.py b/sources/shiboken2/tests/samplebinding/weakref_test.py index f244c2d57..5379169e1 100644 --- a/sources/shiboken2/tests/samplebinding/weakref_test.py +++ b/sources/shiboken2/tests/samplebinding/weakref_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/samplebinding/writableclassdict_test.py b/sources/shiboken2/tests/samplebinding/writableclassdict_test.py index 73f5fafb2..003e35e7b 100644 --- a/sources/shiboken2/tests/samplebinding/writableclassdict_test.py +++ b/sources/shiboken2/tests/samplebinding/writableclassdict_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/shibokenmodule/module_test.py b/sources/shiboken2/tests/shibokenmodule/module_test.py index e7c1d72d9..54a175588 100644 --- a/sources/shiboken2/tests/shibokenmodule/module_test.py +++ b/sources/shiboken2/tests/shibokenmodule/module_test.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/smartbinding/global.h b/sources/shiboken2/tests/smartbinding/global.h index b17ec397b..959859b40 100644 --- a/sources/shiboken2/tests/smartbinding/global.h +++ b/sources/shiboken2/tests/smartbinding/global.h @@ -3,7 +3,7 @@ ** Copyright (C) 2017 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/smartbinding/smart_pointer_test.py b/sources/shiboken2/tests/smartbinding/smart_pointer_test.py index b073aa998..730b4a0da 100644 --- a/sources/shiboken2/tests/smartbinding/smart_pointer_test.py +++ b/sources/shiboken2/tests/smartbinding/smart_pointer_test.py @@ -6,7 +6,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of the test suite of the Qt for Python project. +## This file is part of the test suite of Qt for Python. ## ## $QT_BEGIN_LICENSE:GPL-EXCEPT$ ## Commercial License Usage diff --git a/sources/shiboken2/tests/sphinxtabletest.cpp b/sources/shiboken2/tests/sphinxtabletest.cpp index 1b8a10028..5ad56fb69 100644 --- a/sources/shiboken2/tests/sphinxtabletest.cpp +++ b/sources/shiboken2/tests/sphinxtabletest.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/sphinxtabletest.h b/sources/shiboken2/tests/sphinxtabletest.h index 2ec87e5ff..bba020207 100644 --- a/sources/shiboken2/tests/sphinxtabletest.h +++ b/sources/shiboken2/tests/sphinxtabletest.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygenerator.cpp b/sources/shiboken2/tests/test_generator/dummygenerator.cpp index 4f9f4b16c..ef82c11c9 100644 --- a/sources/shiboken2/tests/test_generator/dummygenerator.cpp +++ b/sources/shiboken2/tests/test_generator/dummygenerator.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygenerator.h b/sources/shiboken2/tests/test_generator/dummygenerator.h index cacffc8a3..e768e7643 100644 --- a/sources/shiboken2/tests/test_generator/dummygenerator.h +++ b/sources/shiboken2/tests/test_generator/dummygenerator.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygentest.cpp b/sources/shiboken2/tests/test_generator/dummygentest.cpp index d48aae352..c09cdfb82 100644 --- a/sources/shiboken2/tests/test_generator/dummygentest.cpp +++ b/sources/shiboken2/tests/test_generator/dummygentest.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/dummygentest.h b/sources/shiboken2/tests/test_generator/dummygentest.h index d19119cf3..78bae1d52 100644 --- a/sources/shiboken2/tests/test_generator/dummygentest.h +++ b/sources/shiboken2/tests/test_generator/dummygentest.h @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/sources/shiboken2/tests/test_generator/main.cpp b/sources/shiboken2/tests/test_generator/main.cpp index 5783de5c1..f928b4d2c 100644 --- a/sources/shiboken2/tests/test_generator/main.cpp +++ b/sources/shiboken2/tests/test_generator/main.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** -** This file is part of the test suite of the Qt for Python project. +** This file is part of the test suite of Qt for Python. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage diff --git a/testing/__init__.py b/testing/__init__.py index a540251cc..1098f47e7 100644 --- a/testing/__init__.py +++ b/testing/__init__.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/testing/blacklist.py b/testing/blacklist.py index b11b7db6f..c0a5e233d 100644 --- a/testing/blacklist.py +++ b/testing/blacklist.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/testing/buildlog.py b/testing/buildlog.py index a040d5d34..7559e4f9f 100644 --- a/testing/buildlog.py +++ b/testing/buildlog.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/testing/command.py b/testing/command.py index dd348432c..dd71eab56 100644 --- a/testing/command.py +++ b/testing/command.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/testing/helper.py b/testing/helper.py index 8ea3e6a6b..0d7b31a72 100644 --- a/testing/helper.py +++ b/testing/helper.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/testing/parser.py b/testing/parser.py index d54abb1fa..035aab091 100644 --- a/testing/parser.py +++ b/testing/parser.py @@ -3,7 +3,7 @@ ## Copyright (C) 2017 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage diff --git a/testrunner.py b/testrunner.py index e3a30a07e..a16a07ab2 100644 --- a/testrunner.py +++ b/testrunner.py @@ -3,7 +3,7 @@ ## Copyright (C) 2016 The Qt Company Ltd. ## Contact: https://www.qt.io/licensing/ ## -## This file is part of PySide2. +## This file is part of Qt for Python. ## ## $QT_BEGIN_LICENSE:LGPL$ ## Commercial License Usage -- cgit v1.2.3 From 1f735762e943c36b36d4dfa7b35954de86e4882e Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Tue, 1 May 2018 00:47:38 +0200 Subject: Doc: Pass include paths via qdocconf instead of command line This way, the length of the command line does not exceed the maximum on Windows. Task-number: PYSIDE-651 Change-Id: Ib6cc736b8c5dda2e9b4bd3775fb18b8584837604 Reviewed-by: Friedemann Kleint --- sources/pyside2/doc/CMakeLists.txt | 13 ++++++------- sources/pyside2/doc/pyside-config.qdocconf.in | 4 ++++ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/sources/pyside2/doc/CMakeLists.txt b/sources/pyside2/doc/CMakeLists.txt index 5b2ab224e..3105d7a09 100644 --- a/sources/pyside2/doc/CMakeLists.txt +++ b/sources/pyside2/doc/CMakeLists.txt @@ -10,7 +10,6 @@ else() endif() set(DOC_DATA_DIR "${CMAKE_CURRENT_BINARY_DIR}/qdoc-output") -configure_file("pyside-config.qdocconf.in" "${CMAKE_CURRENT_LIST_DIR}/pyside-config.qdocconf" @ONLY) get_filename_component(ROOT ${CMAKE_CURRENT_BINARY_DIR} DIRECTORY) set(TS_ROOT "${ROOT}/PySide2") @@ -24,7 +23,7 @@ file(REMOVE ${CMAKE_CURRENT_LIST_DIR}/pyside.qdocconf ${CMAKE_CURRENT_LIST_DIR}/ # The last element of the include list is the mkspec directory containing qplatformdefs.h list(GET Qt5Core_INCLUDE_DIRS -1 mkspecInclude) -set(QDOC_INCPATH -I "${QT_INCLUDE_DIR}" -I "${mkspecInclude}") +configure_file("pyside-config.qdocconf.in" "${CMAKE_CURRENT_LIST_DIR}/pyside-config.qdocconf" @ONLY) file(READ "${pyside2_BINARY_DIR}/pyside2_global.h" docHeaderContents) file(READ "typesystem_doc.xml.in" typeSystemDocXmlContents) @@ -48,10 +47,10 @@ foreach(moduleIn ${all_module_shortnames}) foreach(module ${modules}) string(TOLOWER "${module}" lowerModule) # -- @TODO fix this for macOS frameworks. - list(APPEND QDOC_INCPATH - -I "${QT_INCLUDE_DIR}Qt${module}" - -I "${QT_INCLUDE_DIR}Qt${module}/${Qt5Core_VERSION}" - -I "${QT_INCLUDE_DIR}Qt${module}/${Qt5Core_VERSION}/Qt${module}") + file(APPEND "${CMAKE_CURRENT_LIST_DIR}/pyside-config.qdocconf" + " -I ${QT_INCLUDE_DIR}Qt${module} \\\n" + " -I ${QT_INCLUDE_DIR}Qt${module}/${Qt5Core_VERSION} \\\n" + " -I ${QT_INCLUDE_DIR}Qt${module}/${Qt5Core_VERSION}/Qt${module} \\\n") set(docHeaderContents "${docHeaderContents}\n#include ") set(typeSystemDocXmlContents "${typeSystemDocXmlContents}\n") @@ -72,7 +71,7 @@ set(QDOC_TYPESYSTEM_PATH "${pyside2_SOURCE_DIR}${PATH_SEP}${pyside2_BINARY_DIR}" add_custom_target(qdoc # Use dummy Qt version information, QDoc needs it but has no effect on WebXML output COMMAND ${CMAKE_COMMAND} -E env BUILDDIR=${CMAKE_CURRENT_LIST_DIR}/src QT_INSTALL_DOCS=${QT_SRC_DIR}/doc QT_VERSION=1.0.0 QT_VER=1.0 QT_VERSION_TAG=100 - qdoc pyside.qdocconf ${QDOC_INCPATH} -single-exec -installdir ${DOC_DATA_DIR} -outputdir ${DOC_DATA_DIR} + qdoc pyside.qdocconf -single-exec -installdir ${DOC_DATA_DIR} -outputdir ${DOC_DATA_DIR} COMMENT "Running qdoc against Qt source code..." SOURCE "pyside.qdocconf") diff --git a/sources/pyside2/doc/pyside-config.qdocconf.in b/sources/pyside2/doc/pyside-config.qdocconf.in index 2083913e3..dc387658c 100644 --- a/sources/pyside2/doc/pyside-config.qdocconf.in +++ b/sources/pyside2/doc/pyside-config.qdocconf.in @@ -8,3 +8,7 @@ WebXML.nosubdirs = true WebXML.outputsubdir = webxml spurious += "Hostile character .*" + +includepaths += \ + -I @QT_INCLUDE_DIR@ \ + -I @mkspecInclude@ \ -- cgit v1.2.3 From b3d6b8aa8d21217dd15008033d84994e9d1dfbd5 Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Wed, 2 May 2018 12:30:11 +0200 Subject: Decode qtattributionsscanner output to UTF-8 Without the decode() step, the script may fail with TypeError: the JSON object must be str, not 'bytes' Task-number: PYSIDE-363 Change-Id: Ib9a8e487cc1b9f51692d0c4f20009a0c97cc770e Reviewed-by: Friedemann Kleint --- sources/pyside2/doc/qtattributionsscannertorst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/pyside2/doc/qtattributionsscannertorst.py b/sources/pyside2/doc/qtattributionsscannertorst.py index af02103ef..ac651ca8d 100644 --- a/sources/pyside2/doc/qtattributionsscannertorst.py +++ b/sources/pyside2/doc/qtattributionsscannertorst.py @@ -119,7 +119,7 @@ def runScanner(directory, targetFileName): with open(targetFileName, 'w') as targetFile: targetFile.write(rstHeader) - for entry in json.loads(jsonS): + for entry in json.loads(jsonS.decode('utf-8')): name = entry['Name'] title = "{}\n{}".format(name, '-' * len(name)) brief = entry['License'] -- cgit v1.2.3 From 8f6611ca89adf2a4c8a84049a7b5b8ba405236ba Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 3 May 2018 13:11:32 +0200 Subject: Doc: Add license page to TOC Task-number: PYSIDE-363 Change-Id: Ic4784303a6e3f81ddc1576d6af7ced997aadfe33 Reviewed-by: Alexandru Croitor Reviewed-by: Cristian Maureira-Fredes --- sources/pyside2/doc/contents.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/pyside2/doc/contents.rst b/sources/pyside2/doc/contents.rst index 4a9c04e6c..f6e2f6abd 100644 --- a/sources/pyside2/doc/contents.rst +++ b/sources/pyside2/doc/contents.rst @@ -6,6 +6,7 @@ gettingstarted.rst modules.rst + licenses.rst Tutorials ========= -- cgit v1.2.3