diff --git a/.krazy b/.krazy index d5ceac35de..ea33637844 100644 --- a/.krazy +++ b/.krazy @@ -1,7 +1,7 @@ CHECKSETS qt5,c++,foss #KDAB-specific checks -EXTRA kdabcopyright-reuse,kdabcommercial-reuse,fosslicense-reuse +EXTRA kdabcopyright-reuse,kdabcontactus,fosslicense-reuse #additional checks #EXTRA defines,null diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7016707868..703de3b9ae 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -22,12 +22,12 @@ repos: - id: pylint exclude: ^(.cmake-format.py|conan/.*/conanfile.py) - repo: https://github.com/pre-commit/mirrors-autopep8 - rev: v2.0.0 + rev: v2.0.2 hooks: - id: autopep8 exclude: ^(.cmake-format.py|conan/.*/conanfile.py) - repo: https://github.com/codespell-project/codespell - rev: v2.2.2 + rev: v2.2.4 hooks: - id: codespell - repo: https://github.com/cheshirekow/cmake-format-precommit @@ -45,6 +45,6 @@ repos: language: ruby files: \.(md|mdown|markdown)$ - repo: https://github.com/fsfe/reuse-tool - rev: v1.0.0 + rev: v1.1.2 hooks: - id: reuse diff --git a/.reuse/dep5 b/.reuse/dep5 index 84232fcf3b..b1b99ea657 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -6,12 +6,12 @@ Source: https://www.github.com/KDAB/GammaRay #misc source code Files: *.ui *.qrc *.json CMakePresets.json GammaRay.desktop app/Info.plist.in client/Info.plist.in launcher/app/Info.plist.in launcher/cli/Info.plist.in com.kdab.GammaRay.metainfo.xml resources/gammaray/authors docs/collection/about.txt *.frag *.geom *.vert *.ts *.qm *.map cmake/gammaray.rc.cmake Copyright: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company -License: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +License: GPL-2.0-or-later #misc documentation Files: CHANGES CONTRIBUTORS.txt INSTALL.md README.md docs/man/gammaray.pod *.dox *.html *.css docs/GammaRay-CopyrightAssignmentForm.pdf ui/resources/gammaray/ui/icons/classes/qtquick2/README ui/resources/gammaray/ui/icons/classes/qtwidgets/README Copyright: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company -License: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +License: GPL-2.0-or-later #misc config files Files: 3rdparty/*/qt_attribution.json .clang-format .clang-tidy .clangd .clazy .cmake-format.py .codespellrc .emacs-dirvars .git-blame-ignore-revs .gitattributes .gitignore .kateconfig .krazy .mdlrc .mdlrc.rb .pep8 .pre-commit-config.yaml .pylintrc .qmake.conf .tag .travis.yml appveyor.ini appveyor.yml distro/* format.config.uncrustify.4_spaces *.qdocconf format_sources docs/collection/gammaray.qhcp.cmake examples/yocto/gammaray_git.bb probe/gammaray_probe-android-dependencies.xml docs/api/Doxyfile.cmake .github/workflows/*.yml @@ -21,7 +21,7 @@ License: BSD-3-Clause #artwork Files: ui/resources/gammaray/*.png plugins/guisupport/images/*.png ui/resources/gammaray/ui/icons/classes/*/*.png ui/resources/gammaray/ui/*/*/*.png docs/manual/*/*.png docs/api/*.png tests/manual/*.png plugins/positioning/*.png plugins/quickinspector/textureextension/resources/*.png launcher/ui/resources/launcher/*.png ui/resources/svg/*.svg ui/resources/svg/*.svgz plugins/positioning/direction_marker.svg ui/resources/gammaray/GammaRay.icns ui/resources/gammaray/GammaRay.ico Copyright: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company -License: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +License: GPL-2.0-or-later #3rdparty from Qt Files: 3rdparty/qt/5.5/private/* @@ -46,7 +46,7 @@ License: LGPL-2.1-only OR LicenseRef-Qt-LGPL_EXCEPTION Files: compat/qasconst.h Copyright: 2016 The Qt Company Ltd -Copyright: 2016 Intel Corporation + 2016 Intel Corporation License: LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-or-later OR LicenseRef-Qt-Commercial #3rdparty StackWalker diff --git a/3rdparty/StackWalker/qt_attribution.json b/3rdparty/StackWalker/qt_attribution.json index a975af47ea..747e165a99 100644 --- a/3rdparty/StackWalker/qt_attribution.json +++ b/3rdparty/StackWalker/qt_attribution.json @@ -6,7 +6,7 @@ "Description": "Callstack access for Windows.", "Homepage": "https://github.com/JochenKalmbach/StackWalker", - "Version": "5b0df7a4db8896f6b6dc45d36e383c52577e3c6b" + "Version": "5b0df7a4db8896f6b6dc45d36e383c52577e3c6b", "License": "BSD 2-Clause \"Simplified\" License", "LicenseId": "BSD-2-Clause", diff --git a/3rdparty/qt/resourcemodel.cpp b/3rdparty/qt/resourcemodel.cpp index 3d614f0c9d..ada9b8e707 100644 --- a/3rdparty/qt/resourcemodel.cpp +++ b/3rdparty/qt/resourcemodel.cpp @@ -1123,7 +1123,6 @@ QFileInfo ResourceModel::fileInfo(const QModelIndex &index) const void ResourceModelPrivate::init() { - Q_Q(ResourceModel); filters = QDir::AllEntries | QDir::NoDotAndDotDot; sort = QDir::Name; nameFilters << QLatin1String("*"); diff --git a/CHANGES b/CHANGES index 5b9879f109..40569f8378 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,7 @@ Release Highlights Version 3.0.0 (unreleased) -------------------------- + * Remove the KDAB commercial license. * Increase CMake requirement to version 3.16.0. * Port to Qt6 (in-progress). * Network operations now optionally allow capturing HTTP response body. diff --git a/CMakeLists.txt b/CMakeLists.txt index 239f6cf36a..4fd3fb7d39 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,14 +1,10 @@ -# # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay -# -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. +# SPDX-License-Identifier: GPL-2.0-or-later # -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # This is the top-level CMakeLists.txt file for the GammaRay project. @@ -60,10 +56,6 @@ # Build GammaRay documentation # Default=true (always false if cross-compiling or building probe-only (see GAMMARAY_PROBE_ONLY_BUILD)) # -# -DGAMMARAY_ENABLE_GPL_ONLY_FEATURES=[true|false] -# Enable features only available under GPL license -# Default=false -# # -DGAMMARAY_ENFORCE_QT_ASSERTS=[true|false] # Force QT_ASSERT in all builds # Default=false @@ -250,7 +242,6 @@ if(GAMMARAY_PROBE_ONLY_BUILD AND GAMMARAY_CLIENT_ONLY_BUILD) message(FATAL_ERROR "You can only use one of the *ONLY* option.") endif() -gammaray_option(GAMMARAY_ENABLE_GPL_ONLY_FEATURES "Enable features only available under GPL license." OFF) gammaray_option(GAMMARAY_INSTALL_QT_LAYOUT "Install into Qt directory layout." OFF) gammaray_option(GAMMARAY_MULTI_BUILD "Build multiple applicable probe configurations." ON) gammaray_option(GAMMARAY_BUILD_CLI_INJECTOR "Build command line injector on Windows." ON) diff --git a/GammaRayConfig.cmake.in b/GammaRayConfig.cmake.in index 953e33cf8d..3d5d53ca31 100644 --- a/GammaRayConfig.cmake.in +++ b/GammaRayConfig.cmake.in @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # @PACKAGE_INIT@ diff --git a/INSTALL.md b/INSTALL.md index 3bb4a57bc6..7740f61191 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -120,7 +120,8 @@ To build a debug version pass `-DCMAKE_BUILD_TYPE=Debug` to cmake. You'll find more information on this in the wiki: -== Force a probe only build == +## Force a probe only build + If you already built GammaRay in the past and that you want to support more probes, you don't need to rebuild entirely GammaRay for this specific Qt version. You can instead just build the GammaRay probe for the new Qt version and install it diff --git a/LICENSE.txt b/LICENSE.txt index 7f30f67c1b..2ef213bf83 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -4,9 +4,6 @@ The GammaRay Software is (C) 2010-2023 Klarälvdalens Datakonsult AB (KDAB), and is available under the terms of the GPL version 2 (or any later version, at your option). -Commercial licensing terms are available in the included file -LICENSES/LicenseRef-KDAB-GammaRay.txt. - Note that this software relies on 3rd party MIT-licensed projects and various other freely distributable files some of which are unused only for testing and not part of the application itself. diff --git a/LICENSES/LicenseRef-KDAB-GammaRay.txt b/LICENSES/LicenseRef-KDAB-GammaRay.txt deleted file mode 100644 index df4aa57a84..0000000000 --- a/LICENSES/LicenseRef-KDAB-GammaRay.txt +++ /dev/null @@ -1,101 +0,0 @@ -GammaRay END-USER LICENSE AGREEMENT (EULA) -FOR COMMERCIAL VERSIONS -November 1, 2019 - -IMPORTANT-READ CAREFULLY: This Klarälvdalens Datakonsult AB End-User -License Agreement ("EULA") is a legal agreement between you (either an -individual or a legal entity) and Klarälvdalens Datakonsult AB -("KDAB") for the Klarälvdalens Datakonsult AB software product -“GammaRay” ("Licensed Product"). - -By installing, copying, or downloading the Licensed Product, you agree -to be bound by the terms of this EULA. If you do not agree to the -terms of this EULA, do not install, copy, or download the Licensed -Product; you may, however, return it to your place of purchase for a -full refund. - -Upon your acceptance of the terms and conditions of this EULA, KDAB -grants you the right to use the Licensed Product as provided below. - -GRANT OF RIGHTS - -Under the condition of Your payment of all license fees KDAB grants to -you a nonexclusive, nontransferable, royalty-bearing, perpetual and -worldwide license to copy the Licensed Product for the purpose of designing, -developing, and testing your software product(s) ("Applications"). - -If you are an individual, you may install copies of the Licensed -Product on all of your computers provided that you are the only -individual using the Licensed Product. - -If you are a legal entity, you may provide as many staff members -("Designated User") with copies of the Licensed Product as you have -licensed. Any Designated User is permitted to install copies of the -Licensed Product on all of the Designated User’s computers provided -that the respective Designated User is the only individual using the -Licensed Product. If you are a legal entity, You may at any time -designate another individual to replace the current Designated User, -so long as there is no more than one Designated User per license at -any given time. - -To the extent that the Licensed Product includes software code -("Included Code") in your Applications for the intended purpose of -designing, developing, and testing your Applications you are permitted -to create a derivative or combined work consisting of your -Applications and the Included Code and to use the derivative or -combined work internally for the intended purpose. However, KDAB does -not grant the right to redistribute the combination of your -Application with the Included Code to third parties without prior -written consent of KDAB. - -Nothing in this License is intended to reduce, limit, or restrict your -rights arising from limitations or exceptions that are provided for in -connection with the copyright protection under copyright law or other -applicable laws. - -WARRANTY DISCLAIMER - -THE LICENSED PRODUCT IS LICENSED TO YOU "AS IS". TO THE MAXIMUM -EXTENT PERMITTED BY APPLICABLE LAW, KDAB ON BEHALF OF ITSELF AND ITS -SUPPLIERS, DISCLAIMS ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR -IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND -NON-INFRINGEMENT WITH REGARD TO THE LICENSED PRODUCT. THIS WARRANTY -DISCLAIMER NOTWITHSTANDING, YOU MAY HAVE SPECIFIC LEGAL RIGHTS WHICH -MAY VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. - -LIMITATION OF LIABILITY - -IF, KDAB'S WARRANTY DISCLAIMER NOTWITHSTANDING, KDAB IS HELD LIABLE TO -YOU, WHETHER IN CONTRACT, TORT OR ANY OTHER LEGAL THEORY, BASED ON THE -LICENSED PRODUCT, KDAB'S ENTIRE LIABILITY TO YOU AND YOUR EXCLUSIVE -REMEDY SHALL BE, AT KDAB'S OPTION, EITHER (A) RETURN OF THE PRICE YOU -PAID FOR THE LICENSED PRODUCT, OR (B) REPAIR OR REPLACEMENT OF THE -LICENSED PRODUCT, PROVIDED YOU RETURN TO KDAB ALL COPIES OF THE -LICENSED PRODUCT AS ORIGINALLY DELIVERED TO YOU. KDAB SHALL NOT UNDER -ANY CIRCUMSTANCES BE LIABLE TO YOU BASED ON FAILURE OF THE LICENSED -PRODUCT IF THE FAILURE RESULTED FROM ACCIDENT, ABUSE OR -MISAPPLICATION, NOR SHALL KDAB UNDER ANY CIRCUMSTANCES BE LIABLE FOR -SPECIAL DAMAGES, PUNITIVE OR EXEMPLARY DAMAGES, DAMAGES FOR LOSS OF -PROFITS OR INTERRUPTION OF BUSINESS OR FOR LOSS OR CORRUPTION OF DATA. - -ANY AWARD OF DAMAGES FROM KDAB TO YOU SHALL NOT EXCEED THE TOTAL -AMOUNT YOU HAVE PAID TO KDAB IN CONNECTION WITH THIS EULA. - -SUPPORT AND UPDATES - -You will receive software developer support and access to Updates to -the Licensed Product in accordance with KDAB support policies and -procedures as agreed upon in your support agreement with KDAB. - -GENERAL PROVISIONS - -This EULA may only be modified in writing signed by you and an -authorized officer of KDAB. All terms of any purchase order or other -ordering document shall be superseded by this EULA. If any provision -of the EULA is found void or unenforceable, the remainder will remain -valid and enforceable according to its terms. If any remedy provided -is determined to have failed for its essential purpose, all limitations -of liability and exclusions of damages set forth in this EULA shall -remain in effect. This EULA shall be construed, interpreted and governed -by the laws of Sweden, the venue to be Sunne Tingsratt. diff --git a/README.md b/README.md index e51af99785..12ccd91e57 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# +# [![Logo](ui/resources/gammaray/ui/light/pixmaps/GammaRay-logo-small.png)](https://www.kdab.com/gammaray) GammaRay is a software introspection tool for Qt applications developed by KDAB. Leveraging the QObject introspection mechanism it allows you to observe and @@ -75,11 +75,14 @@ and is available under the terms of the GPL version 2 (or any later version, at your option). See [GPL-2.0-or-later.txt](LICENSES/GPL-2.0-or-later.txt) for license details. -Commercial licensing terms are available in the included file -[LicenseRef-KDAB-GammaRay.txt](LICENSES/LicenseRef-KDAB-GammaRay.txt). +Contact KDAB at to inquire about commercial licensing. For terms of redistribution, refer to the corresponding license agreement. +Note that this software relies on 3rd party MIT-licensed projects +and various other freely distributable files some of which are +unused only for testing and not part of the application itself. + ## About KDAB GammaRay is supported and maintained by Klarälvdalens Datakonsult AB (KDAB). diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 39686d4972..747dd863ad 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # Integrated launcher/client for Mac app bundles if(APPLE) diff --git a/app/main.cpp b/app/main.cpp index 404ea84873..9838748a07 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index b1ce137da4..50e7c7e8dc 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # set(gammaray_clientlib_srcs client.cpp diff --git a/client/classesiconsrepositoryclient.cpp b/client/classesiconsrepositoryclient.cpp index f429596808..ab5608ed6f 100644 --- a/client/classesiconsrepositoryclient.cpp +++ b/client/classesiconsrepositoryclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "classesiconsrepositoryclient.h" diff --git a/client/classesiconsrepositoryclient.h b/client/classesiconsrepositoryclient.h index ea81868e4f..51711b823d 100644 --- a/client/classesiconsrepositoryclient.h +++ b/client/classesiconsrepositoryclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLASSESICONSREPOSITORYCLIENT_H diff --git a/client/client.cpp b/client/client.cpp index 4053b0b346..d3992289be 100644 --- a/client/client.cpp +++ b/client/client.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "client.h" diff --git a/client/client.h b/client/client.h index 253752e05c..a0e69f74a8 100644 --- a/client/client.h +++ b/client/client.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENT_H diff --git a/client/clientconnectionmanager.cpp b/client/clientconnectionmanager.cpp index 27e7f9efe2..79a4a1aef7 100644 --- a/client/clientconnectionmanager.cpp +++ b/client/clientconnectionmanager.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientconnectionmanager.h" diff --git a/client/clientconnectionmanager.h b/client/clientconnectionmanager.h index 46f2269bfd..780befc1c4 100644 --- a/client/clientconnectionmanager.h +++ b/client/clientconnectionmanager.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTCONNECTIONMANAGER_H diff --git a/client/clientdevice.cpp b/client/clientdevice.cpp index b296160f01..044f68048f 100644 --- a/client/clientdevice.cpp +++ b/client/clientdevice.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientdevice.h" diff --git a/client/clientdevice.h b/client/clientdevice.h index be6d66b09f..232ace52e1 100644 --- a/client/clientdevice.h +++ b/client/clientdevice.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTDEVICE_H diff --git a/client/enumrepositoryclient.cpp b/client/enumrepositoryclient.cpp index 3b201baabd..a9d044491d 100644 --- a/client/enumrepositoryclient.cpp +++ b/client/enumrepositoryclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumrepositoryclient.h" diff --git a/client/enumrepositoryclient.h b/client/enumrepositoryclient.h index 4612239ef3..fdc7307d0d 100644 --- a/client/enumrepositoryclient.h +++ b/client/enumrepositoryclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENUMREPOSITORYCLIENT_H diff --git a/client/favoriteobjectclient.cpp b/client/favoriteobjectclient.cpp index a6221d2fd5..4f96964499 100644 --- a/client/favoriteobjectclient.cpp +++ b/client/favoriteobjectclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "favoriteobjectclient.h" diff --git a/client/favoriteobjectclient.h b/client/favoriteobjectclient.h index 60d2cc76cb..8a5f2bdd07 100644 --- a/client/favoriteobjectclient.h +++ b/client/favoriteobjectclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FAVORITEOBJECTCLIENT_H diff --git a/client/localclientdevice.cpp b/client/localclientdevice.cpp index ca9ee85006..141589997d 100644 --- a/client/localclientdevice.cpp +++ b/client/localclientdevice.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localclientdevice.h" diff --git a/client/localclientdevice.h b/client/localclientdevice.h index 9df22e460f..a2f1f54131 100644 --- a/client/localclientdevice.h +++ b/client/localclientdevice.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALCLIENTDEVICE_H diff --git a/client/main.cpp b/client/main.cpp index 1bcd007ead..e5816fb107 100644 --- a/client/main.cpp +++ b/client/main.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/client/messagestatisticsmodel.cpp b/client/messagestatisticsmodel.cpp index 1ca5712bb0..e27202890b 100644 --- a/client/messagestatisticsmodel.cpp +++ b/client/messagestatisticsmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagestatisticsmodel.h" diff --git a/client/messagestatisticsmodel.h b/client/messagestatisticsmodel.h index e5d3cd1978..96d6f0050e 100644 --- a/client/messagestatisticsmodel.h +++ b/client/messagestatisticsmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGESTATISTICSMODEL_H diff --git a/client/paintanalyzerclient.cpp b/client/paintanalyzerclient.cpp index 911a2ae2a0..af613979db 100644 --- a/client/paintanalyzerclient.cpp +++ b/client/paintanalyzerclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintanalyzerclient.h" diff --git a/client/paintanalyzerclient.h b/client/paintanalyzerclient.h index 3118eabaa2..c290dee978 100644 --- a/client/paintanalyzerclient.h +++ b/client/paintanalyzerclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTANALYZERCLIENT_H diff --git a/client/probecontrollerclient.cpp b/client/probecontrollerclient.cpp index 6cbb803c9c..cefc4bc344 100644 --- a/client/probecontrollerclient.cpp +++ b/client/probecontrollerclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "probecontrollerclient.h" diff --git a/client/probecontrollerclient.h b/client/probecontrollerclient.h index 0a491e6cdc..7f474781b1 100644 --- a/client/probecontrollerclient.h +++ b/client/probecontrollerclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBECONTROLLERCLIENT_H diff --git a/client/processtracker.cpp b/client/processtracker.cpp index ee97981a43..73870b13e9 100644 --- a/client/processtracker.cpp +++ b/client/processtracker.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "processtracker.h" diff --git a/client/processtracker.h b/client/processtracker.h index 65eafce113..11d57de41b 100644 --- a/client/processtracker.h +++ b/client/processtracker.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROCESSTRACKER_H diff --git a/client/processtracker_linux.cpp b/client/processtracker_linux.cpp index f1e69624e8..c484eb5633 100644 --- a/client/processtracker_linux.cpp +++ b/client/processtracker_linux.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // A said crossplatform way (using ptrace) is available at diff --git a/client/processtracker_linux.h b/client/processtracker_linux.h index b2202d4fab..8e5dc821a6 100644 --- a/client/processtracker_linux.h +++ b/client/processtracker_linux.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROCESSTRACKER_LINUX_H diff --git a/client/processtracker_macos.cpp b/client/processtracker_macos.cpp index 44489946c7..8696ef5ab1 100644 --- a/client/processtracker_macos.cpp +++ b/client/processtracker_macos.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // A said crossplatform way (using ptrace) is available at diff --git a/client/processtracker_macos.h b/client/processtracker_macos.h index ca3c8f599c..0b5aee207f 100644 --- a/client/processtracker_macos.h +++ b/client/processtracker_macos.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROCESSTRACKER_MACOS_H diff --git a/client/processtracker_windows.cpp b/client/processtracker_windows.cpp index ccbbf40b07..471aa26781 100644 --- a/client/processtracker_windows.cpp +++ b/client/processtracker_windows.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // A said crossplatform way (using ptrace) is available at diff --git a/client/processtracker_windows.h b/client/processtracker_windows.h index 7d217e5d43..88a994ed00 100644 --- a/client/processtracker_windows.h +++ b/client/processtracker_windows.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROCESSTRACKER_WINDOWS_H diff --git a/client/propertycontrollerclient.cpp b/client/propertycontrollerclient.cpp index ed71bc2e27..370e0d89e1 100644 --- a/client/propertycontrollerclient.cpp +++ b/client/propertycontrollerclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertycontrollerclient.h" diff --git a/client/propertycontrollerclient.h b/client/propertycontrollerclient.h index 78282fd091..6fec5e4e9c 100644 --- a/client/propertycontrollerclient.h +++ b/client/propertycontrollerclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYCONTROLLERCLIENT_H diff --git a/client/remotemodel.cpp b/client/remotemodel.cpp index 53a1908cd6..dc51a83665 100644 --- a/client/remotemodel.cpp +++ b/client/remotemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "remotemodel.h" @@ -390,13 +387,19 @@ void RemoteModel::newMessage(const GammaRay::Message &msg) qWarning() << "Unexpected empty index, probably some type failed to deserialize" << Q_FUNC_INFO; continue; } + quint32 indexEndPos = msg.pos(); + Node *node = nodeForIndex(index); const auto column = index.last().column; const auto state = node ? stateForColumn(node, column) : RemoteModelNodeState::NoState; typedef QHash ItemData; ItemData itemData; qint32 flags; - msg >> itemData >> flags; + // read item data + msg >> itemData; + // skip the marker and reset if itemData was invalid/unreadable + msg.findAndSkipCString(GammaRay::REMOTE_MODEL_MARKER, indexEndPos); + msg >> flags; if ((state & RemoteModelNodeState::Loading) == 0) continue; // we didn't ask for this, probably outdated response for a moved cell diff --git a/client/remotemodel.h b/client/remotemodel.h index dc09d22d2d..6d0922cae7 100644 --- a/client/remotemodel.h +++ b/client/remotemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEMODEL_H diff --git a/client/remoteviewclient.cpp b/client/remoteviewclient.cpp index ed0f5fdc7c..2a0344c5bc 100644 --- a/client/remoteviewclient.cpp +++ b/client/remoteviewclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "remoteviewclient.h" diff --git a/client/remoteviewclient.h b/client/remoteviewclient.h index 2db6c9d920..1743b1e77d 100644 --- a/client/remoteviewclient.h +++ b/client/remoteviewclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEVIEWCLIENT_H diff --git a/client/selectionmodelclient.cpp b/client/selectionmodelclient.cpp index 84990fa669..5e30ebf2b4 100644 --- a/client/selectionmodelclient.cpp +++ b/client/selectionmodelclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "selectionmodelclient.h" diff --git a/client/selectionmodelclient.h b/client/selectionmodelclient.h index 5cfee1f53d..5e548ef2ad 100644 --- a/client/selectionmodelclient.h +++ b/client/selectionmodelclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SELECTIONMODELCLIENT_H diff --git a/client/tcpclientdevice.cpp b/client/tcpclientdevice.cpp index e9d1767e9f..318d5e4da0 100644 --- a/client/tcpclientdevice.cpp +++ b/client/tcpclientdevice.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "tcpclientdevice.h" diff --git a/client/tcpclientdevice.h b/client/tcpclientdevice.h index 13d48ee174..ddf730eef1 100644 --- a/client/tcpclientdevice.h +++ b/client/tcpclientdevice.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TCPCLIENTDEVICE_H diff --git a/client/toolmanagerclient.cpp b/client/toolmanagerclient.cpp index b42a96f22a..ee12a2e8ff 100644 --- a/client/toolmanagerclient.cpp +++ b/client/toolmanagerclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "toolmanagerclient.h" diff --git a/client/toolmanagerclient.h b/client/toolmanagerclient.h index b20bec933d..7e4c7ea1f0 100644 --- a/client/toolmanagerclient.h +++ b/client/toolmanagerclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TOOLMANAGERCLIENT_H diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index e5c5fb1755..637834792b 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(NOT GAMMARAY_PROBE_ONLY_BUILD) install(FILES GammaRayMacros.cmake DESTINATION ${CMAKECONFIG_INSTALL_DIR}) diff --git a/cmake/FindQmlLint.cmake b/cmake/FindQmlLint.cmake index f4e3c1e834..fb4fe497dd 100644 --- a/cmake/FindQmlLint.cmake +++ b/cmake/FindQmlLint.cmake @@ -1,15 +1,11 @@ -# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # Author: Volker Krause # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # find_program(QMLLINT_EXECUTABLE qmllint) diff --git a/cmake/GammaRayMacros.cmake b/cmake/GammaRayMacros.cmake index 0e23538fa3..23c665f026 100644 --- a/cmake/GammaRayMacros.cmake +++ b/cmake/GammaRayMacros.cmake @@ -1,15 +1,11 @@ -# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # Author: Volker Krause # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # include(CMakeParseArguments) diff --git a/cmake/GammaRayMacrosInternal.cmake b/cmake/GammaRayMacrosInternal.cmake index b4e7ac1649..96cf9f7d7e 100644 --- a/cmake/GammaRayMacrosInternal.cmake +++ b/cmake/GammaRayMacrosInternal.cmake @@ -2,14 +2,10 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. +# Contact KDAB at for commercial licensing options. # -# Contact info@kdab.com if any conditions of this licensing are not clear to you. -# -# GammaRay-specific CMake macros that don't make sense outside of the GammaRay source tree. # Copyright (c) 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # All rights reserved. diff --git a/cmake/GammaRayProbeABI.cmake b/cmake/GammaRayProbeABI.cmake index 38be926823..3dd35adb0c 100644 --- a/cmake/GammaRayProbeABI.cmake +++ b/cmake/GammaRayProbeABI.cmake @@ -1,15 +1,10 @@ # This file is part of GammaRay, the Qt application inspection and manipulation tool. # -# SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company +# SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. -# -# Determine probe ABI identifier +# Contact KDAB at for commercial licensing options. # # Copyright (c) 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company diff --git a/cmake/PackageIFW.cmake b/cmake/PackageIFW.cmake index 0ca9b9e4dc..88b7726876 100644 --- a/cmake/PackageIFW.cmake +++ b/cmake/PackageIFW.cmake @@ -1,15 +1,11 @@ -# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # Author: Andras Mantia # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # diff --git a/cmake/Qt5LegacySupport.cmake b/cmake/Qt5LegacySupport.cmake index 130fac15ff..3d86bd9be7 100644 --- a/cmake/Qt5LegacySupport.cmake +++ b/cmake/Qt5LegacySupport.cmake @@ -2,14 +2,10 @@ # # SPDX-FileCopyrightText: 2021-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. +# Contact KDAB at for commercial licensing options. # -# Contact info@kdab.com if any conditions of this licensing are not clear to you. -# -# Backward compatibility helpers with ancient Qt5 versions # Copyright (C) 2021-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # All rights reserved. diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 32a356bfd1..6e044db521 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # generate the class icon index map file(READ "../ui/resources/classiconindex.map" _map_content) @@ -55,6 +52,7 @@ set(gammaray_common_srcs remoteviewframe.cpp transferimage.cpp commonutils.cpp + recursiveproxymodelbase.cpp ) add_library( @@ -154,6 +152,7 @@ if(NOT GAMMARAY_PROBE_ONLY_BUILD) translator.h commonutils.h favoriteobjectinterface.h + recursiveproxymodelbase.h ) ecm_generate_pri_file( diff --git a/common/classesiconsindex.cpp b/common/classesiconsindex.cpp index c44beb0ccf..82048bb023 100644 --- a/common/classesiconsindex.cpp +++ b/common/classesiconsindex.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "classesiconsindex.h" diff --git a/common/classesiconsindex.h b/common/classesiconsindex.h index a1dc76a989..47963c3059 100644 --- a/common/classesiconsindex.h +++ b/common/classesiconsindex.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLASSESICONSINDEX_H diff --git a/common/classesiconsindex_data.cpp.in b/common/classesiconsindex_data.cpp.in index 61484ddb48..e5d6ebd751 100644 --- a/common/classesiconsindex_data.cpp.in +++ b/common/classesiconsindex_data.cpp.in @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/common/classesiconsrepository.cpp b/common/classesiconsrepository.cpp index 0fbbd3a273..da7d072519 100644 --- a/common/classesiconsrepository.cpp +++ b/common/classesiconsrepository.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "classesiconsrepository.h" diff --git a/common/classesiconsrepository.h b/common/classesiconsrepository.h index f41bf8c837..89809f1094 100644 --- a/common/classesiconsrepository.h +++ b/common/classesiconsrepository.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLASSESICONSREPOSITORY_H diff --git a/common/commonutils.cpp b/common/commonutils.cpp index 7a904b9706..e5c192a5ad 100644 --- a/common/commonutils.cpp +++ b/common/commonutils.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Hannah von Reth - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "commonutils.h" diff --git a/common/commonutils.h b/common/commonutils.h index b59baadc36..64b4030cb6 100644 --- a/common/commonutils.h +++ b/common/commonutils.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Hannah von Reth - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_COMMON_UTILS_H diff --git a/common/endpoint.cpp b/common/endpoint.cpp index 92d80c5731..e5539108de 100644 --- a/common/endpoint.cpp +++ b/common/endpoint.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "endpoint.h" @@ -224,9 +221,11 @@ void Endpoint::invokeObjectLocal(QObject *object, const char *method, const QVariantList &args) { Q_ASSERT(args.size() <= 10); - QVector a(10); + MethodArgument m[10] = {}; + QGenericArgument a[10] = {}; for (int i = 0; i < args.size(); ++i) { - a[i] = MethodArgument(args.at(i)); + m[i] = MethodArgument(args.at(i)); + a[i] = QGenericArgument(m[i]); } QMetaObject::invokeMethod(object, method, a[0], a[1], a[2], a[3], a[4], a[5], a[6], a[7], a[8], diff --git a/common/endpoint.h b/common/endpoint.h index 8046731291..ba55b939a8 100644 --- a/common/endpoint.h +++ b/common/endpoint.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENDPOINT_H diff --git a/common/enumdefinition.cpp b/common/enumdefinition.cpp index 8a6d41212b..7459eddc12 100644 --- a/common/enumdefinition.cpp +++ b/common/enumdefinition.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumdefinition.h" diff --git a/common/enumdefinition.h b/common/enumdefinition.h index 0be4cddcb5..ddf350e087 100644 --- a/common/enumdefinition.h +++ b/common/enumdefinition.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENUMDEFINITION_H diff --git a/common/enumrepository.cpp b/common/enumrepository.cpp index 58eed6f478..477defc5c0 100644 --- a/common/enumrepository.cpp +++ b/common/enumrepository.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumrepository.h" diff --git a/common/enumrepository.h b/common/enumrepository.h index 81f42fd918..a20d403f24 100644 --- a/common/enumrepository.h +++ b/common/enumrepository.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENUMREPOSITORY_H diff --git a/common/enumvalue.cpp b/common/enumvalue.cpp index 7dceb63382..44ad62b737 100644 --- a/common/enumvalue.cpp +++ b/common/enumvalue.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumvalue.h" diff --git a/common/enumvalue.h b/common/enumvalue.h index 9553eb9727..2ae6c82e9b 100644 --- a/common/enumvalue.h +++ b/common/enumvalue.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENUMVALUE_H diff --git a/common/favoriteobjectinterface.cpp b/common/favoriteobjectinterface.cpp index 92e159d06d..7d4279bef6 100644 --- a/common/favoriteobjectinterface.cpp +++ b/common/favoriteobjectinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "favoriteobjectinterface.h" diff --git a/common/favoriteobjectinterface.h b/common/favoriteobjectinterface.h index 42a2cc4aac..f690096d7a 100644 --- a/common/favoriteobjectinterface.h +++ b/common/favoriteobjectinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FAVORITEOBJECTINTERFACE_H diff --git a/common/message.cpp b/common/message.cpp index 49ae1a5fa5..ca2da08442 100644 --- a/common/message.cpp +++ b/common/message.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "message.h" @@ -259,3 +256,32 @@ int Message::size() const { return m_buffer->data.size(); } + +int Message::pos() const +{ + return payload().device()->pos(); +} + +void Message::findAndSkipCString(const char *marker, int from) const +{ + if (!marker) + return; + + if (payload().status() == QDataStream::Ok) { + from = payload().device()->pos(); + payload().device()->seek(from + qstrlen(marker)); + return; + } + + int f = m_buffer->data.data().indexOf(marker, from); + if (f != -1) { + int len = qstrlen(marker); + m_buffer->stream.device()->seek(f + len); + m_buffer->stream.resetStatus(); + } +} + +int Message::writeCStringMarker(const char *bytes, int len) +{ + return m_buffer->stream.writeRawData(bytes, len); +} diff --git a/common/message.h b/common/message.h index a238c22127..0ac4273554 100644 --- a/common/message.h +++ b/common/message.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGE_H @@ -111,6 +108,29 @@ class GAMMARAY_COMMON_EXPORT Message /** Size of the uncompressed message payload. */ int size() const; + /** Current position of the stream */ + int pos() const; + + /** + * Finds @p marker and seeks the internal QDataStream to + * right after the marker. + * + * @p from the pos to start search from + */ + void findAndSkipCString(const char *marker, int from) const; + + /** + * Write a c string (starting at @p bytes, with size @p len) to the message. + * This method can be used to add a marker with the data + * that you are writing. This marker can then be used + * to skip a certain portion of the message in case + * the stream is not valid anymore. Use the method + * findAndSkipCString to skip this marker when reading + * the message. + * @return the number of bytes written + */ + int writeCStringMarker(const char *bytes, int len); + private: Message(); diff --git a/common/metatypedeclarations.h b/common/metatypedeclarations.h index 3974fc565a..4c35797e58 100644 --- a/common/metatypedeclarations.h +++ b/common/metatypedeclarations.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file diff --git a/common/methodargument.cpp b/common/methodargument.cpp index 507ee0f3bf..4ba90a4d78 100644 --- a/common/methodargument.cpp +++ b/common/methodargument.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "methodargument.h" diff --git a/common/methodargument.h b/common/methodargument.h index 4e7ac554b6..dd8bdcb77b 100644 --- a/common/methodargument.h +++ b/common/methodargument.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METHODARGUMENT_H diff --git a/common/modelevent.cpp b/common/modelevent.cpp index 935141e2be..e64f1b4857 100644 --- a/common/modelevent.cpp +++ b/common/modelevent.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelevent.h" diff --git a/common/modelevent.h b/common/modelevent.h index f64ccba02a..32e685de67 100644 --- a/common/modelevent.h +++ b/common/modelevent.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELEVENT_H diff --git a/common/modelroles.h b/common/modelroles.h index 9a51f14e1a..af086bc7fa 100644 --- a/common/modelroles.h +++ b/common/modelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELROLES_H diff --git a/common/modelutils.cpp b/common/modelutils.cpp index efe871b156..d9a061b967 100644 --- a/common/modelutils.cpp +++ b/common/modelutils.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelutils.h" diff --git a/common/modelutils.h b/common/modelutils.h index baf070e55a..956c915b35 100644 --- a/common/modelutils.h +++ b/common/modelutils.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELUTILS_H diff --git a/common/networkselectionmodel.cpp b/common/networkselectionmodel.cpp index 620393547c..737cc1e19f 100644 --- a/common/networkselectionmodel.cpp +++ b/common/networkselectionmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkselectionmodel.h" diff --git a/common/networkselectionmodel.h b/common/networkselectionmodel.h index 754f5601d9..59a9996397 100644 --- a/common/networkselectionmodel.h +++ b/common/networkselectionmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKSELECTIONMODEL_H diff --git a/common/objectbroker.cpp b/common/objectbroker.cpp index 898bbf900d..62a0cef95a 100644 --- a/common/objectbroker.cpp +++ b/common/objectbroker.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectbroker.h" diff --git a/common/objectbroker.h b/common/objectbroker.h index ede0b75210..87e7744e7d 100644 --- a/common/objectbroker.h +++ b/common/objectbroker.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTBROKER_H diff --git a/common/objectid.h b/common/objectid.h index 1e7f3b91b5..b9e115968e 100644 --- a/common/objectid.h +++ b/common/objectid.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTID_H diff --git a/common/objectidfilterproxymodel.cpp b/common/objectidfilterproxymodel.cpp index 433f63856f..0090b10223 100644 --- a/common/objectidfilterproxymodel.cpp +++ b/common/objectidfilterproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectidfilterproxymodel.h" @@ -20,7 +17,7 @@ using namespace GammaRay; ObjectIdsFilterProxyModel::ObjectIdsFilterProxyModel(QObject *parent) - : KRecursiveFilterProxyModel(parent) + : RecursiveProxyModelBase(parent) { } @@ -48,7 +45,7 @@ bool ObjectIdsFilterProxyModel::acceptRow(int source_row, const QModelIndex &sou { // shortcut for the common case, the object id stuff below allocates memory and does expensive model lookups if (m_ids.isEmpty()) { - return KRecursiveFilterProxyModel::acceptRow(source_row, source_parent); + return RecursiveProxyModelBase::acceptRow(source_row, source_parent); } const QModelIndex source_index = sourceModel()->index(source_row, 0, source_parent); @@ -61,7 +58,7 @@ bool ObjectIdsFilterProxyModel::acceptRow(int source_row, const QModelIndex &sou return false; } - return KRecursiveFilterProxyModel::acceptRow(source_row, source_parent); + return RecursiveProxyModelBase::acceptRow(source_row, source_parent); } bool ObjectIdsFilterProxyModel::filterAcceptsObjectId(const GammaRay::ObjectId &id) const diff --git a/common/objectidfilterproxymodel.h b/common/objectidfilterproxymodel.h index 188ff47b32..e3553d48cd 100644 --- a/common/objectidfilterproxymodel.h +++ b/common/objectidfilterproxymodel.h @@ -6,30 +6,27 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTIDFILTERPROXYMODEL_H #define GAMMARAY_OBJECTIDFILTERPROXYMODEL_H #include "gammaray_common_export.h" -#include "3rdparty/kde/krecursivefilterproxymodel.h" #include +#include namespace GammaRay { /** - * @brief A KRecursiveFilterProxyModel for ObjectIds. + * @brief A RecursiveFilterProxyModel for ObjectIds. * * Filter in and sort according to the objects list. */ -class GAMMARAY_COMMON_EXPORT ObjectIdsFilterProxyModel : public KRecursiveFilterProxyModel +class GAMMARAY_COMMON_EXPORT ObjectIdsFilterProxyModel : public RecursiveProxyModelBase { Q_OBJECT diff --git a/common/objectmodel.h b/common/objectmodel.h index 4a672b1da0..9a36b40267 100644 --- a/common/objectmodel.h +++ b/common/objectmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file diff --git a/common/paintanalyzerinterface.cpp b/common/paintanalyzerinterface.cpp index 4c189f94a4..b7252639c3 100644 --- a/common/paintanalyzerinterface.cpp +++ b/common/paintanalyzerinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintanalyzerinterface.h" diff --git a/common/paintanalyzerinterface.h b/common/paintanalyzerinterface.h index 03a4b2319e..dd0d2d73fe 100644 --- a/common/paintanalyzerinterface.h +++ b/common/paintanalyzerinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTANALYZERINTERFACE_H diff --git a/common/paintbuffermodelroles.h b/common/paintbuffermodelroles.h index 228540da05..7a1e3331db 100644 --- a/common/paintbuffermodelroles.h +++ b/common/paintbuffermodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTBUFFERMODELROLES_H diff --git a/common/paths.cpp b/common/paths.cpp index 00fc31881d..6bbdbb8b04 100644 --- a/common/paths.cpp +++ b/common/paths.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/common/paths.h b/common/paths.h index a26beaa8ef..357c8cbda6 100644 --- a/common/paths.h +++ b/common/paths.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PATHS_H diff --git a/common/plugininfo.cpp b/common/plugininfo.cpp index 2ff2871e42..8a654e4da1 100644 --- a/common/plugininfo.cpp +++ b/common/plugininfo.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "plugininfo.h" diff --git a/common/plugininfo.h b/common/plugininfo.h index 3a32c52656..0ca4592180 100644 --- a/common/plugininfo.h +++ b/common/plugininfo.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PLUGININFO_H diff --git a/common/pluginmanager.cpp b/common/pluginmanager.cpp index d6fc57654f..02f7226462 100644 --- a/common/pluginmanager.cpp +++ b/common/pluginmanager.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/common/pluginmanager.h b/common/pluginmanager.h index 5db3b027bf..b6655d543f 100644 --- a/common/pluginmanager.h +++ b/common/pluginmanager.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PLUGINMANAGER_H diff --git a/common/probecontrollerinterface.cpp b/common/probecontrollerinterface.cpp index f45a8fab73..6e7d8828a6 100644 --- a/common/probecontrollerinterface.cpp +++ b/common/probecontrollerinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "probecontrollerinterface.h" diff --git a/common/probecontrollerinterface.h b/common/probecontrollerinterface.h index 1bd4f3d4c4..113b36c3a3 100644 --- a/common/probecontrollerinterface.h +++ b/common/probecontrollerinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBECONTROLLERINTERFACE_H diff --git a/common/problem.h b/common/problem.h index 55527bda3b..a8c96910b4 100644 --- a/common/problem.h +++ b/common/problem.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEM_H diff --git a/common/propertycontrollerinterface.cpp b/common/propertycontrollerinterface.cpp index 82a86f35d5..ef2fb6efdb 100644 --- a/common/propertycontrollerinterface.cpp +++ b/common/propertycontrollerinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertycontrollerinterface.h" diff --git a/common/propertycontrollerinterface.h b/common/propertycontrollerinterface.h index a454c380ed..0578e7c557 100644 --- a/common/propertycontrollerinterface.h +++ b/common/propertycontrollerinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYCONTROLLERINTERFACE_H diff --git a/common/propertymodel.h b/common/propertymodel.h index 051040d81e..bb4785ef6f 100644 --- a/common/propertymodel.h +++ b/common/propertymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYMODEL_H diff --git a/common/propertysyncer.cpp b/common/propertysyncer.cpp index bf9c9479b2..1e06c20027 100644 --- a/common/propertysyncer.cpp +++ b/common/propertysyncer.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertysyncer.h" diff --git a/common/propertysyncer.h b/common/propertysyncer.h index d2509d150e..684cc21a8f 100644 --- a/common/propertysyncer.h +++ b/common/propertysyncer.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYSYNCER_H diff --git a/common/protocol.cpp b/common/protocol.cpp index 026413492c..d49ce5be1d 100644 --- a/common/protocol.cpp +++ b/common/protocol.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "protocol.h" @@ -42,7 +39,7 @@ QModelIndex toQModelIndex(const QAbstractItemModel *model, const Protocol::Model qint32 version() { - return 37; + return 38; } qint32 broadcastFormatVersion() diff --git a/common/protocol.h b/common/protocol.h index 3641faf6f4..faed842247 100644 --- a/common/protocol.h +++ b/common/protocol.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROTOCOL_H diff --git a/common/proxyfactorybase.cpp b/common/proxyfactorybase.cpp index 7fe6fa8c47..c89d48689e 100644 --- a/common/proxyfactorybase.cpp +++ b/common/proxyfactorybase.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "proxyfactorybase.h" diff --git a/common/proxyfactorybase.h b/common/proxyfactorybase.h index 46374829cd..c857241aac 100644 --- a/common/proxyfactorybase.h +++ b/common/proxyfactorybase.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROXYFACTORYBASE_H diff --git a/common/qmetaobjectvalidatorresult.h b/common/qmetaobjectvalidatorresult.h index 5c71d74375..a1bd2b7429 100644 --- a/common/qmetaobjectvalidatorresult.h +++ b/common/qmetaobjectvalidatorresult.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMETAOBJECTVALIDATOR_RESULT_H diff --git a/common/recursiveproxymodelbase.cpp b/common/recursiveproxymodelbase.cpp new file mode 100644 index 0000000000..0ce52a168b --- /dev/null +++ b/common/recursiveproxymodelbase.cpp @@ -0,0 +1,18 @@ +/* + recursiveproxymodelbase.cpp + + This file is part of GammaRay, the Qt application inspection and manipulation tool. + + SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company + Author: Waqar Ahmed + + SPDX-License-Identifier: GPL-2.0-or-later + + Contact KDAB at for commercial licensing options. +*/ +#include "recursiveproxymodelbase.h" + +bool RecursiveProxyModelBase::acceptRow(int sourceRow, const QModelIndex &sourceParent) const +{ + return QSortFilterProxyModel::filterAcceptsRow(sourceRow, sourceParent); +} diff --git a/common/recursiveproxymodelbase.h b/common/recursiveproxymodelbase.h new file mode 100644 index 0000000000..82cc66dd7e --- /dev/null +++ b/common/recursiveproxymodelbase.h @@ -0,0 +1,53 @@ +/* + recursiveproxymodelbase.h + + This file is part of GammaRay, the Qt application inspection and manipulation tool. + + SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company + Author: Waqar Ahmed + + SPDX-License-Identifier: GPL-2.0-or-later + + Contact KDAB at for commercial licensing options. +*/ + +#ifndef GAMMARAY_RECURSIVEPROXYMODELBASE_H +#define GAMMARAY_RECURSIVEPROXYMODELBASE_H + +#include "gammaray_common_export.h" + +#include + +/** + * NOTE: This class can be removed once we raise our minimum Qt version to 5.10 or above + */ + +#if QT_VERSION < QT_VERSION_CHECK(6, 6, 0) +#include +#define GAMMARAY_PROXY_BASE_CLASS KRecursiveFilterProxyModel +#else +#include +#define GAMMARAY_PROXY_BASE_CLASS QSortFilterProxyModel +#endif + +class GAMMARAY_COMMON_EXPORT RecursiveProxyModelBase : public +#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0) + KRecursiveFilterProxyModel +#else + QSortFilterProxyModel +#endif +{ +public: +#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0) + using KRecursiveFilterProxyModel::KRecursiveFilterProxyModel; +#else + RecursiveProxyModelBase(QObject *parent) + : QSortFilterProxyModel(parent) + { + setRecursiveFilteringEnabled(true); + } +#endif + + virtual bool acceptRow(int sourceRow, const QModelIndex &sourceParent) const; +}; +#endif diff --git a/common/remotemodelroles.h b/common/remotemodelroles.h index 3a8ee244fa..f9bd1b3dcd 100644 --- a/common/remotemodelroles.h +++ b/common/remotemodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEMODELROLES_H @@ -45,6 +42,9 @@ enum NodeState Q_DECLARE_FLAGS(NodeStates, NodeState) } +/*! Marker that is used to restore message reading if the stream is unreadable */ +static Q_CONSTEXPR const char REMOTE_MODEL_MARKER[] = "REMOTE_MODEL_MARKER"; + } Q_DECLARE_OPERATORS_FOR_FLAGS(GammaRay::RemoteModelNodeState::NodeStates) diff --git a/common/remoteviewframe.cpp b/common/remoteviewframe.cpp index 508dc364fa..9d6e36e5be 100644 --- a/common/remoteviewframe.cpp +++ b/common/remoteviewframe.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "remoteviewframe.h" diff --git a/common/remoteviewframe.h b/common/remoteviewframe.h index b85f42830e..6ceaed7b77 100644 --- a/common/remoteviewframe.h +++ b/common/remoteviewframe.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEVIEWFRAME_H diff --git a/common/remoteviewinterface.cpp b/common/remoteviewinterface.cpp index 1caaaaea6b..6af71df1f8 100644 --- a/common/remoteviewinterface.cpp +++ b/common/remoteviewinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "remoteviewinterface.h" diff --git a/common/remoteviewinterface.h b/common/remoteviewinterface.h index 8225f9513a..35dd051390 100644 --- a/common/remoteviewinterface.h +++ b/common/remoteviewinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEVIEWINTERFACE_H @@ -78,7 +75,11 @@ public slots: signals: void reset(); +#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) + void elementsAtReceived(const QList &ids, int bestCandidate); +#else void elementsAtReceived(const GammaRay::ObjectIds &ids, int bestCandidate); +#endif void frameUpdated(const GammaRay::RemoteViewFrame &frame); private: diff --git a/common/selflocator.cpp b/common/selflocator.cpp index 5200220505..54f6045772 100644 --- a/common/selflocator.cpp +++ b/common/selflocator.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "selflocator.h" diff --git a/common/selflocator.h b/common/selflocator.h index cbaeaa4629..eb2affa6cb 100644 --- a/common/selflocator.h +++ b/common/selflocator.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SELFLOCATOR_H diff --git a/common/settempvalue.h b/common/settempvalue.h index 762f17bc15..75f62ae63f 100644 --- a/common/settempvalue.h +++ b/common/settempvalue.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SETTEMPVALUE_H diff --git a/common/sharedpool.h b/common/sharedpool.h index 8f7064e552..202c60c77d 100644 --- a/common/sharedpool.h +++ b/common/sharedpool.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SHAREDPOOL_H diff --git a/common/sourcelocation.cpp b/common/sourcelocation.cpp index 0cec6e2576..c903df86da 100644 --- a/common/sourcelocation.cpp +++ b/common/sourcelocation.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sourcelocation.h" diff --git a/common/sourcelocation.h b/common/sourcelocation.h index 0a86983743..35685c74ea 100644 --- a/common/sourcelocation.h +++ b/common/sourcelocation.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SOURCELOCATION_H diff --git a/common/streamoperators.cpp b/common/streamoperators.cpp index 4071b283ae..bd8e4e33b5 100644 --- a/common/streamoperators.cpp +++ b/common/streamoperators.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "streamoperators.h" diff --git a/common/streamoperators.h b/common/streamoperators.h index 0f354c4491..1fefaa39f6 100644 --- a/common/streamoperators.h +++ b/common/streamoperators.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STREAMOPERATORS_H diff --git a/common/toolmanagerinterface.cpp b/common/toolmanagerinterface.cpp index 4f2750c511..d00412ca47 100644 --- a/common/toolmanagerinterface.cpp +++ b/common/toolmanagerinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "toolmanagerinterface.h" diff --git a/common/toolmanagerinterface.h b/common/toolmanagerinterface.h index f313e0e67a..89d8e9df84 100644 --- a/common/toolmanagerinterface.h +++ b/common/toolmanagerinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TOOLMANAGERINTERFACE_H diff --git a/common/tools/messagehandler/messagehandlerinterface.cpp b/common/tools/messagehandler/messagehandlerinterface.cpp index 0d680a7a50..91c4479690 100644 --- a/common/tools/messagehandler/messagehandlerinterface.cpp +++ b/common/tools/messagehandler/messagehandlerinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagehandlerinterface.h" diff --git a/common/tools/messagehandler/messagehandlerinterface.h b/common/tools/messagehandler/messagehandlerinterface.h index 7e10f215e9..518a7dd1f1 100644 --- a/common/tools/messagehandler/messagehandlerinterface.h +++ b/common/tools/messagehandler/messagehandlerinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEHANDLER_MESSAGEHANDLERINTERFACE_H diff --git a/common/tools/messagehandler/messagemodelroles.h b/common/tools/messagehandler/messagemodelroles.h index bf487433a8..4edeaa0b71 100644 --- a/common/tools/messagehandler/messagemodelroles.h +++ b/common/tools/messagehandler/messagemodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEMODELROLES diff --git a/common/tools/metaobjectbrowser/qmetaobjectmodel.h b/common/tools/metaobjectbrowser/qmetaobjectmodel.h index b54fdec905..558b9780f1 100644 --- a/common/tools/metaobjectbrowser/qmetaobjectmodel.h +++ b/common/tools/metaobjectbrowser/qmetaobjectmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECTBROWSER_QMETAOBJECTMODEL_H diff --git a/common/tools/metatypebrowser/metatypebrowserinterface.cpp b/common/tools/metatypebrowser/metatypebrowserinterface.cpp index c79f788726..2ee613f4a4 100644 --- a/common/tools/metatypebrowser/metatypebrowserinterface.cpp +++ b/common/tools/metatypebrowser/metatypebrowserinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metatypebrowserinterface.h" diff --git a/common/tools/metatypebrowser/metatypebrowserinterface.h b/common/tools/metatypebrowser/metatypebrowserinterface.h index a029fed775..65754c703a 100644 --- a/common/tools/metatypebrowser/metatypebrowserinterface.h +++ b/common/tools/metatypebrowser/metatypebrowserinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METATYPEBROWSERINTERFACE_H diff --git a/common/tools/metatypebrowser/metatyperoles.h b/common/tools/metatypebrowser/metatyperoles.h index 79439902e9..2f79a723ca 100644 --- a/common/tools/metatypebrowser/metatyperoles.h +++ b/common/tools/metatypebrowser/metatyperoles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METATYPEROLES_H diff --git a/common/tools/objectinspector/connectionsextensioninterface.cpp b/common/tools/objectinspector/connectionsextensioninterface.cpp index 0a84b4317a..d7de994a31 100644 --- a/common/tools/objectinspector/connectionsextensioninterface.cpp +++ b/common/tools/objectinspector/connectionsextensioninterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "connectionsextensioninterface.h" diff --git a/common/tools/objectinspector/connectionsextensioninterface.h b/common/tools/objectinspector/connectionsextensioninterface.h index 12bd0a6424..8dac3d88dd 100644 --- a/common/tools/objectinspector/connectionsextensioninterface.h +++ b/common/tools/objectinspector/connectionsextensioninterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CONNECTIONSEXTENSIONINTERFACE_H diff --git a/common/tools/objectinspector/connectionsmodelroles.h b/common/tools/objectinspector/connectionsmodelroles.h index 429e2a6c80..39c7b242ff 100644 --- a/common/tools/objectinspector/connectionsmodelroles.h +++ b/common/tools/objectinspector/connectionsmodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CONNECTIONSMODELROLES_H diff --git a/common/tools/objectinspector/methodmodel.h b/common/tools/objectinspector/methodmodel.h index d0ea71a5d5..8b7df6c3fc 100644 --- a/common/tools/objectinspector/methodmodel.h +++ b/common/tools/objectinspector/methodmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METHODMODEL_H diff --git a/common/tools/objectinspector/methodsextensioninterface.cpp b/common/tools/objectinspector/methodsextensioninterface.cpp index a44ead1e65..7738131f0e 100644 --- a/common/tools/objectinspector/methodsextensioninterface.cpp +++ b/common/tools/objectinspector/methodsextensioninterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "methodsextensioninterface.h" diff --git a/common/tools/objectinspector/methodsextensioninterface.h b/common/tools/objectinspector/methodsextensioninterface.h index 60ef34f0f1..f044e12725 100644 --- a/common/tools/objectinspector/methodsextensioninterface.h +++ b/common/tools/objectinspector/methodsextensioninterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METHODSEXTENSIONINTERFACE_H diff --git a/common/tools/objectinspector/propertiesextensioninterface.cpp b/common/tools/objectinspector/propertiesextensioninterface.cpp index 0f7efd7640..59228cdd25 100644 --- a/common/tools/objectinspector/propertiesextensioninterface.cpp +++ b/common/tools/objectinspector/propertiesextensioninterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertiesextensioninterface.h" diff --git a/common/tools/objectinspector/propertiesextensioninterface.h b/common/tools/objectinspector/propertiesextensioninterface.h index 94c6865d79..53b0c10bd8 100644 --- a/common/tools/objectinspector/propertiesextensioninterface.h +++ b/common/tools/objectinspector/propertiesextensioninterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTIESEXTENSIONINTERFACE_H diff --git a/common/tools/problemreporter/problemmodelroles.h b/common/tools/problemreporter/problemmodelroles.h index 25a0983a70..e777d5dc43 100644 --- a/common/tools/problemreporter/problemmodelroles.h +++ b/common/tools/problemreporter/problemmodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMMODELROLES_H diff --git a/common/tools/problemreporter/problemreporterinterface.cpp b/common/tools/problemreporter/problemreporterinterface.cpp index fff297d4eb..2dc92c5b3b 100644 --- a/common/tools/problemreporter/problemreporterinterface.cpp +++ b/common/tools/problemreporter/problemreporterinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "problemreporterinterface.h" diff --git a/common/tools/problemreporter/problemreporterinterface.h b/common/tools/problemreporter/problemreporterinterface.h index a25233109c..ecac59131b 100644 --- a/common/tools/problemreporter/problemreporterinterface.h +++ b/common/tools/problemreporter/problemreporterinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMREPORTERINTERFACE_H diff --git a/common/tools/resourcebrowser/resourcebrowserinterface.cpp b/common/tools/resourcebrowser/resourcebrowserinterface.cpp index 32d8388732..4854879db8 100644 --- a/common/tools/resourcebrowser/resourcebrowserinterface.cpp +++ b/common/tools/resourcebrowser/resourcebrowserinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "resourcebrowserinterface.h" diff --git a/common/tools/resourcebrowser/resourcebrowserinterface.h b/common/tools/resourcebrowser/resourcebrowserinterface.h index f47dc7c107..5ef324b620 100644 --- a/common/tools/resourcebrowser/resourcebrowserinterface.h +++ b/common/tools/resourcebrowser/resourcebrowserinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_RESOURCEBROWSERINTERFACE_H diff --git a/common/transferimage.cpp b/common/transferimage.cpp index f72093ed1d..869fddb630 100644 --- a/common/transferimage.cpp +++ b/common/transferimage.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "transferimage.h" diff --git a/common/transferimage.h b/common/transferimage.h index 311ab82d9a..eb2ac5a374 100644 --- a/common/transferimage.h +++ b/common/transferimage.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TRANSFERIMAGE_H diff --git a/common/translator.cpp b/common/translator.cpp index 0cf47e362b..53609a460e 100644 --- a/common/translator.cpp +++ b/common/translator.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/common/translator.h b/common/translator.h index 59c76aead6..116040ba17 100644 --- a/common/translator.h +++ b/common/translator.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TRANSLATOR_H diff --git a/common/variantwrapper.h b/common/variantwrapper.h index 58bcd88ba9..484b29ffc0 100644 --- a/common/variantwrapper.h +++ b/common/variantwrapper.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_VARIANTWRAPPER_H diff --git a/conan/ECM/conanfile.py b/conan/ECM/conanfile.py index b9e415e8c5..47bc4bfeea 100644 --- a/conan/ECM/conanfile.py +++ b/conan/ECM/conanfile.py @@ -1,15 +1,11 @@ -############################################################################### # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # Author: Renato Araujo Oliveira Filho # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # from conans import ConanFile, CMake, tools diff --git a/conan/GammaRay/conanfile.py b/conan/GammaRay/conanfile.py index 95cf3cb743..06d14bea43 100644 --- a/conan/GammaRay/conanfile.py +++ b/conan/GammaRay/conanfile.py @@ -1,15 +1,11 @@ -############################################################################### # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # Author: Renato Araujo Oliveira Filho # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # from conans import ConanFile, CMake, tools @@ -72,7 +68,6 @@ def build(self): self.cmake.definitions["GAMMARAY_BUILD_UI"] = self.options.build_ui self.cmake.definitions["GAMMARAY_PROBE_ONLY_BUILD"] = self.options.probe_only_build self.cmake.definitions["GAMMARAY_CLIENT_ONLY_BUILD"] = self.options.client_only_build - self.cmake.definitions["GAMMARAY_ENABLE_GPL_ONLY_FEATURES"] = self.options.enable_gpl_only_features self.cmake.definitions["GAMMARAY_INSTALL_QT_LAYOUT"] = self.options.install_qt_layout self.cmake.definitions["GAMMARAY_BUILD_CLI_INJECTOR"] = self.options.build_cli_injector self.cmake.definitions["GAMMARAY_MULTI_BUILD"] = self.options.multi_build diff --git a/conan/KSyntaxHighlighting/conanfile.py b/conan/KSyntaxHighlighting/conanfile.py index 51b96a96a4..a70fc60115 100644 --- a/conan/KSyntaxHighlighting/conanfile.py +++ b/conan/KSyntaxHighlighting/conanfile.py @@ -1,15 +1,11 @@ -############################################################################### # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # Author: Renato Araujo Oliveira Filho # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # from conans import ConanFile, CMake, tools diff --git a/config-gammaray-version.h.cmake b/config-gammaray-version.h.cmake index 86353dbcec..7f571b6c94 100644 --- a/config-gammaray-version.h.cmake +++ b/config-gammaray-version.h.cmake @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef CONFIG_GAMMARAY_VERSION_H diff --git a/config-gammaray.h.cmake b/config-gammaray.h.cmake index 7544048eba..df74636aa1 100644 --- a/config-gammaray.h.cmake +++ b/config-gammaray.h.cmake @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #if !defined(CONFIG_GAMMARAY_H) @@ -67,7 +64,6 @@ #cmakedefine HAVE_SYS_ELF_H #cmakedefine HAVE_ELF -#cmakedefine GAMMARAY_ENABLE_GPL_ONLY_FEATURES #cmakedefine GAMMARAY_CORE_ONLY_LAUNCHER #cmakedefine GAMMARAY_STATIC_PROBE #cmakedefine GAMMARAY_DISABLE_FEEDBACK diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index e2e34290db..46f84913c0 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # set(gammaray_srcs ${CMAKE_SOURCE_DIR}/3rdparty/qt/resourcemodel.cpp diff --git a/core/abstractbindingprovider.cpp b/core/abstractbindingprovider.cpp index bfcf376f5a..15ca6c2b38 100644 --- a/core/abstractbindingprovider.cpp +++ b/core/abstractbindingprovider.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/core/abstractbindingprovider.h b/core/abstractbindingprovider.h index 41747f751c..c3d07179a0 100644 --- a/core/abstractbindingprovider.h +++ b/core/abstractbindingprovider.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ABSTRACTBINDINGPROVIDER_H diff --git a/core/aggregatedpropertymodel.cpp b/core/aggregatedpropertymodel.cpp index a84a129230..b2c6b58afc 100644 --- a/core/aggregatedpropertymodel.cpp +++ b/core/aggregatedpropertymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "aggregatedpropertymodel.h" diff --git a/core/aggregatedpropertymodel.h b/core/aggregatedpropertymodel.h index 387cb14432..b8e7d171dc 100644 --- a/core/aggregatedpropertymodel.h +++ b/core/aggregatedpropertymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_AGGREGATEDPROPERTYMODEL_H diff --git a/core/associativepropertyadaptor.cpp b/core/associativepropertyadaptor.cpp index eea3f0dde9..c7fef162e8 100644 --- a/core/associativepropertyadaptor.cpp +++ b/core/associativepropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "associativepropertyadaptor.h" diff --git a/core/associativepropertyadaptor.h b/core/associativepropertyadaptor.h index f9c08f5af8..5c4701314d 100644 --- a/core/associativepropertyadaptor.h +++ b/core/associativepropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ASSOCIATIVEPROPERTYADAPTOR_H diff --git a/core/attributemodel.cpp b/core/attributemodel.cpp index 8d7fb4f095..0347aaeb68 100644 --- a/core/attributemodel.cpp +++ b/core/attributemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "attributemodel.h" diff --git a/core/attributemodel.h b/core/attributemodel.h index ecea559d0b..2d97a4ceee 100644 --- a/core/attributemodel.h +++ b/core/attributemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ATTRIBUTEMODEL_H diff --git a/core/bindingaggregator.cpp b/core/bindingaggregator.cpp index 8e5995ea9d..cab9b8ba83 100644 --- a/core/bindingaggregator.cpp +++ b/core/bindingaggregator.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/core/bindingaggregator.h b/core/bindingaggregator.h index e25c1cf67f..ed25e4705f 100644 --- a/core/bindingaggregator.h +++ b/core/bindingaggregator.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BINDINGAGGREGATOR_H diff --git a/core/bindingnode.cpp b/core/bindingnode.cpp index 0f53c8c8d8..162192431d 100644 --- a/core/bindingnode.cpp +++ b/core/bindingnode.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/core/bindingnode.h b/core/bindingnode.h index b424901327..d81f25be4c 100644 --- a/core/bindingnode.h +++ b/core/bindingnode.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BINDINGNODE_H diff --git a/core/classesiconsrepositoryserver.cpp b/core/classesiconsrepositoryserver.cpp index bded0f9624..8eb05751b7 100644 --- a/core/classesiconsrepositoryserver.cpp +++ b/core/classesiconsrepositoryserver.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "classesiconsrepositoryserver.h" diff --git a/core/classesiconsrepositoryserver.h b/core/classesiconsrepositoryserver.h index 6db9f412c0..c09782323c 100644 --- a/core/classesiconsrepositoryserver.h +++ b/core/classesiconsrepositoryserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLASSESICONSREPOSITORYSERVER_H diff --git a/core/dynamicpropertyadaptor.cpp b/core/dynamicpropertyadaptor.cpp index ba0379ea87..860349b1cc 100644 --- a/core/dynamicpropertyadaptor.cpp +++ b/core/dynamicpropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "dynamicpropertyadaptor.h" diff --git a/core/dynamicpropertyadaptor.h b/core/dynamicpropertyadaptor.h index d62909c860..f8d7242380 100644 --- a/core/dynamicpropertyadaptor.h +++ b/core/dynamicpropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_DYNAMICPROPERTYADAPTOR_H diff --git a/core/enumrepositoryserver.cpp b/core/enumrepositoryserver.cpp index e333cde754..cb2c25b9c4 100644 --- a/core/enumrepositoryserver.cpp +++ b/core/enumrepositoryserver.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumrepositoryserver.h" diff --git a/core/enumrepositoryserver.h b/core/enumrepositoryserver.h index 921c7fe7b0..bfcaff2843 100644 --- a/core/enumrepositoryserver.h +++ b/core/enumrepositoryserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENUMREPOSITORYSERVER_H diff --git a/core/enumutil.cpp b/core/enumutil.cpp index 73e5d8c0fc..3b04186dfc 100644 --- a/core/enumutil.cpp +++ b/core/enumutil.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumutil.h" diff --git a/core/enumutil.h b/core/enumutil.h index b0bacde998..99fb2fb20a 100644 --- a/core/enumutil.h +++ b/core/enumutil.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENUMUTIL_H diff --git a/core/execution.cpp b/core/execution.cpp index 05fd2b0380..33bc26298f 100644 --- a/core/execution.cpp +++ b/core/execution.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/execution.h b/core/execution.h index ac939639e2..05cf4b8fd3 100644 --- a/core/execution.h +++ b/core/execution.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EXECUTION_H diff --git a/core/favoriteobject.cpp b/core/favoriteobject.cpp index d1bf9601a8..e0a934089b 100644 --- a/core/favoriteobject.cpp +++ b/core/favoriteobject.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "favoriteobject.h" diff --git a/core/favoriteobject.h b/core/favoriteobject.h index 792e74976e..743060bfd4 100644 --- a/core/favoriteobject.h +++ b/core/favoriteobject.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FAVORITEOBJECT_H #define GAMMARAY_FAVORITEOBJECT_H diff --git a/core/jsonpropertyadaptor.cpp b/core/jsonpropertyadaptor.cpp index 2d7f13e96f..35d64aab8d 100644 --- a/core/jsonpropertyadaptor.cpp +++ b/core/jsonpropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "jsonpropertyadaptor.h" diff --git a/core/jsonpropertyadaptor.h b/core/jsonpropertyadaptor.h index d492e9ffa1..d7e78103d4 100644 --- a/core/jsonpropertyadaptor.h +++ b/core/jsonpropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Nicolas Fella - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_JSONPROPERTYADAPTOR_H diff --git a/core/metaenum.h b/core/metaenum.h index 7b55b07bdc..b4374b6b14 100644 --- a/core/metaenum.h +++ b/core/metaenum.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAENUM_H diff --git a/core/metaobject.cpp b/core/metaobject.cpp index 7c97b8bdbd..3103a1a555 100644 --- a/core/metaobject.cpp +++ b/core/metaobject.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaobject.h" diff --git a/core/metaobject.h b/core/metaobject.h index e61723605d..f444014c3d 100644 --- a/core/metaobject.h +++ b/core/metaobject.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECT_H diff --git a/core/metaobjectmodel.h b/core/metaobjectmodel.h index 9eb887e24f..47f36fc4d5 100644 --- a/core/metaobjectmodel.h +++ b/core/metaobjectmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECTMODEL_H diff --git a/core/metaobjectregistry.cpp b/core/metaobjectregistry.cpp index e1e0838f93..6d826bd26b 100644 --- a/core/metaobjectregistry.cpp +++ b/core/metaobjectregistry.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaobjectregistry.h" diff --git a/core/metaobjectregistry.h b/core/metaobjectregistry.h index 6585711d01..5099410048 100644 --- a/core/metaobjectregistry.h +++ b/core/metaobjectregistry.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECTREGISTRY_H diff --git a/core/metaobjectrepository.cpp b/core/metaobjectrepository.cpp index 443a6f04da..8b108b6ccb 100644 --- a/core/metaobjectrepository.cpp +++ b/core/metaobjectrepository.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaobjectrepository.h" diff --git a/core/metaobjectrepository.h b/core/metaobjectrepository.h index 5462b5f182..303aa90d89 100644 --- a/core/metaobjectrepository.h +++ b/core/metaobjectrepository.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file metaobjectrepository.h diff --git a/core/metaproperty.cpp b/core/metaproperty.cpp index 1f7e4961f6..c24aa9e066 100644 --- a/core/metaproperty.cpp +++ b/core/metaproperty.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaproperty.h" diff --git a/core/metaproperty.h b/core/metaproperty.h index b45c6ac6f8..b8021cdfaa 100644 --- a/core/metaproperty.h +++ b/core/metaproperty.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAPROPERTY_H diff --git a/core/metapropertyadaptor.cpp b/core/metapropertyadaptor.cpp index a0be67aba3..b5cd8c6dbc 100644 --- a/core/metapropertyadaptor.cpp +++ b/core/metapropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metapropertyadaptor.h" diff --git a/core/metapropertyadaptor.h b/core/metapropertyadaptor.h index 3ddbf24de7..35caf484e9 100644 --- a/core/metapropertyadaptor.h +++ b/core/metapropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAPROPERTYADAPTOR_H diff --git a/core/methodargumentmodel.cpp b/core/methodargumentmodel.cpp index 56641b215a..9702412767 100644 --- a/core/methodargumentmodel.cpp +++ b/core/methodargumentmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "methodargumentmodel.h" diff --git a/core/methodargumentmodel.h b/core/methodargumentmodel.h index 975329a46a..b5acb1e156 100644 --- a/core/methodargumentmodel.h +++ b/core/methodargumentmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METHODARGUMENTMODEL_H diff --git a/core/multisignalmapper.cpp b/core/multisignalmapper.cpp index b7525d1764..1a2925c339 100644 --- a/core/multisignalmapper.cpp +++ b/core/multisignalmapper.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "multisignalmapper.h" diff --git a/core/multisignalmapper.h b/core/multisignalmapper.h index b75efb887f..8d91236c34 100644 --- a/core/multisignalmapper.h +++ b/core/multisignalmapper.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MULTISIGNALMAPPER_H diff --git a/core/objectclassinfomodel.cpp b/core/objectclassinfomodel.cpp index 2fbcd91985..6fe00ba3ba 100644 --- a/core/objectclassinfomodel.cpp +++ b/core/objectclassinfomodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectclassinfomodel.h" diff --git a/core/objectclassinfomodel.h b/core/objectclassinfomodel.h index d51d1d6ef1..f68c4721db 100644 --- a/core/objectclassinfomodel.h +++ b/core/objectclassinfomodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTCLASSINFOMODEL_H diff --git a/core/objectdataprovider.cpp b/core/objectdataprovider.cpp index fbfc092988..42eb5b8808 100644 --- a/core/objectdataprovider.cpp +++ b/core/objectdataprovider.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectdataprovider.h" diff --git a/core/objectdataprovider.h b/core/objectdataprovider.h index 09af1daf58..4d1c1e1b4c 100644 --- a/core/objectdataprovider.h +++ b/core/objectdataprovider.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTDATAPROVIDER_H diff --git a/core/objectenummodel.cpp b/core/objectenummodel.cpp index a7cf8550dc..f52288ed11 100644 --- a/core/objectenummodel.cpp +++ b/core/objectenummodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectenummodel.h" diff --git a/core/objectenummodel.h b/core/objectenummodel.h index 2fbf0b5f78..d0ed4f8b9f 100644 --- a/core/objectenummodel.h +++ b/core/objectenummodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTENUMMODEL_H diff --git a/core/objectinstance.cpp b/core/objectinstance.cpp index 9ce54c9676..4749a7d80a 100644 --- a/core/objectinstance.cpp +++ b/core/objectinstance.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectinstance.h" diff --git a/core/objectinstance.h b/core/objectinstance.h index 40428aafb6..0628dad606 100644 --- a/core/objectinstance.h +++ b/core/objectinstance.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSTANCE_H diff --git a/core/objectlistmodel.cpp b/core/objectlistmodel.cpp index 6032cef693..60a44452f9 100644 --- a/core/objectlistmodel.cpp +++ b/core/objectlistmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectlistmodel.h" diff --git a/core/objectlistmodel.h b/core/objectlistmodel.h index 6339e3e878..0799870cd7 100644 --- a/core/objectlistmodel.h +++ b/core/objectlistmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTLISTMODEL_H diff --git a/core/objectmethodmodel.cpp b/core/objectmethodmodel.cpp index f4893347b8..4c497ec4c5 100644 --- a/core/objectmethodmodel.cpp +++ b/core/objectmethodmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectmethodmodel.h" diff --git a/core/objectmethodmodel.h b/core/objectmethodmodel.h index 5b1198265c..aa61aa1a88 100644 --- a/core/objectmethodmodel.h +++ b/core/objectmethodmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTMETHODMODEL_H diff --git a/core/objectmodelbase.h b/core/objectmodelbase.h index 0acffaa9d0..f3cb03fba0 100644 --- a/core/objectmodelbase.h +++ b/core/objectmodelbase.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file diff --git a/core/objecttreemodel.cpp b/core/objecttreemodel.cpp index df0ece5e8c..d054540766 100644 --- a/core/objecttreemodel.cpp +++ b/core/objecttreemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objecttreemodel.h" diff --git a/core/objecttreemodel.h b/core/objecttreemodel.h index c54d0fccbc..df782bf47e 100644 --- a/core/objecttreemodel.h +++ b/core/objecttreemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTTREEMODEL_H diff --git a/core/objecttypefilterproxymodel.cpp b/core/objecttypefilterproxymodel.cpp index 3cbe4e2e5e..c9be6383e1 100644 --- a/core/objecttypefilterproxymodel.cpp +++ b/core/objecttypefilterproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objecttypefilterproxymodel.h" diff --git a/core/objecttypefilterproxymodel.h b/core/objecttypefilterproxymodel.h index 92cce24319..d3be4a714d 100644 --- a/core/objecttypefilterproxymodel.h +++ b/core/objecttypefilterproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file diff --git a/core/paintanalyzer.cpp b/core/paintanalyzer.cpp index 133e15e97e..4aae0b5ea9 100644 --- a/core/paintanalyzer.cpp +++ b/core/paintanalyzer.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/paintanalyzer.h b/core/paintanalyzer.h index df57fdb581..fc7cb66c6b 100644 --- a/core/paintanalyzer.h +++ b/core/paintanalyzer.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTANALYZER_H diff --git a/core/paintbuffer.cpp b/core/paintbuffer.cpp index 192c1ad243..6dce68b19c 100644 --- a/core/paintbuffer.cpp +++ b/core/paintbuffer.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintbuffer.h" diff --git a/core/paintbuffer.h b/core/paintbuffer.h index ee0fbaf949..6ca431a221 100644 --- a/core/paintbuffer.h +++ b/core/paintbuffer.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTBUFFER_H diff --git a/core/paintbuffermodel.cpp b/core/paintbuffermodel.cpp index 31978dbc1d..096d40d3f3 100644 --- a/core/paintbuffermodel.cpp +++ b/core/paintbuffermodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/paintbuffermodel.h b/core/paintbuffermodel.h index cdda227053..c1ce25d1f1 100644 --- a/core/paintbuffermodel.h +++ b/core/paintbuffermodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_PAINTBUFFERMODEL_H diff --git a/core/painterprofilingreplayer.cpp b/core/painterprofilingreplayer.cpp index 36246041b0..274747dc11 100644 --- a/core/painterprofilingreplayer.cpp +++ b/core/painterprofilingreplayer.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/painterprofilingreplayer.h b/core/painterprofilingreplayer.h index 4cee898ebe..3d8fce2ae4 100644 --- a/core/painterprofilingreplayer.h +++ b/core/painterprofilingreplayer.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTERPROFILINGREPLAYER_H diff --git a/core/pch.h b/core/pch.h index e02055029a..f4b0507135 100644 --- a/core/pch.h +++ b/core/pch.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2022-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #pragma once diff --git a/core/probe.cpp b/core/probe.cpp index 09c6df115c..64319ed02c 100644 --- a/core/probe.cpp +++ b/core/probe.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // krazy:excludeall=null,captruefalse,staticobjects diff --git a/core/probe.h b/core/probe.h index 9af0ad345b..ec04d4e23a 100644 --- a/core/probe.h +++ b/core/probe.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBE_H diff --git a/core/probecontroller.cpp b/core/probecontroller.cpp index 247ae7462d..efcfead972 100644 --- a/core/probecontroller.cpp +++ b/core/probecontroller.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "probecontroller.h" diff --git a/core/probecontroller.h b/core/probecontroller.h index e476e238c6..110978e56c 100644 --- a/core/probecontroller.h +++ b/core/probecontroller.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBECONTROLLER_H diff --git a/core/probeguard.cpp b/core/probeguard.cpp index a0346fb242..890d4285d4 100644 --- a/core/probeguard.cpp +++ b/core/probeguard.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "probeguard.h" diff --git a/core/probeguard.h b/core/probeguard.h index 19fe6565b6..bfc687205f 100644 --- a/core/probeguard.h +++ b/core/probeguard.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBEGUARD_H diff --git a/core/probesettings.cpp b/core/probesettings.cpp index 8d82d40467..067e18a445 100644 --- a/core/probesettings.cpp +++ b/core/probesettings.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/probesettings.h b/core/probesettings.h index 02e1d47b72..f8abf01a8d 100644 --- a/core/probesettings.h +++ b/core/probesettings.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBESETTINGS_H diff --git a/core/problemcollector.cpp b/core/problemcollector.cpp index f2347b2396..c194b452a3 100644 --- a/core/problemcollector.cpp +++ b/core/problemcollector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/core/problemcollector.h b/core/problemcollector.h index 644c860f8c..7c5878e8e9 100644 --- a/core/problemcollector.h +++ b/core/problemcollector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMCOLLECTOR_H diff --git a/core/propertyadaptor.cpp b/core/propertyadaptor.cpp index f50c9af845..0e315d658e 100644 --- a/core/propertyadaptor.cpp +++ b/core/propertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyadaptor.h" diff --git a/core/propertyadaptor.h b/core/propertyadaptor.h index fb2df05e63..b7b0358ac2 100644 --- a/core/propertyadaptor.h +++ b/core/propertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYADAPTOR_H diff --git a/core/propertyadaptorfactory.cpp b/core/propertyadaptorfactory.cpp index 8ddd5c5397..9ca27e3916 100644 --- a/core/propertyadaptorfactory.cpp +++ b/core/propertyadaptorfactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyadaptorfactory.h" diff --git a/core/propertyadaptorfactory.h b/core/propertyadaptorfactory.h index 8d02b67732..aaabe0bed8 100644 --- a/core/propertyadaptorfactory.h +++ b/core/propertyadaptorfactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYADAPTORFACTORY_H diff --git a/core/propertyaggregator.cpp b/core/propertyaggregator.cpp index be20ee5fa8..b02b6b7362 100644 --- a/core/propertyaggregator.cpp +++ b/core/propertyaggregator.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyaggregator.h" diff --git a/core/propertyaggregator.h b/core/propertyaggregator.h index 28fb175cdf..34ef3db700 100644 --- a/core/propertyaggregator.h +++ b/core/propertyaggregator.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYAGGREGATOR_H diff --git a/core/propertycontroller.cpp b/core/propertycontroller.cpp index a9cd117e16..112cb9e4e0 100644 --- a/core/propertycontroller.cpp +++ b/core/propertycontroller.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertycontroller.h" diff --git a/core/propertycontroller.h b/core/propertycontroller.h index 4afeb084a6..edcfb5eaa6 100644 --- a/core/propertycontroller.h +++ b/core/propertycontroller.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYCONTROLLER_H diff --git a/core/propertycontrollerextension.cpp b/core/propertycontrollerextension.cpp index 035e463a75..a352531ced 100644 --- a/core/propertycontrollerextension.cpp +++ b/core/propertycontrollerextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertycontrollerextension.h" diff --git a/core/propertycontrollerextension.h b/core/propertycontrollerextension.h index 755bd52f2d..4c03791ef7 100644 --- a/core/propertycontrollerextension.h +++ b/core/propertycontrollerextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef PROPERTYCONTROLLEREXTENSION_H diff --git a/core/propertydata.cpp b/core/propertydata.cpp index 4377826290..40cf84929c 100644 --- a/core/propertydata.cpp +++ b/core/propertydata.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertydata.h" diff --git a/core/propertydata.h b/core/propertydata.h index 837f33ae55..9d550bb99b 100644 --- a/core/propertydata.h +++ b/core/propertydata.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYDATA_H diff --git a/core/propertyfilter.cpp b/core/propertyfilter.cpp index f99171f870..33411b2c37 100644 --- a/core/propertyfilter.cpp +++ b/core/propertyfilter.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyfilter.h" diff --git a/core/propertyfilter.h b/core/propertyfilter.h index 15235adfb3..b4e8acb932 100644 --- a/core/propertyfilter.h +++ b/core/propertyfilter.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYFILTER_H diff --git a/core/proxytoolfactory.cpp b/core/proxytoolfactory.cpp index e0be37cf8d..848bbdd367 100644 --- a/core/proxytoolfactory.cpp +++ b/core/proxytoolfactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "proxytoolfactory.h" diff --git a/core/proxytoolfactory.h b/core/proxytoolfactory.h index e94ccb51f8..28cee8a1c7 100644 --- a/core/proxytoolfactory.h +++ b/core/proxytoolfactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROXYTOOLFACTORY_H diff --git a/core/qmetaobjectvalidator.cpp b/core/qmetaobjectvalidator.cpp index 360122b787..5338020c8c 100644 --- a/core/qmetaobjectvalidator.cpp +++ b/core/qmetaobjectvalidator.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/qmetaobjectvalidator.h b/core/qmetaobjectvalidator.h index 72d11b6b82..7e52ba2a46 100644 --- a/core/qmetaobjectvalidator.h +++ b/core/qmetaobjectvalidator.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMETAOBJECTVALIDATOR_H diff --git a/core/qmetapropertyadaptor.cpp b/core/qmetapropertyadaptor.cpp index 3eb6609922..ab93c4ffa8 100644 --- a/core/qmetapropertyadaptor.cpp +++ b/core/qmetapropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmetapropertyadaptor.h" diff --git a/core/qmetapropertyadaptor.h b/core/qmetapropertyadaptor.h index 967ea1b81f..13f684ad93 100644 --- a/core/qmetapropertyadaptor.h +++ b/core/qmetapropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMETAPROPERTYADAPTOR_H diff --git a/core/remote/localserverdevice.cpp b/core/remote/localserverdevice.cpp index aa14deaccf..c85200adce 100644 --- a/core/remote/localserverdevice.cpp +++ b/core/remote/localserverdevice.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localserverdevice.h" diff --git a/core/remote/localserverdevice.h b/core/remote/localserverdevice.h index dab92e6f6d..e290aff0cf 100644 --- a/core/remote/localserverdevice.h +++ b/core/remote/localserverdevice.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALSERVERDEVICE_H diff --git a/core/remote/remotemodelserver.cpp b/core/remote/remotemodelserver.cpp index e3198fa40c..1cd44c0295 100644 --- a/core/remote/remotemodelserver.cpp +++ b/core/remote/remotemodelserver.cpp @@ -6,15 +6,13 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "remotemodelserver.h" +#include "common/remotemodelroles.h" #include "server.h" #include #include @@ -186,10 +184,12 @@ void RemoteModelServer::newRequest(const GammaRay::Message &msg) Message msg(m_myAddress, Protocol::ModelContentReply); msg << quint32(indexes.size()); - for (const auto &qmIndex : qAsConst(indexes)) - msg << Protocol::fromQModelIndex(qmIndex) - << filterItemData(m_model->itemData(qmIndex)) - << qint32(m_model->flags(qmIndex)); + for (const auto &qmIndex : qAsConst(indexes)) { + msg << Protocol::fromQModelIndex(qmIndex); + msg << filterItemData(m_model->itemData(qmIndex)); + msg.writeCStringMarker(GammaRay::REMOTE_MODEL_MARKER, sizeof(GammaRay::REMOTE_MODEL_MARKER) - 1); + msg << qint32(m_model->flags(qmIndex)); + } sendMessage(msg); break; diff --git a/core/remote/remotemodelserver.h b/core/remote/remotemodelserver.h index 5ed0cd1e66..61eef6a26a 100644 --- a/core/remote/remotemodelserver.h +++ b/core/remote/remotemodelserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEMODELSERVER_H diff --git a/core/remote/selectionmodelserver.cpp b/core/remote/selectionmodelserver.cpp index c69db2737c..09354bfaea 100644 --- a/core/remote/selectionmodelserver.cpp +++ b/core/remote/selectionmodelserver.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "selectionmodelserver.h" diff --git a/core/remote/selectionmodelserver.h b/core/remote/selectionmodelserver.h index 8736c8bee4..0c43c441e3 100644 --- a/core/remote/selectionmodelserver.h +++ b/core/remote/selectionmodelserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SELECTIONMODELSERVER_H diff --git a/core/remote/server.cpp b/core/remote/server.cpp index 272c1cf31a..e6f83aa97d 100644 --- a/core/remote/server.cpp +++ b/core/remote/server.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/remote/server.h b/core/remote/server.h index 7dd8569d89..484c8ca971 100644 --- a/core/remote/server.h +++ b/core/remote/server.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SERVER_H diff --git a/core/remote/serverdevice.cpp b/core/remote/serverdevice.cpp index acbfcdbb02..245f716225 100644 --- a/core/remote/serverdevice.cpp +++ b/core/remote/serverdevice.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "serverdevice.h" diff --git a/core/remote/serverdevice.h b/core/remote/serverdevice.h index 4dee0cbd23..2be13c342e 100644 --- a/core/remote/serverdevice.h +++ b/core/remote/serverdevice.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SERVERDEVICE_H diff --git a/core/remote/serverproxymodel.cpp b/core/remote/serverproxymodel.cpp index 1bfcbf9200..e20cc32413 100644 --- a/core/remote/serverproxymodel.cpp +++ b/core/remote/serverproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "serverproxymodel.h" diff --git a/core/remote/serverproxymodel.h b/core/remote/serverproxymodel.h index 8b99c49867..de64aacb47 100644 --- a/core/remote/serverproxymodel.h +++ b/core/remote/serverproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SERVERPROXYMODEL_H diff --git a/core/remote/tcpserverdevice.cpp b/core/remote/tcpserverdevice.cpp index ce013103f2..3070d7ea85 100644 --- a/core/remote/tcpserverdevice.cpp +++ b/core/remote/tcpserverdevice.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "tcpserverdevice.h" diff --git a/core/remote/tcpserverdevice.h b/core/remote/tcpserverdevice.h index 72e6660062..e78cb37fcb 100644 --- a/core/remote/tcpserverdevice.h +++ b/core/remote/tcpserverdevice.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TCPSERVERDEVICE_H diff --git a/core/remoteviewserver.cpp b/core/remoteviewserver.cpp index f05a899e9b..1a2b09d9ac 100644 --- a/core/remoteviewserver.cpp +++ b/core/remoteviewserver.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "remoteviewserver.h" diff --git a/core/remoteviewserver.h b/core/remoteviewserver.h index d340b605d9..84b6016c6f 100644 --- a/core/remoteviewserver.h +++ b/core/remoteviewserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEVIEWSERVER_H diff --git a/core/sequentialpropertyadaptor.cpp b/core/sequentialpropertyadaptor.cpp index 43c09f5957..4e0574c133 100644 --- a/core/sequentialpropertyadaptor.cpp +++ b/core/sequentialpropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sequentialpropertyadaptor.h" diff --git a/core/sequentialpropertyadaptor.h b/core/sequentialpropertyadaptor.h index 856cb4b63f..3d8efaa10d 100644 --- a/core/sequentialpropertyadaptor.h +++ b/core/sequentialpropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SEQUENTIALPROPERTYADAPTOR_H diff --git a/core/signalspycallbackset.cpp b/core/signalspycallbackset.cpp index 6452384c98..488871a0d6 100644 --- a/core/signalspycallbackset.cpp +++ b/core/signalspycallbackset.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalspycallbackset.h" diff --git a/core/signalspycallbackset.h b/core/signalspycallbackset.h index b7f7fb588a..f51bece5c9 100644 --- a/core/signalspycallbackset.h +++ b/core/signalspycallbackset.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALSPYCALLBACKSET_H diff --git a/core/singlecolumnobjectproxymodel.cpp b/core/singlecolumnobjectproxymodel.cpp index 81093aa4ee..05150acfad 100644 --- a/core/singlecolumnobjectproxymodel.cpp +++ b/core/singlecolumnobjectproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "singlecolumnobjectproxymodel.h" diff --git a/core/singlecolumnobjectproxymodel.h b/core/singlecolumnobjectproxymodel.h index 3294faff80..6dac2e0137 100644 --- a/core/singlecolumnobjectproxymodel.h +++ b/core/singlecolumnobjectproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file diff --git a/core/stacktracemodel.cpp b/core/stacktracemodel.cpp index 6c19254451..0544b563d2 100644 --- a/core/stacktracemodel.cpp +++ b/core/stacktracemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "stacktracemodel.h" diff --git a/core/stacktracemodel.h b/core/stacktracemodel.h index 5e881dc1f0..f5f20d71ec 100644 --- a/core/stacktracemodel.h +++ b/core/stacktracemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STACKTRACEMODEL_H diff --git a/core/staticprobe.h b/core/staticprobe.h index dbc5114172..ece81b763d 100644 --- a/core/staticprobe.h +++ b/core/staticprobe.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATIC_PROBE_H diff --git a/core/toolfactory.cpp b/core/toolfactory.cpp index 6d0ee1e958..7e487f7458 100644 --- a/core/toolfactory.cpp +++ b/core/toolfactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "toolfactory.h" diff --git a/core/toolfactory.h b/core/toolfactory.h index 612192d292..bca6fec1e0 100644 --- a/core/toolfactory.h +++ b/core/toolfactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file diff --git a/core/toolmanager.cpp b/core/toolmanager.cpp index 84c7751ba4..0b3076879e 100644 --- a/core/toolmanager.cpp +++ b/core/toolmanager.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "toolmanager.h" diff --git a/core/toolmanager.h b/core/toolmanager.h index 92d4bb760a..488ec9b470 100644 --- a/core/toolmanager.h +++ b/core/toolmanager.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TOOLMANAGER_H diff --git a/core/toolpluginerrormodel.cpp b/core/toolpluginerrormodel.cpp index 7977d9ac7e..294fd30a0d 100644 --- a/core/toolpluginerrormodel.cpp +++ b/core/toolpluginerrormodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "toolpluginerrormodel.h" diff --git a/core/toolpluginerrormodel.h b/core/toolpluginerrormodel.h index 0b995476fc..a534c5b19f 100644 --- a/core/toolpluginerrormodel.h +++ b/core/toolpluginerrormodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TOOLPLUGINERRORMODEL_H diff --git a/core/toolpluginmodel.cpp b/core/toolpluginmodel.cpp index e76d31f531..ad9a34ce1b 100644 --- a/core/toolpluginmodel.cpp +++ b/core/toolpluginmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "toolpluginmodel.h" diff --git a/core/toolpluginmodel.h b/core/toolpluginmodel.h index 022fa38488..fe88876589 100644 --- a/core/toolpluginmodel.h +++ b/core/toolpluginmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TOOLPLUGINMODEL_H diff --git a/core/tools/messagehandler/loggingcategorymodel.cpp b/core/tools/messagehandler/loggingcategorymodel.cpp index 6d54a02d0d..e147be751b 100644 --- a/core/tools/messagehandler/loggingcategorymodel.cpp +++ b/core/tools/messagehandler/loggingcategorymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "loggingcategorymodel.h" diff --git a/core/tools/messagehandler/loggingcategorymodel.h b/core/tools/messagehandler/loggingcategorymodel.h index 4b68f25697..396bf77b4b 100644 --- a/core/tools/messagehandler/loggingcategorymodel.h +++ b/core/tools/messagehandler/loggingcategorymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOGGINGCATEGORYMODEL_H diff --git a/core/tools/messagehandler/messagehandler.cpp b/core/tools/messagehandler/messagehandler.cpp index 1ea1710096..4f057a6e14 100644 --- a/core/tools/messagehandler/messagehandler.cpp +++ b/core/tools/messagehandler/messagehandler.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagehandler.h" diff --git a/core/tools/messagehandler/messagehandler.h b/core/tools/messagehandler/messagehandler.h index d902fd1650..eca84b995b 100644 --- a/core/tools/messagehandler/messagehandler.h +++ b/core/tools/messagehandler/messagehandler.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEHANDLER_MESSAGEHANDLER_H #define GAMMARAY_MESSAGEHANDLER_MESSAGEHANDLER_H diff --git a/core/tools/messagehandler/messagemodel.cpp b/core/tools/messagehandler/messagemodel.cpp index 18b51e64a9..5af0f6d7b2 100644 --- a/core/tools/messagehandler/messagemodel.cpp +++ b/core/tools/messagehandler/messagemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagemodel.h" diff --git a/core/tools/messagehandler/messagemodel.h b/core/tools/messagehandler/messagemodel.h index 154793b98b..5eb7f65964 100644 --- a/core/tools/messagehandler/messagemodel.h +++ b/core/tools/messagehandler/messagemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEHANDLER_MESSAGEMODEL_H #define GAMMARAY_MESSAGEHANDLER_MESSAGEMODEL_H diff --git a/core/tools/metaobjectbrowser/metaobjectbrowser.cpp b/core/tools/metaobjectbrowser/metaobjectbrowser.cpp index 05a7d7e9a2..a1cf1148c9 100644 --- a/core/tools/metaobjectbrowser/metaobjectbrowser.cpp +++ b/core/tools/metaobjectbrowser/metaobjectbrowser.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaobjectbrowser.h" @@ -27,8 +24,7 @@ #include #include #include - -#include <3rdparty/kde/krecursivefilterproxymodel.h> +#include #include #include @@ -41,7 +37,7 @@ MetaObjectBrowser::MetaObjectBrowser(Probe *probe, QObject *parent) , m_motm(new MetaObjectTreeModel(this)) , m_model(nullptr) { - auto model = new ServerProxyModel(this); + auto model = new ServerProxyModel(this); model->addRole(QMetaObjectModel::MetaObjectIssues); model->addRole(QMetaObjectModel::MetaObjectInvalid); model->setSourceModel(m_motm); diff --git a/core/tools/metaobjectbrowser/metaobjectbrowser.h b/core/tools/metaobjectbrowser/metaobjectbrowser.h index eb88db058f..5c5184577f 100644 --- a/core/tools/metaobjectbrowser/metaobjectbrowser.h +++ b/core/tools/metaobjectbrowser/metaobjectbrowser.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECTBROWSER_METATYPEBROWSER_H diff --git a/core/tools/metaobjectbrowser/metaobjecttreemodel.cpp b/core/tools/metaobjectbrowser/metaobjecttreemodel.cpp index 5795597aef..ca92f074aa 100644 --- a/core/tools/metaobjectbrowser/metaobjecttreemodel.cpp +++ b/core/tools/metaobjectbrowser/metaobjecttreemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaobjecttreemodel.h" diff --git a/core/tools/metaobjectbrowser/metaobjecttreemodel.h b/core/tools/metaobjectbrowser/metaobjecttreemodel.h index d0a861b388..3ead5c5c34 100644 --- a/core/tools/metaobjectbrowser/metaobjecttreemodel.h +++ b/core/tools/metaobjectbrowser/metaobjecttreemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECTTREEMODEL_H diff --git a/core/tools/metatypebrowser/metatypebrowser.cpp b/core/tools/metatypebrowser/metatypebrowser.cpp index c09eac2f05..46ed06f781 100644 --- a/core/tools/metatypebrowser/metatypebrowser.cpp +++ b/core/tools/metatypebrowser/metatypebrowser.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metatypebrowser.h" diff --git a/core/tools/metatypebrowser/metatypebrowser.h b/core/tools/metatypebrowser/metatypebrowser.h index 11ed4bd7db..8d2892cf57 100644 --- a/core/tools/metatypebrowser/metatypebrowser.h +++ b/core/tools/metatypebrowser/metatypebrowser.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METATYPEBROWSER_METATYPEBROWSER_H diff --git a/core/tools/metatypebrowser/metatypesmodel.cpp b/core/tools/metatypebrowser/metatypesmodel.cpp index d2da2697c0..69a642febd 100644 --- a/core/tools/metatypebrowser/metatypesmodel.cpp +++ b/core/tools/metatypebrowser/metatypesmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metatypesmodel.h" diff --git a/core/tools/metatypebrowser/metatypesmodel.h b/core/tools/metatypebrowser/metatypesmodel.h index 2d5b403b93..b4bcb0a93c 100644 --- a/core/tools/metatypebrowser/metatypesmodel.h +++ b/core/tools/metatypebrowser/metatypesmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METATYPEBROWSER_METATYPESMODEL_H diff --git a/core/tools/objectinspector/abstractconnectionsmodel.cpp b/core/tools/objectinspector/abstractconnectionsmodel.cpp index b60d62b9cc..4c15f7e15b 100644 --- a/core/tools/objectinspector/abstractconnectionsmodel.cpp +++ b/core/tools/objectinspector/abstractconnectionsmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/tools/objectinspector/abstractconnectionsmodel.h b/core/tools/objectinspector/abstractconnectionsmodel.h index 6d3deb269b..7be579fad2 100644 --- a/core/tools/objectinspector/abstractconnectionsmodel.h +++ b/core/tools/objectinspector/abstractconnectionsmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_ABSTRACTCONNECTIONSMODEL_H diff --git a/core/tools/objectinspector/applicationattributeextension.cpp b/core/tools/objectinspector/applicationattributeextension.cpp index 48f2726afc..f0fb66b713 100644 --- a/core/tools/objectinspector/applicationattributeextension.cpp +++ b/core/tools/objectinspector/applicationattributeextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "applicationattributeextension.h" diff --git a/core/tools/objectinspector/applicationattributeextension.h b/core/tools/objectinspector/applicationattributeextension.h index 3de2e10f75..131a1aec0c 100644 --- a/core/tools/objectinspector/applicationattributeextension.h +++ b/core/tools/objectinspector/applicationattributeextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_APPLICATIONATTRIBUTEEXTENSION_H diff --git a/core/tools/objectinspector/bindingextension.cpp b/core/tools/objectinspector/bindingextension.cpp index 0f4c9f5ca1..dc53b99de5 100644 --- a/core/tools/objectinspector/bindingextension.cpp +++ b/core/tools/objectinspector/bindingextension.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/core/tools/objectinspector/bindingextension.h b/core/tools/objectinspector/bindingextension.h index cfa315352c..962bf3c730 100644 --- a/core/tools/objectinspector/bindingextension.h +++ b/core/tools/objectinspector/bindingextension.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BINDINGEXTENSION_H diff --git a/core/tools/objectinspector/bindingmodel.cpp b/core/tools/objectinspector/bindingmodel.cpp index 9b45039290..15bd8ba77a 100644 --- a/core/tools/objectinspector/bindingmodel.cpp +++ b/core/tools/objectinspector/bindingmodel.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/core/tools/objectinspector/bindingmodel.h b/core/tools/objectinspector/bindingmodel.h index a4f0cd2eb0..7fc6e1c36f 100644 --- a/core/tools/objectinspector/bindingmodel.h +++ b/core/tools/objectinspector/bindingmodel.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BINDINGMODEL_H diff --git a/core/tools/objectinspector/classinfoextension.cpp b/core/tools/objectinspector/classinfoextension.cpp index 89f2cff6eb..70f10a2ffe 100644 --- a/core/tools/objectinspector/classinfoextension.cpp +++ b/core/tools/objectinspector/classinfoextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "classinfoextension.h" diff --git a/core/tools/objectinspector/classinfoextension.h b/core/tools/objectinspector/classinfoextension.h index 30271a68d5..6e1846e932 100644 --- a/core/tools/objectinspector/classinfoextension.h +++ b/core/tools/objectinspector/classinfoextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_CLASSINFOEXTENSION_H diff --git a/core/tools/objectinspector/connectionsextension.cpp b/core/tools/objectinspector/connectionsextension.cpp index 3f842faac4..160fec530b 100644 --- a/core/tools/objectinspector/connectionsextension.cpp +++ b/core/tools/objectinspector/connectionsextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/tools/objectinspector/connectionsextension.h b/core/tools/objectinspector/connectionsextension.h index 8790221089..ecc2c1b45b 100644 --- a/core/tools/objectinspector/connectionsextension.h +++ b/core/tools/objectinspector/connectionsextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_CONNECTIONSEXTENSION_H diff --git a/core/tools/objectinspector/enumsextension.cpp b/core/tools/objectinspector/enumsextension.cpp index 2a5387eb9e..116af276d2 100644 --- a/core/tools/objectinspector/enumsextension.cpp +++ b/core/tools/objectinspector/enumsextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumsextension.h" diff --git a/core/tools/objectinspector/enumsextension.h b/core/tools/objectinspector/enumsextension.h index 2407377415..307ea3da32 100644 --- a/core/tools/objectinspector/enumsextension.h +++ b/core/tools/objectinspector/enumsextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_ENUMSEXTENSION_H diff --git a/core/tools/objectinspector/inboundconnectionsmodel.cpp b/core/tools/objectinspector/inboundconnectionsmodel.cpp index e2e98a2fcb..e4e09c7c20 100644 --- a/core/tools/objectinspector/inboundconnectionsmodel.cpp +++ b/core/tools/objectinspector/inboundconnectionsmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/tools/objectinspector/inboundconnectionsmodel.h b/core/tools/objectinspector/inboundconnectionsmodel.h index bed8a51da2..efb2d9d3f5 100644 --- a/core/tools/objectinspector/inboundconnectionsmodel.h +++ b/core/tools/objectinspector/inboundconnectionsmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_INBOUNDCONNECTIONSMODEL_H diff --git a/core/tools/objectinspector/methodsextension.cpp b/core/tools/objectinspector/methodsextension.cpp index 6702694030..e26a561efe 100644 --- a/core/tools/objectinspector/methodsextension.cpp +++ b/core/tools/objectinspector/methodsextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "methodsextension.h" diff --git a/core/tools/objectinspector/methodsextension.h b/core/tools/objectinspector/methodsextension.h index f6b962a8cc..65f5ee0b54 100644 --- a/core/tools/objectinspector/methodsextension.h +++ b/core/tools/objectinspector/methodsextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_METHODSEXTENSION_H diff --git a/core/tools/objectinspector/objectinspector.cpp b/core/tools/objectinspector/objectinspector.cpp index 629382e58e..2835421f55 100644 --- a/core/tools/objectinspector/objectinspector.cpp +++ b/core/tools/objectinspector/objectinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectinspector.h" @@ -35,8 +32,7 @@ #include #include #include - -#include <3rdparty/kde/krecursivefilterproxymodel.h> +#include #include #include @@ -56,7 +52,7 @@ ObjectInspector::ObjectInspector(Probe *probe, QObject *parent) "com.kdab.GammaRay.ObjectInspector"), this); - auto proxy = new ServerProxyModel(this); + auto proxy = new ServerProxyModel(this); proxy->setSourceModel(probe->objectTreeModel()); probe->registerModel(QStringLiteral("com.kdab.GammaRay.ObjectInspectorTree"), proxy); diff --git a/core/tools/objectinspector/objectinspector.h b/core/tools/objectinspector/objectinspector.h index af62e9d665..73ccc24ac6 100644 --- a/core/tools/objectinspector/objectinspector.h +++ b/core/tools/objectinspector/objectinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_OBJECTINSPECTOR_H diff --git a/core/tools/objectinspector/outboundconnectionsmodel.cpp b/core/tools/objectinspector/outboundconnectionsmodel.cpp index 2d93b3752b..1600649c1c 100644 --- a/core/tools/objectinspector/outboundconnectionsmodel.cpp +++ b/core/tools/objectinspector/outboundconnectionsmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/tools/objectinspector/outboundconnectionsmodel.h b/core/tools/objectinspector/outboundconnectionsmodel.h index e1e199e76a..880555f36a 100644 --- a/core/tools/objectinspector/outboundconnectionsmodel.h +++ b/core/tools/objectinspector/outboundconnectionsmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_OUTBOUNDCONNECTIONSMODEL_H diff --git a/core/tools/objectinspector/propertiesextension.cpp b/core/tools/objectinspector/propertiesextension.cpp index a429ff4ed4..82bd08762d 100644 --- a/core/tools/objectinspector/propertiesextension.cpp +++ b/core/tools/objectinspector/propertiesextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertiesextension.h" diff --git a/core/tools/objectinspector/propertiesextension.h b/core/tools/objectinspector/propertiesextension.h index de7670631e..49ca783189 100644 --- a/core/tools/objectinspector/propertiesextension.h +++ b/core/tools/objectinspector/propertiesextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_PROPERTIESEXTENSION_H diff --git a/core/tools/objectinspector/stacktraceextension.cpp b/core/tools/objectinspector/stacktraceextension.cpp index 0fd1c5b57d..ef9695e094 100644 --- a/core/tools/objectinspector/stacktraceextension.cpp +++ b/core/tools/objectinspector/stacktraceextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "stacktraceextension.h" diff --git a/core/tools/objectinspector/stacktraceextension.h b/core/tools/objectinspector/stacktraceextension.h index c5829792ff..9b5f400da0 100644 --- a/core/tools/objectinspector/stacktraceextension.h +++ b/core/tools/objectinspector/stacktraceextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STACKTRACEEXTENSION_H diff --git a/core/tools/problemreporter/availablecheckersmodel.cpp b/core/tools/problemreporter/availablecheckersmodel.cpp index 59a89d8c9a..f1bfabd22e 100644 --- a/core/tools/problemreporter/availablecheckersmodel.cpp +++ b/core/tools/problemreporter/availablecheckersmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "availablecheckersmodel.h" diff --git a/core/tools/problemreporter/availablecheckersmodel.h b/core/tools/problemreporter/availablecheckersmodel.h index 002214c7a5..3d67e31f38 100644 --- a/core/tools/problemreporter/availablecheckersmodel.h +++ b/core/tools/problemreporter/availablecheckersmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_AVAILABLECHECKERSMODEL_H diff --git a/core/tools/problemreporter/problemmodel.cpp b/core/tools/problemreporter/problemmodel.cpp index df921de00b..36c5364a3d 100644 --- a/core/tools/problemreporter/problemmodel.cpp +++ b/core/tools/problemreporter/problemmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "problemmodel.h" diff --git a/core/tools/problemreporter/problemmodel.h b/core/tools/problemreporter/problemmodel.h index c5073da1c9..74991f4142 100644 --- a/core/tools/problemreporter/problemmodel.h +++ b/core/tools/problemreporter/problemmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMMODEL_H diff --git a/core/tools/problemreporter/problemreporter.cpp b/core/tools/problemreporter/problemreporter.cpp index 5f64e13e35..6a0825caea 100644 --- a/core/tools/problemreporter/problemreporter.cpp +++ b/core/tools/problemreporter/problemreporter.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "problemreporter.h" diff --git a/core/tools/problemreporter/problemreporter.h b/core/tools/problemreporter/problemreporter.h index 3b105f1ed1..9d2c1dddc4 100644 --- a/core/tools/problemreporter/problemreporter.h +++ b/core/tools/problemreporter/problemreporter.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMREPORTER_PROBLEMREPORTER_H #define GAMMARAY_PROBLEMREPORTER_PROBLEMREPORTER_H diff --git a/core/tools/resourcebrowser/resourcebrowser.cpp b/core/tools/resourcebrowser/resourcebrowser.cpp index 44e11e527c..bce1f52a00 100644 --- a/core/tools/resourcebrowser/resourcebrowser.cpp +++ b/core/tools/resourcebrowser/resourcebrowser.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "resourcebrowser.h" diff --git a/core/tools/resourcebrowser/resourcebrowser.h b/core/tools/resourcebrowser/resourcebrowser.h index 6d8b37ad8d..c32e6dbd87 100644 --- a/core/tools/resourcebrowser/resourcebrowser.h +++ b/core/tools/resourcebrowser/resourcebrowser.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_RESOURCEBROWSER_RESOURCEBROWSER_H diff --git a/core/tools/resourcebrowser/resourcefiltermodel.cpp b/core/tools/resourcebrowser/resourcefiltermodel.cpp index 6939270b6a..7e1ad8e55b 100644 --- a/core/tools/resourcebrowser/resourcefiltermodel.cpp +++ b/core/tools/resourcebrowser/resourcefiltermodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "resourcefiltermodel.h" @@ -23,7 +20,7 @@ using namespace GammaRay; ResourceFilterModel::ResourceFilterModel(QObject *parent) - : KRecursiveFilterProxyModel(parent) + : RecursiveProxyModelBase(parent) { } @@ -33,5 +30,5 @@ bool ResourceFilterModel::filterAcceptsRow(int source_row, const QModelIndex &so const QString path = index.data(ResourceModel::FilePathRole).toString(); if (path == QLatin1String(":/gammaray") || path.startsWith(QLatin1String(":/gammaray/"))) return false; - return KRecursiveFilterProxyModel::filterAcceptsRow(source_row, source_parent); + return RecursiveProxyModelBase::filterAcceptsRow(source_row, source_parent); } diff --git a/core/tools/resourcebrowser/resourcefiltermodel.h b/core/tools/resourcebrowser/resourcefiltermodel.h index a3b73ace8d..2e9d8c430c 100644 --- a/core/tools/resourcebrowser/resourcefiltermodel.h +++ b/core/tools/resourcebrowser/resourcefiltermodel.h @@ -6,21 +6,18 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_RESOURCEBROWSER_RESOURCEFILTERMODEL_H #define GAMMARAY_RESOURCEBROWSER_RESOURCEFILTERMODEL_H -#include <3rdparty/kde/krecursivefilterproxymodel.h> +#include namespace GammaRay { -class ResourceFilterModel : public KRecursiveFilterProxyModel +class ResourceFilterModel : public RecursiveProxyModelBase { Q_OBJECT public: diff --git a/core/typetraits.h b/core/typetraits.h index 9fa2a4b31c..20397aff8c 100644 --- a/core/typetraits.h +++ b/core/typetraits.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TYPETRAITS_H diff --git a/core/util.cpp b/core/util.cpp index 9cfcc69269..1616307780 100644 --- a/core/util.cpp +++ b/core/util.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/core/util.h b/core/util.h index 2dd90ac487..9585046b7a 100644 --- a/core/util.h +++ b/core/util.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** @file diff --git a/core/varianthandler.cpp b/core/varianthandler.cpp index 3aa00efda7..3721bc83bb 100644 --- a/core/varianthandler.cpp +++ b/core/varianthandler.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "varianthandler.h" diff --git a/core/varianthandler.h b/core/varianthandler.h index b4f3f3c7a5..d992d1bb4a 100644 --- a/core/varianthandler.h +++ b/core/varianthandler.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_VARIANTHANDLER_H diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index 2215c913c5..8da5622ee4 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -2,15 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. -# -# -# find doc generation tools needed by multiple sub-directories +# Contact KDAB at for commercial licensing options. # # qdoc toolchain diff --git a/docs/api/CMakeLists.txt b/docs/api/CMakeLists.txt index 3a9e0d45c5..8891ac017a 100644 --- a/docs/api/CMakeLists.txt +++ b/docs/api/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # find_file(QDOC_QTCORE_TAG qtcore.tags HINTS ${QT_INSTALL_DOCS}/qtcore ${QT_INSTALL_DATA}/doc/qtcore) if(QDOC_QTCORE_TAG) @@ -31,8 +28,6 @@ add_custom_command( COMMAND ${CMAKE_COMMAND} -E make_directory ${DOXYGEN_OUTPUT_DIR}/html/LICENSES COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_SOURCE_DIR}/LICENSES/GPL-2.0-or-later.txt ${DOXYGEN_OUTPUT_DIR}/html/LICENSES - COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_SOURCE_DIR}/LICENSES/LicenseRef-KDAB-GammaRay.txt - ${DOXYGEN_OUTPUT_DIR}/html/LICENSES COMMAND ${CMAKE_COMMAND} -E make_directory ${DOXYGEN_OUTPUT_DIR}/html/docs COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_SOURCE_DIR}/docs/GammaRay-CopyrightAssignmentForm.pdf ${DOXYGEN_OUTPUT_DIR}/html/docs diff --git a/docs/api/Mainpage.dox b/docs/api/Mainpage.dox index b4775f18a0..0212228602 100644 --- a/docs/api/Mainpage.dox +++ b/docs/api/Mainpage.dox @@ -93,11 +93,14 @@ at your option). See GPL-2.0-or-later.txt for license details. -Commercial licensing terms are available in the included file -LicenseRef-KDAB-GammaRay.txt. +Contact KDAB at to inquire about commercial licensing. For terms of redistribution, refer to the corresponding license agreement. +Note that this software relies on 3rd party MIT-licensed projects +and various other freely distributable files some of which are +unused only for testing and not part of the application itself. + @section about-KDAB About KDAB GammaRay is supported and maintained by Klarälvdalens Datakonsult AB (KDAB) diff --git a/docs/collection/CMakeLists.txt b/docs/collection/CMakeLists.txt index 84ab8291f7..613737c0d1 100644 --- a/docs/collection/CMakeLists.txt +++ b/docs/collection/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(NOT TARGET Qt5::qcollectiongenerator) message(STATUS "qcollectiongenerator not found, documentation collection will not be generated.") diff --git a/docs/man/CMakeLists.txt b/docs/man/CMakeLists.txt index 266441d60f..018227e992 100644 --- a/docs/man/CMakeLists.txt +++ b/docs/man/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(UNIX) find_program(POD2MAN_EXECUTABLE pod2man) diff --git a/docs/manual/CMakeLists.txt b/docs/manual/CMakeLists.txt index 650f8a1d6e..217489379c 100644 --- a/docs/manual/CMakeLists.txt +++ b/docs/manual/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # Use various Qt tools to generate the manuals, in both Qt and KDAB branding macro(qt_build_doc _qdocconf_name) diff --git a/docs/manual/examples/qt3d-geometry.qdoc b/docs/manual/examples/qt3d-geometry.qdoc index 42f8c8e8f7..70441b2245 100644 --- a/docs/manual/examples/qt3d-geometry.qdoc +++ b/docs/manual/examples/qt3d-geometry.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/examples/quick-batching.qdoc b/docs/manual/examples/quick-batching.qdoc index a3212679a3..6767742d4c 100644 --- a/docs/manual/examples/quick-batching.qdoc +++ b/docs/manual/examples/quick-batching.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/examples/quick-event-handling.qdoc b/docs/manual/examples/quick-event-handling.qdoc index 27db16bef2..b22dc181f8 100644 --- a/docs/manual/examples/quick-event-handling.qdoc +++ b/docs/manual/examples/quick-event-handling.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/examples/signal-slot.qdoc b/docs/manual/examples/signal-slot.qdoc index bbfeb5eba3..eb4e19a3bf 100644 --- a/docs/manual/examples/signal-slot.qdoc +++ b/docs/manual/examples/signal-slot.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/examples/state-machine.qdoc b/docs/manual/examples/state-machine.qdoc index 7b82db5ecf..d30b5f006e 100644 --- a/docs/manual/examples/state-machine.qdoc +++ b/docs/manual/examples/state-machine.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/examples/timer.qdoc b/docs/manual/examples/timer.qdoc index ca8fa0a3ea..2b682b5169 100644 --- a/docs/manual/examples/timer.qdoc +++ b/docs/manual/examples/timer.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/examples/widget-layouting.qdoc b/docs/manual/examples/widget-layouting.qdoc index e5598997be..0ee17480d0 100644 --- a/docs/manual/examples/widget-layouting.qdoc +++ b/docs/manual/examples/widget-layouting.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // TODO: expand this example to also include size policy issues, but for that we need to diff --git a/docs/manual/external-resources.qdoc b/docs/manual/external-resources.qdoc index 06e985a606..c1121dea9c 100644 --- a/docs/manual/external-resources.qdoc +++ b/docs/manual/external-resources.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-action-inspector.qdoc b/docs/manual/gammaray-action-inspector.qdoc index 3c0d5bd11e..07dbd127d8 100644 --- a/docs/manual/gammaray-action-inspector.qdoc +++ b/docs/manual/gammaray-action-inspector.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-advanced-usage.qdoc b/docs/manual/gammaray-advanced-usage.qdoc index 279b100dc1..05d500981b 100644 --- a/docs/manual/gammaray-advanced-usage.qdoc +++ b/docs/manual/gammaray-advanced-usage.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-application-attributes.qdoc b/docs/manual/gammaray-application-attributes.qdoc index b6efca0914..d853e098d0 100644 --- a/docs/manual/gammaray-application-attributes.qdoc +++ b/docs/manual/gammaray-application-attributes.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-basic-operations.qdoc b/docs/manual/gammaray-basic-operations.qdoc index 4dc6e3d985..fe5726af28 100644 --- a/docs/manual/gammaray-basic-operations.qdoc +++ b/docs/manual/gammaray-basic-operations.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-classinfo.qdoc b/docs/manual/gammaray-classinfo.qdoc index cc33538670..f4c3e3412d 100644 --- a/docs/manual/gammaray-classinfo.qdoc +++ b/docs/manual/gammaray-classinfo.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-client.qdoc b/docs/manual/gammaray-client.qdoc index b4355786ee..f862f3740c 100644 --- a/docs/manual/gammaray-client.qdoc +++ b/docs/manual/gammaray-client.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-codec-browser.qdoc b/docs/manual/gammaray-codec-browser.qdoc index 02aaf65fa0..2fe4ca3b78 100644 --- a/docs/manual/gammaray-codec-browser.qdoc +++ b/docs/manual/gammaray-codec-browser.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-command-line.qdoc b/docs/manual/gammaray-command-line.qdoc index 223fed7f9e..5fb8d5feab 100644 --- a/docs/manual/gammaray-command-line.qdoc +++ b/docs/manual/gammaray-command-line.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-connections.qdoc b/docs/manual/gammaray-connections.qdoc index a6d2dc1415..cf68315d69 100644 --- a/docs/manual/gammaray-connections.qdoc +++ b/docs/manual/gammaray-connections.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-enums.qdoc b/docs/manual/gammaray-enums.qdoc index fc2a5bc0f5..2565c6292b 100644 --- a/docs/manual/gammaray-enums.qdoc +++ b/docs/manual/gammaray-enums.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-event-monitor.qdoc b/docs/manual/gammaray-event-monitor.qdoc index 88752c0a1a..3b2d245c0a 100644 --- a/docs/manual/gammaray-event-monitor.qdoc +++ b/docs/manual/gammaray-event-monitor.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-examples.qdoc b/docs/manual/gammaray-examples.qdoc index 99e036efec..37ca4879c1 100644 --- a/docs/manual/gammaray-examples.qdoc +++ b/docs/manual/gammaray-examples.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-font-browser.qdoc b/docs/manual/gammaray-font-browser.qdoc index 5524e4a5c8..2499602a33 100644 --- a/docs/manual/gammaray-font-browser.qdoc +++ b/docs/manual/gammaray-font-browser.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-geo-positioning.qdoc b/docs/manual/gammaray-geo-positioning.qdoc index 755edc439f..21b8bb8c96 100644 --- a/docs/manual/gammaray-geo-positioning.qdoc +++ b/docs/manual/gammaray-geo-positioning.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-getting-started.qdoc b/docs/manual/gammaray-getting-started.qdoc index 7d9dd36a52..f0e0da4aef 100644 --- a/docs/manual/gammaray-getting-started.qdoc +++ b/docs/manual/gammaray-getting-started.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-graphicsscene.qdoc b/docs/manual/gammaray-graphicsscene.qdoc index fec44475c9..52dad024c1 100644 --- a/docs/manual/gammaray-graphicsscene.qdoc +++ b/docs/manual/gammaray-graphicsscene.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-http-cookies.qdoc b/docs/manual/gammaray-http-cookies.qdoc index 7bf9334081..dd22c9f3b5 100644 --- a/docs/manual/gammaray-http-cookies.qdoc +++ b/docs/manual/gammaray-http-cookies.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-install.qdoc b/docs/manual/gammaray-install.qdoc index 4a6c578aac..75dfc06e30 100644 --- a/docs/manual/gammaray-install.qdoc +++ b/docs/manual/gammaray-install.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-launcher-gui.qdoc b/docs/manual/gammaray-launcher-gui.qdoc index 2183425bc6..29aa27a99e 100644 --- a/docs/manual/gammaray-launcher-gui.qdoc +++ b/docs/manual/gammaray-launcher-gui.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-licenses-and-attribtions.qdoc b/docs/manual/gammaray-licenses-and-attribtions.qdoc index 4abca105e7..3039fa509f 100644 --- a/docs/manual/gammaray-licenses-and-attribtions.qdoc +++ b/docs/manual/gammaray-licenses-and-attribtions.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-locales.qdoc b/docs/manual/gammaray-locales.qdoc index fdf74e4889..89e8a767fe 100644 --- a/docs/manual/gammaray-locales.qdoc +++ b/docs/manual/gammaray-locales.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-manual.qdoc b/docs/manual/gammaray-manual.qdoc index 1c08a41b48..f2093fe1b5 100644 --- a/docs/manual/gammaray-manual.qdoc +++ b/docs/manual/gammaray-manual.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-messages.qdoc b/docs/manual/gammaray-messages.qdoc index c3115c7688..6e5b5249b4 100644 --- a/docs/manual/gammaray-messages.qdoc +++ b/docs/manual/gammaray-messages.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-metaobject-browser.qdoc b/docs/manual/gammaray-metaobject-browser.qdoc index 7f237007f3..600d792773 100644 --- a/docs/manual/gammaray-metaobject-browser.qdoc +++ b/docs/manual/gammaray-metaobject-browser.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-metatype-browser.qdoc b/docs/manual/gammaray-metatype-browser.qdoc index d0487f9a04..80988c6ea7 100644 --- a/docs/manual/gammaray-metatype-browser.qdoc +++ b/docs/manual/gammaray-metatype-browser.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-methods.qdoc b/docs/manual/gammaray-methods.qdoc index 2a3103c005..3faa190812 100644 --- a/docs/manual/gammaray-methods.qdoc +++ b/docs/manual/gammaray-methods.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-mime-types.qdoc b/docs/manual/gammaray-mime-types.qdoc index ba6f82a644..8e720855a0 100644 --- a/docs/manual/gammaray-mime-types.qdoc +++ b/docs/manual/gammaray-mime-types.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-model-inspector.qdoc b/docs/manual/gammaray-model-inspector.qdoc index 742fae50a7..6a80be6af8 100644 --- a/docs/manual/gammaray-model-inspector.qdoc +++ b/docs/manual/gammaray-model-inspector.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-network.qdoc b/docs/manual/gammaray-network.qdoc index 234778c06e..b3d64a3104 100644 --- a/docs/manual/gammaray-network.qdoc +++ b/docs/manual/gammaray-network.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-object-inspection.qdoc b/docs/manual/gammaray-object-inspection.qdoc index d3dc56f962..14238e4471 100644 --- a/docs/manual/gammaray-object-inspection.qdoc +++ b/docs/manual/gammaray-object-inspection.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-paint-analyzer.qdoc b/docs/manual/gammaray-paint-analyzer.qdoc index a72b7d69d5..3d5f704ce7 100644 --- a/docs/manual/gammaray-paint-analyzer.qdoc +++ b/docs/manual/gammaray-paint-analyzer.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-problem-reporter.qdoc b/docs/manual/gammaray-problem-reporter.qdoc index bb04af831e..fb8df150ba 100644 --- a/docs/manual/gammaray-problem-reporter.qdoc +++ b/docs/manual/gammaray-problem-reporter.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-properties.qdoc b/docs/manual/gammaray-properties.qdoc index 6a1390e422..8a07edd99b 100644 --- a/docs/manual/gammaray-properties.qdoc +++ b/docs/manual/gammaray-properties.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qmlbindings.qdoc b/docs/manual/gammaray-qmlbindings.qdoc index 8d67e9fad4..aca498c542 100644 --- a/docs/manual/gammaray-qmlbindings.qdoc +++ b/docs/manual/gammaray-qmlbindings.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qmlcontext.qdoc b/docs/manual/gammaray-qmlcontext.qdoc index 2bb260f862..d8068aa5bf 100644 --- a/docs/manual/gammaray-qmlcontext.qdoc +++ b/docs/manual/gammaray-qmlcontext.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qmltype.qdoc b/docs/manual/gammaray-qmltype.qdoc index 7c5fb17dee..a2f97b5499 100644 --- a/docs/manual/gammaray-qmltype.qdoc +++ b/docs/manual/gammaray-qmltype.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qobject-browser.qdoc b/docs/manual/gammaray-qobject-browser.qdoc index 698da45ff9..167fbbda3a 100644 --- a/docs/manual/gammaray-qobject-browser.qdoc +++ b/docs/manual/gammaray-qobject-browser.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qresource-browser.qdoc b/docs/manual/gammaray-qresource-browser.qdoc index d27cd8961a..7cef8fa8e1 100644 --- a/docs/manual/gammaray-qresource-browser.qdoc +++ b/docs/manual/gammaray-qresource-browser.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qsggeometry.qdoc b/docs/manual/gammaray-qsggeometry.qdoc index eebd3e2c6b..98afbb82cf 100644 --- a/docs/manual/gammaray-qsggeometry.qdoc +++ b/docs/manual/gammaray-qsggeometry.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qsgmaterial.qdoc b/docs/manual/gammaray-qsgmaterial.qdoc index da85fc8413..a7e8e2a3a3 100644 --- a/docs/manual/gammaray-qsgmaterial.qdoc +++ b/docs/manual/gammaray-qsgmaterial.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qsgtexture.qdoc b/docs/manual/gammaray-qsgtexture.qdoc index 3245df03a8..473ec505c2 100644 --- a/docs/manual/gammaray-qsgtexture.qdoc +++ b/docs/manual/gammaray-qsgtexture.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qt3d-inspector.qdoc b/docs/manual/gammaray-qt3d-inspector.qdoc index 7f596f0cc0..2cad773336 100644 --- a/docs/manual/gammaray-qt3d-inspector.qdoc +++ b/docs/manual/gammaray-qt3d-inspector.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qt3dgeometry.qdoc b/docs/manual/gammaray-qt3dgeometry.qdoc index 3885d1715b..f3dba7a870 100644 --- a/docs/manual/gammaray-qt3dgeometry.qdoc +++ b/docs/manual/gammaray-qt3dgeometry.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qtcreator.qdoc b/docs/manual/gammaray-qtcreator.qdoc index 7db006ad26..83040ed20e 100644 --- a/docs/manual/gammaray-qtcreator.qdoc +++ b/docs/manual/gammaray-qtcreator.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-qtquick2-inspector.qdoc b/docs/manual/gammaray-qtquick2-inspector.qdoc index ce2fa48495..59c5ffc75d 100644 --- a/docs/manual/gammaray-qtquick2-inspector.qdoc +++ b/docs/manual/gammaray-qtquick2-inspector.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-signal-plotter.qdoc b/docs/manual/gammaray-signal-plotter.qdoc index 4a051c666a..b6df9099a5 100644 --- a/docs/manual/gammaray-signal-plotter.qdoc +++ b/docs/manual/gammaray-signal-plotter.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-stack-trace.qdoc b/docs/manual/gammaray-stack-trace.qdoc index 06b72f6d97..ff85909a3d 100644 --- a/docs/manual/gammaray-stack-trace.qdoc +++ b/docs/manual/gammaray-stack-trace.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-standard-paths.qdoc b/docs/manual/gammaray-standard-paths.qdoc index ebf2f5a877..ae14f0b4b6 100644 --- a/docs/manual/gammaray-standard-paths.qdoc +++ b/docs/manual/gammaray-standard-paths.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-state-machine-debugger.qdoc b/docs/manual/gammaray-state-machine-debugger.qdoc index 3ebaf14277..b8617ae6fc 100644 --- a/docs/manual/gammaray-state-machine-debugger.qdoc +++ b/docs/manual/gammaray-state-machine-debugger.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-styles.qdoc b/docs/manual/gammaray-styles.qdoc index fe31420e38..ea89dfeb68 100644 --- a/docs/manual/gammaray-styles.qdoc +++ b/docs/manual/gammaray-styles.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-text-documents.qdoc b/docs/manual/gammaray-text-documents.qdoc index 207ba9ed96..b1d4fe4d48 100644 --- a/docs/manual/gammaray-text-documents.qdoc +++ b/docs/manual/gammaray-text-documents.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-timertop.qdoc b/docs/manual/gammaray-timertop.qdoc index 1be5757252..6ff8887ee2 100644 --- a/docs/manual/gammaray-timertop.qdoc +++ b/docs/manual/gammaray-timertop.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-tools.qdoc b/docs/manual/gammaray-tools.qdoc index d88c740193..3f438ede39 100644 --- a/docs/manual/gammaray-tools.qdoc +++ b/docs/manual/gammaray-tools.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-translator-inspector.qdoc b/docs/manual/gammaray-translator-inspector.qdoc index 753ca488dd..3191360242 100644 --- a/docs/manual/gammaray-translator-inspector.qdoc +++ b/docs/manual/gammaray-translator-inspector.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-wayland-compositors.qdoc b/docs/manual/gammaray-wayland-compositors.qdoc index 572cb245cf..028d8fe97a 100644 --- a/docs/manual/gammaray-wayland-compositors.qdoc +++ b/docs/manual/gammaray-wayland-compositors.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-web-inspector.qdoc b/docs/manual/gammaray-web-inspector.qdoc index e20f38f22b..7f6d902f82 100644 --- a/docs/manual/gammaray-web-inspector.qdoc +++ b/docs/manual/gammaray-web-inspector.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-widget-attributes.qdoc b/docs/manual/gammaray-widget-attributes.qdoc index 59b13f243f..ac9c8fb3d3 100644 --- a/docs/manual/gammaray-widget-attributes.qdoc +++ b/docs/manual/gammaray-widget-attributes.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/docs/manual/gammaray-widget-inspector.qdoc b/docs/manual/gammaray-widget-inspector.qdoc index 758a172ac0..adbdf1d1ec 100644 --- a/docs/manual/gammaray-widget-inspector.qdoc +++ b/docs/manual/gammaray-widget-inspector.qdoc @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /*! diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 500e5023f4..991fab2338 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(Qt5Quick_VERSION GREATER 5.5) add_subdirectory(quick-batching) diff --git a/examples/qt3d-geometry/CMakeLists.txt b/examples/qt3d-geometry/CMakeLists.txt index afec34212b..b7370d3e90 100644 --- a/examples/qt3d-geometry/CMakeLists.txt +++ b/examples/qt3d-geometry/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # add_executable( example-qt3d-geometry diff --git a/examples/qt3d-geometry/mycylinder.cpp b/examples/qt3d-geometry/mycylinder.cpp index cd2f0c53cb..dd72715e4d 100644 --- a/examples/qt3d-geometry/mycylinder.cpp +++ b/examples/qt3d-geometry/mycylinder.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "mycylinder.h" diff --git a/examples/qt3d-geometry/mycylinder.h b/examples/qt3d-geometry/mycylinder.h index 341906b9d5..27ab45c304 100644 --- a/examples/qt3d-geometry/mycylinder.h +++ b/examples/qt3d-geometry/mycylinder.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef MYCYLINDER_H diff --git a/examples/qt3d-geometry/qt3d-geometry.cpp b/examples/qt3d-geometry/qt3d-geometry.cpp index 1d061bb38f..6d1f6a2283 100644 --- a/examples/qt3d-geometry/qt3d-geometry.cpp +++ b/examples/qt3d-geometry/qt3d-geometry.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "mycylinder.h" diff --git a/examples/qt3d-geometry/qt3d-geometry.pro b/examples/qt3d-geometry/qt3d-geometry.pro index 009aed3682..5599f34f3d 100644 --- a/examples/qt3d-geometry/qt3d-geometry.pro +++ b/examples/qt3d-geometry/qt3d-geometry.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # dummy file for qdoc SOURCES = qt3d-geometry.cpp mycylinder.cpp diff --git a/examples/quick-batching/CMakeLists.txt b/examples/quick-batching/CMakeLists.txt index 802ffae25d..61fd34e023 100644 --- a/examples/quick-batching/CMakeLists.txt +++ b/examples/quick-batching/CMakeLists.txt @@ -2,11 +2,8 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # qml_lint(quick-batching.qml Slider.qml) diff --git a/examples/quick-batching/Slider.qml b/examples/quick-batching/Slider.qml index 84c708c39b..f9135aaee6 100644 --- a/examples/quick-batching/Slider.qml +++ b/examples/quick-batching/Slider.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/examples/quick-batching/quick-batching.pro b/examples/quick-batching/quick-batching.pro index de6adb6459..07c0ee0789 100644 --- a/examples/quick-batching/quick-batching.pro +++ b/examples/quick-batching/quick-batching.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # dummy file for qdoc SOURCES += quick-batching.qml Slider.qml diff --git a/examples/quick-batching/quick-batching.qml b/examples/quick-batching/quick-batching.qml index d6bbda32c5..99f6095393 100644 --- a/examples/quick-batching/quick-batching.qml +++ b/examples/quick-batching/quick-batching.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/examples/quick-event-handling/CMakeLists.txt b/examples/quick-event-handling/CMakeLists.txt index 51308b17ca..fc64601ff8 100644 --- a/examples/quick-event-handling/CMakeLists.txt +++ b/examples/quick-event-handling/CMakeLists.txt @@ -2,11 +2,8 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # qml_lint(quick-event-handling.qml) diff --git a/examples/quick-event-handling/quick-event-handling.pro b/examples/quick-event-handling/quick-event-handling.pro index e51d3b7b73..f62b9b0e40 100644 --- a/examples/quick-event-handling/quick-event-handling.pro +++ b/examples/quick-event-handling/quick-event-handling.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # dummy file for qdoc SOURCES = quick-event-handling.qml diff --git a/examples/quick-event-handling/quick-event-handling.qml b/examples/quick-event-handling/quick-event-handling.qml index 7c83fdaace..a0ad9ed71d 100644 --- a/examples/quick-event-handling/quick-event-handling.qml +++ b/examples/quick-event-handling/quick-event-handling.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/examples/signal-slot/CMakeLists.txt b/examples/signal-slot/CMakeLists.txt index 442e825a64..67aa7afc43 100644 --- a/examples/signal-slot/CMakeLists.txt +++ b/examples/signal-slot/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # add_executable( example-signal-slot diff --git a/examples/signal-slot/signal-slot.cpp b/examples/signal-slot/signal-slot.cpp index 233d4f3f0d..507528af41 100644 --- a/examples/signal-slot/signal-slot.cpp +++ b/examples/signal-slot/signal-slot.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/examples/signal-slot/signal-slot.pro b/examples/signal-slot/signal-slot.pro index 1b63bc199a..b1d2083ba4 100644 --- a/examples/signal-slot/signal-slot.pro +++ b/examples/signal-slot/signal-slot.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # dummy file for qdoc... SOURCES = signal-slot.cpp diff --git a/examples/state-machine/CMakeLists.txt b/examples/state-machine/CMakeLists.txt index 566c4bbee7..ce23fa58e6 100644 --- a/examples/state-machine/CMakeLists.txt +++ b/examples/state-machine/CMakeLists.txt @@ -2,11 +2,8 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # qml_lint(state-machine.qml) diff --git a/examples/state-machine/state-machine.pro b/examples/state-machine/state-machine.pro index 3dcbfd02bb..4a1fa6c28e 100644 --- a/examples/state-machine/state-machine.pro +++ b/examples/state-machine/state-machine.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # dummy file for qdoc SOURCES = state-machine.qml diff --git a/examples/state-machine/state-machine.qml b/examples/state-machine/state-machine.qml index a5077231fa..c11c171e52 100644 --- a/examples/state-machine/state-machine.qml +++ b/examples/state-machine/state-machine.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.5 diff --git a/examples/timer/CMakeLists.txt b/examples/timer/CMakeLists.txt index 66c8b5fedd..3c67433172 100644 --- a/examples/timer/CMakeLists.txt +++ b/examples/timer/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # add_executable( example-timer diff --git a/examples/timer/timer.cpp b/examples/timer/timer.cpp index 9f1cff1c66..4b2c1c28f5 100644 --- a/examples/timer/timer.cpp +++ b/examples/timer/timer.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/examples/timer/timer.pro b/examples/timer/timer.pro index d0c6623e34..54c19702b0 100644 --- a/examples/timer/timer.pro +++ b/examples/timer/timer.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # dummy file for qdoc SOURCES = timer.cpp diff --git a/examples/widget-layouting/CMakeLists.txt b/examples/widget-layouting/CMakeLists.txt index c69b7ca5b4..0f1f6c55c9 100644 --- a/examples/widget-layouting/CMakeLists.txt +++ b/examples/widget-layouting/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # set(widget_layouting_srcs widget-layouting.cpp) diff --git a/examples/widget-layouting/widget-layouting.cpp b/examples/widget-layouting/widget-layouting.cpp index f9bea2df70..d8b87be46c 100644 --- a/examples/widget-layouting/widget-layouting.cpp +++ b/examples/widget-layouting/widget-layouting.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "ui_contactform.h" diff --git a/examples/widget-layouting/widget-layouting.pro b/examples/widget-layouting/widget-layouting.pro index c62fc0b785..25f03abf28 100644 --- a/examples/widget-layouting/widget-layouting.pro +++ b/examples/widget-layouting/widget-layouting.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # dummy .pro file for qdoc SOURCES = widget-layouting.cpp diff --git a/examples/yocto/gammaray_git.bb b/examples/yocto/gammaray_git.bb index 30442b6fa5..33ab9a4f62 100644 --- a/examples/yocto/gammaray_git.bb +++ b/examples/yocto/gammaray_git.bb @@ -1,8 +1,8 @@ SUMMARY = "GammaRay Qt introspection probe" HOMEPAGE = "https://www.kdab.com/gammaray" -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://LICENSE.GPL.txt;md5=2abfe5daa817fd4346b6d55293941415" +LICENSE = "GPL-2.0-or-later" +LIC_FILES_CHKSUM = "file://LICENSES/GPL-2.0-or-later.txt;md5=3d26203303a722dedc6bf909d95ba815" inherit cmake_qt5 diff --git a/examples/yocto/gammaray_git_cmake6.bb b/examples/yocto/gammaray_git_cmake6.bb new file mode 100644 index 0000000000..61489b8f72 --- /dev/null +++ b/examples/yocto/gammaray_git_cmake6.bb @@ -0,0 +1,31 @@ +SUMMARY = "GammaRay Qt introspection probe" +HOMEPAGE = "https://www.kdab.com/gammaray" + +LICENSE = "GPL-2.0-or-later" +LIC_FILES_CHKSUM = "file://LICENSES/GPL-2.0-or-later.txt;md5=3d26203303a722dedc6bf909d95ba815" + +inherit qt6-cmake + +SRC_URI = "git://github.com/KDAB/GammaRay;branch=master" + +SRCREV = "29dc942640d1666f6f11c13fa77d574ed004a450" + +PV = "master_${SRCPV}" + +DEPENDS = "qtdeclarative qtdeclarative-native" + +S = "${WORKDIR}/git" + +EXTRA_OECMAKE += " -DGAMMARAY_BUILD_UI=OFF -DGAMMARAY_QT6_BUILD=ON" + +FILES_${PN} += "/usr/share/zsh/site-functions/_gammaray" + +FILES_${PN}-dev += " \ + /usr/lib/cmake/* \ + /usr/mkspecs/modules/* \ +" +FILES_${PN}-dbg += " \ + /usr/lib/.debug/* \ + /usr/lib/gammaray/*/*/.debug \ + /usr/lib/gammaray/*/*/styles/.debug \ +" diff --git a/gammaray-qt-ci-only.pro b/gammaray-qt-ci-only.pro index 6a6ed9bd1c..38dccf9e3c 100644 --- a/gammaray-qt-ci-only.pro +++ b/gammaray-qt-ci-only.pro @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # requires(linux:!android|win32:!winphone:!winrt|osx) diff --git a/inprocessui/CMakeLists.txt b/inprocessui/CMakeLists.txt index 632e5038e2..34694587ae 100644 --- a/inprocessui/CMakeLists.txt +++ b/inprocessui/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # add_library( gammaray_inprocessui MODULE diff --git a/inprocessui/main.cpp b/inprocessui/main.cpp index 50801476e4..740647f6e6 100644 --- a/inprocessui/main.cpp +++ b/inprocessui/main.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index 53cb784837..3c6ecfdf22 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(NOT GAMMARAY_PROBE_ONLY_BUILD) add_subdirectory(core) diff --git a/launcher/app/CMakeLists.txt b/launcher/app/CMakeLists.txt index e8527077eb..29e6442310 100644 --- a/launcher/app/CMakeLists.txt +++ b/launcher/app/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # set(gammaray_launcher_ui_srcs main.cpp ${CMAKE_SOURCE_DIR}/resources/gammaray.qrc) diff --git a/launcher/app/main.cpp b/launcher/app/main.cpp index bc96bd18da..f07d15b47d 100644 --- a/launcher/app/main.cpp +++ b/launcher/app/main.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/cli/CMakeLists.txt b/launcher/cli/CMakeLists.txt index e8ba7c262f..deddba48a8 100644 --- a/launcher/cli/CMakeLists.txt +++ b/launcher/cli/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # command line launcher set(gammaray_runner_srcs main.cpp) diff --git a/launcher/cli/completions/gammaray.zsh b/launcher/cli/completions/gammaray.zsh index e993780e63..30e560b510 100644 --- a/launcher/cli/completions/gammaray.zsh +++ b/launcher/cli/completions/gammaray.zsh @@ -5,12 +5,10 @@ # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # Author: ivan tkachenko # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. +# Contact KDAB at for commercial licensing options. # -# Contact info@kdab.com if any conditions of this licensing are not clear to you. function _gammaray-probe() { local -a probes names descriptions diff --git a/launcher/cli/main.cpp b/launcher/cli/main.cpp index 62e778688b..258d61f08e 100644 --- a/launcher/cli/main.cpp +++ b/launcher/cli/main.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/CMakeLists.txt b/launcher/core/CMakeLists.txt index 2789b39a0a..f017d0b4d9 100644 --- a/launcher/core/CMakeLists.txt +++ b/launcher/core/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # add_subdirectory(injector) diff --git a/launcher/core/clientlauncher.cpp b/launcher/core/clientlauncher.cpp index 82abb96d6c..967f010269 100644 --- a/launcher/core/clientlauncher.cpp +++ b/launcher/core/clientlauncher.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientlauncher.h" diff --git a/launcher/core/clientlauncher.h b/launcher/core/clientlauncher.h index 7a1a0ff998..093621602f 100644 --- a/launcher/core/clientlauncher.h +++ b/launcher/core/clientlauncher.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTLAUNCHER_H diff --git a/launcher/core/injector/CMakeLists.txt b/launcher/core/injector/CMakeLists.txt index eb598fe20b..d8b119acb5 100644 --- a/launcher/core/injector/CMakeLists.txt +++ b/launcher/core/injector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(TARGET Qt::Widgets) set(gammaray_injector_style_srcs injectorstyleplugin.cpp) diff --git a/launcher/core/injector/abstractinjector.cpp b/launcher/core/injector/abstractinjector.cpp index 05d263afc1..6d5ee2fd58 100644 --- a/launcher/core/injector/abstractinjector.cpp +++ b/launcher/core/injector/abstractinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "abstractinjector.h" diff --git a/launcher/core/injector/abstractinjector.h b/launcher/core/injector/abstractinjector.h index b0be64a12a..91cfecc52f 100644 --- a/launcher/core/injector/abstractinjector.h +++ b/launcher/core/injector/abstractinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ABSTRACTINJECTOR_H diff --git a/launcher/core/injector/basicwindllinjector.cpp b/launcher/core/injector/basicwindllinjector.cpp index 1f180a619c..a7fcd82c30 100644 --- a/launcher/core/injector/basicwindllinjector.cpp +++ b/launcher/core/injector/basicwindllinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Hannah von Reth - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // krazy:excludeall=null,captruefalse since this file uses the WinAPI diff --git a/launcher/core/injector/basicwindllinjector.h b/launcher/core/injector/basicwindllinjector.h index cfcce152fc..6d15bb0573 100644 --- a/launcher/core/injector/basicwindllinjector.h +++ b/launcher/core/injector/basicwindllinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Hannah von Reth - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef BASICWINDLLINJECTOR_H diff --git a/launcher/core/injector/debuggerinjector.cpp b/launcher/core/injector/debuggerinjector.cpp index 4985b135f8..b55467e519 100644 --- a/launcher/core/injector/debuggerinjector.cpp +++ b/launcher/core/injector/debuggerinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "debuggerinjector.h" diff --git a/launcher/core/injector/debuggerinjector.h b/launcher/core/injector/debuggerinjector.h index 98dce00cda..2fe041b358 100644 --- a/launcher/core/injector/debuggerinjector.h +++ b/launcher/core/injector/debuggerinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_DEBUGGERINJECTOR_H diff --git a/launcher/core/injector/gdbinjector.cpp b/launcher/core/injector/gdbinjector.cpp index 05696a8fa9..5b7bc0a9a7 100644 --- a/launcher/core/injector/gdbinjector.cpp +++ b/launcher/core/injector/gdbinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/injector/gdbinjector.h b/launcher/core/injector/gdbinjector.h index f2dcf0851b..6f9dab3746 100644 --- a/launcher/core/injector/gdbinjector.h +++ b/launcher/core/injector/gdbinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_GDBINJECTOR_H diff --git a/launcher/core/injector/injectorfactory.cpp b/launcher/core/injector/injectorfactory.cpp index d9ef564ac3..0a2c59c750 100644 --- a/launcher/core/injector/injectorfactory.cpp +++ b/launcher/core/injector/injectorfactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "injectorfactory.h" diff --git a/launcher/core/injector/injectorfactory.h b/launcher/core/injector/injectorfactory.h index c40dc0a71e..4949a1ffeb 100644 --- a/launcher/core/injector/injectorfactory.h +++ b/launcher/core/injector/injectorfactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_INJECTORFACTORY_H diff --git a/launcher/core/injector/injectorstyleplugin.cpp b/launcher/core/injector/injectorstyleplugin.cpp index 03cf47595a..b62c6eed6e 100644 --- a/launcher/core/injector/injectorstyleplugin.cpp +++ b/launcher/core/injector/injectorstyleplugin.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "injectorstyleplugin.h" diff --git a/launcher/core/injector/injectorstyleplugin.h b/launcher/core/injector/injectorstyleplugin.h index 1b0becd5c5..ef5a05dfe8 100644 --- a/launcher/core/injector/injectorstyleplugin.h +++ b/launcher/core/injector/injectorstyleplugin.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_INJECTORSTYLEPLUGIN_H diff --git a/launcher/core/injector/lldbinjector.cpp b/launcher/core/injector/lldbinjector.cpp index 2eab075292..88b77be4bf 100644 --- a/launcher/core/injector/lldbinjector.cpp +++ b/launcher/core/injector/lldbinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "lldbinjector.h" diff --git a/launcher/core/injector/lldbinjector.h b/launcher/core/injector/lldbinjector.h index e5d759d622..5faaa1426e 100644 --- a/launcher/core/injector/lldbinjector.h +++ b/launcher/core/injector/lldbinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LLDBINJECTOR_H diff --git a/launcher/core/injector/preloadinjector.cpp b/launcher/core/injector/preloadinjector.cpp index 548e6f8f21..84e273d9b9 100644 --- a/launcher/core/injector/preloadinjector.cpp +++ b/launcher/core/injector/preloadinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "preloadinjector.h" diff --git a/launcher/core/injector/preloadinjector.h b/launcher/core/injector/preloadinjector.h index f23d0a9a93..14f43feb39 100644 --- a/launcher/core/injector/preloadinjector.h +++ b/launcher/core/injector/preloadinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PRELOADINJECTOR_H diff --git a/launcher/core/injector/processinjector.cpp b/launcher/core/injector/processinjector.cpp index da5b675519..b41180419a 100644 --- a/launcher/core/injector/processinjector.cpp +++ b/launcher/core/injector/processinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "processinjector.h" diff --git a/launcher/core/injector/processinjector.h b/launcher/core/injector/processinjector.h index d186ab6eee..5b7bed06e9 100644 --- a/launcher/core/injector/processinjector.h +++ b/launcher/core/injector/processinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROCESSINJECTOR_H diff --git a/launcher/core/injector/styleinjector.cpp b/launcher/core/injector/styleinjector.cpp index 61407b5a68..005f07fa2d 100644 --- a/launcher/core/injector/styleinjector.cpp +++ b/launcher/core/injector/styleinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/injector/styleinjector.h b/launcher/core/injector/styleinjector.h index 4b1c7e1719..e84a65f5bc 100644 --- a/launcher/core/injector/styleinjector.h +++ b/launcher/core/injector/styleinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINJECTOR_H diff --git a/launcher/core/injector/windllinjector.cpp b/launcher/core/injector/windllinjector.cpp index 5a1b63a58a..c854429948 100644 --- a/launcher/core/injector/windllinjector.cpp +++ b/launcher/core/injector/windllinjector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Patrick Spendrin - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // krazy:excludeall=null,captruefalse diff --git a/launcher/core/injector/windllinjector.h b/launcher/core/injector/windllinjector.h index cc9845e355..2c804849a2 100644 --- a/launcher/core/injector/windllinjector.h +++ b/launcher/core/injector/windllinjector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Patrick Spendrin - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WINDLLINJECTOR_H diff --git a/launcher/core/launcher.cpp b/launcher/core/launcher.cpp index 1868b54872..6b3bbbb956 100644 --- a/launcher/core/launcher.cpp +++ b/launcher/core/launcher.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "launcher.h" diff --git a/launcher/core/launcher.h b/launcher/core/launcher.h index 26544cbb68..0085afaa63 100644 --- a/launcher/core/launcher.h +++ b/launcher/core/launcher.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LAUNCHER_H diff --git a/launcher/core/launcherfinder.cpp b/launcher/core/launcherfinder.cpp index d3ce36bbee..f5681f285f 100644 --- a/launcher/core/launcherfinder.cpp +++ b/launcher/core/launcherfinder.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "launcherfinder.h" diff --git a/launcher/core/launcherfinder.h b/launcher/core/launcherfinder.h index 4a2359b0bf..cd9d27937d 100644 --- a/launcher/core/launcherfinder.h +++ b/launcher/core/launcherfinder.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LAUNCHERFINDER_H diff --git a/launcher/core/launchoptions.cpp b/launcher/core/launchoptions.cpp index ffcbf07a62..a0192510e3 100644 --- a/launcher/core/launchoptions.cpp +++ b/launcher/core/launchoptions.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "launchoptions.h" diff --git a/launcher/core/launchoptions.h b/launcher/core/launchoptions.h index 5ad5c322b1..fd81dc99cf 100644 --- a/launcher/core/launchoptions.h +++ b/launcher/core/launchoptions.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LAUNCHOPTIONS_H diff --git a/launcher/core/libraryutil.cpp b/launcher/core/libraryutil.cpp index b3bc36d367..7dff114fc4 100644 --- a/launcher/core/libraryutil.cpp +++ b/launcher/core/libraryutil.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "libraryutil.h" diff --git a/launcher/core/libraryutil.h b/launcher/core/libraryutil.h index e4da1fb6e3..2d8b5ca8c1 100644 --- a/launcher/core/libraryutil.h +++ b/launcher/core/libraryutil.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LIBRARYUTIL_H diff --git a/launcher/core/networkdiscoverymodel.cpp b/launcher/core/networkdiscoverymodel.cpp index 747e7744a6..393e2edf36 100644 --- a/launcher/core/networkdiscoverymodel.cpp +++ b/launcher/core/networkdiscoverymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkdiscoverymodel.h" diff --git a/launcher/core/networkdiscoverymodel.h b/launcher/core/networkdiscoverymodel.h index e3cf36bdd3..bed5713ddd 100644 --- a/launcher/core/networkdiscoverymodel.h +++ b/launcher/core/networkdiscoverymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKDISCOVERYMODEL_H diff --git a/launcher/core/pefile.cpp b/launcher/core/pefile.cpp index 3bee8389ff..80b281c3a0 100644 --- a/launcher/core/pefile.cpp +++ b/launcher/core/pefile.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "pefile.h" diff --git a/launcher/core/pefile.h b/launcher/core/pefile.h index c0aff76c0d..15b35cfd48 100644 --- a/launcher/core/pefile.h +++ b/launcher/core/pefile.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PEFILE_H diff --git a/launcher/core/probeabi.cpp b/launcher/core/probeabi.cpp index 1a2dd48b9b..067630201d 100644 --- a/launcher/core/probeabi.cpp +++ b/launcher/core/probeabi.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/probeabi.h b/launcher/core/probeabi.h index 2017976b45..1c1e5a90fd 100644 --- a/launcher/core/probeabi.h +++ b/launcher/core/probeabi.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBEABI_H diff --git a/launcher/core/probeabidetector.cpp b/launcher/core/probeabidetector.cpp index 6f04c42262..4f16d9385e 100644 --- a/launcher/core/probeabidetector.cpp +++ b/launcher/core/probeabidetector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/probeabidetector.h b/launcher/core/probeabidetector.h index c6d989959b..d8ac4806ea 100644 --- a/launcher/core/probeabidetector.h +++ b/launcher/core/probeabidetector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBEABIDETECTOR_H diff --git a/launcher/core/probeabidetector_dummy.cpp b/launcher/core/probeabidetector_dummy.cpp index 7d459ea0a5..8cdef6249b 100644 --- a/launcher/core/probeabidetector_dummy.cpp +++ b/launcher/core/probeabidetector_dummy.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/probeabidetector_elf.cpp b/launcher/core/probeabidetector_elf.cpp index 16ff60e722..811a4990e7 100644 --- a/launcher/core/probeabidetector_elf.cpp +++ b/launcher/core/probeabidetector_elf.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/probeabidetector_mac.cpp b/launcher/core/probeabidetector_mac.cpp index 9a063df8c8..36a2bb91c9 100644 --- a/launcher/core/probeabidetector_mac.cpp +++ b/launcher/core/probeabidetector_mac.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // krazy:excludeall=null since used by Darwin internals diff --git a/launcher/core/probeabidetector_win.cpp b/launcher/core/probeabidetector_win.cpp index 3d58d2f894..37d380a32b 100644 --- a/launcher/core/probeabidetector_win.cpp +++ b/launcher/core/probeabidetector_win.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/probefinder.cpp b/launcher/core/probefinder.cpp index 4088309b72..4eb584950d 100644 --- a/launcher/core/probefinder.cpp +++ b/launcher/core/probefinder.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/core/probefinder.h b/launcher/core/probefinder.h index f79904b7ff..8fd2d5bacd 100644 --- a/launcher/core/probefinder.h +++ b/launcher/core/probefinder.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBEFINDER_H diff --git a/launcher/core/selftest.cpp b/launcher/core/selftest.cpp index 373e67be8c..2eae003c34 100644 --- a/launcher/core/selftest.cpp +++ b/launcher/core/selftest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "selftest.h" diff --git a/launcher/core/selftest.h b/launcher/core/selftest.h index f774f89fce..3d8d45f088 100644 --- a/launcher/core/selftest.h +++ b/launcher/core/selftest.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SELFTEST_H diff --git a/launcher/ui/CMakeLists.txt b/launcher/ui/CMakeLists.txt index 7f5eff5814..27295d00b7 100644 --- a/launcher/ui/CMakeLists.txt +++ b/launcher/ui/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # set(gammaray_launcher_ui_srcs promolabel.cpp diff --git a/launcher/ui/attachdialog.cpp b/launcher/ui/attachdialog.cpp index bfd813ebf1..cc9aa53b54 100644 --- a/launcher/ui/attachdialog.cpp +++ b/launcher/ui/attachdialog.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include @@ -61,7 +58,7 @@ AttachDialog::AttachDialog(QWidget *parent, Qt::WindowFlags f) ui->view->setModel(m_proxyModel); // hide state ui->view->hideColumn(ProcessModel::StateColumn); - ui->view->sortByColumn(ProcessModel::NameColumn, Qt::AscendingOrder); + ui->view->sortByColumn(ProcessModel::PIDColumn, Qt::DescendingOrder); ui->view->setSortingEnabled(true); ui->view->setEditTriggers(QAbstractItemView::NoEditTriggers); @@ -157,7 +154,10 @@ void AttachDialog::updateProcessesFinished() { QFutureWatcher *watcher = dynamic_cast *>(sender()); Q_ASSERT(watcher); - ui->stackedWidget->setCurrentWidget(ui->listViewPage); + if (ui->stackedWidget->currentWidget() != ui->listViewPage) { + ui->stackedWidget->setCurrentWidget(ui->listViewPage); + ui->filter->setFocus(); + } const int oldPid = pid(); m_model->mergeProcesses(watcher->result()); if (oldPid != pid()) diff --git a/launcher/ui/attachdialog.h b/launcher/ui/attachdialog.h index 25c138d3c5..1d76b00cea 100644 --- a/launcher/ui/attachdialog.h +++ b/launcher/ui/attachdialog.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ATTACHDIALOG_H diff --git a/launcher/ui/connectpage.cpp b/launcher/ui/connectpage.cpp index 0218695e90..ce7f5435bf 100644 --- a/launcher/ui/connectpage.cpp +++ b/launcher/ui/connectpage.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "connectpage.h" diff --git a/launcher/ui/connectpage.h b/launcher/ui/connectpage.h index 25acc0b3cb..240afb4414 100644 --- a/launcher/ui/connectpage.h +++ b/launcher/ui/connectpage.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CONNECTPAGE_H diff --git a/launcher/ui/launcherwindow.cpp b/launcher/ui/launcherwindow.cpp index afb2a59f43..ebfc2f4d67 100644 --- a/launcher/ui/launcherwindow.cpp +++ b/launcher/ui/launcherwindow.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "launcherwindow.h" diff --git a/launcher/ui/launcherwindow.h b/launcher/ui/launcherwindow.h index 21a60f7e3e..b2b41f5936 100644 --- a/launcher/ui/launcherwindow.h +++ b/launcher/ui/launcherwindow.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LAUNCHERWINDOW_H diff --git a/launcher/ui/launchpage.cpp b/launcher/ui/launchpage.cpp index 34b0e25d69..3e6257138b 100644 --- a/launcher/ui/launchpage.cpp +++ b/launcher/ui/launchpage.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/ui/launchpage.h b/launcher/ui/launchpage.h index 58097a23c2..9c57686656 100644 --- a/launcher/ui/launchpage.h +++ b/launcher/ui/launchpage.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LAUNCHPAGE_H diff --git a/launcher/ui/probeabimodel.cpp b/launcher/ui/probeabimodel.cpp index 898848950b..d28263734d 100644 --- a/launcher/ui/probeabimodel.cpp +++ b/launcher/ui/probeabimodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "probeabimodel.h" diff --git a/launcher/ui/probeabimodel.h b/launcher/ui/probeabimodel.h index 99c19e2589..86926c6e43 100644 --- a/launcher/ui/probeabimodel.h +++ b/launcher/ui/probeabimodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBEABIMODEL_H diff --git a/launcher/ui/processfiltermodel.cpp b/launcher/ui/processfiltermodel.cpp index 85d7f70672..78bcab6d62 100644 --- a/launcher/ui/processfiltermodel.cpp +++ b/launcher/ui/processfiltermodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "processfiltermodel.h" diff --git a/launcher/ui/processfiltermodel.h b/launcher/ui/processfiltermodel.h index e6d26f6e73..9cc4cc66ca 100644 --- a/launcher/ui/processfiltermodel.h +++ b/launcher/ui/processfiltermodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROCESSFILTERMODEL_H diff --git a/launcher/ui/processmodel.cpp b/launcher/ui/processmodel.cpp index cc9f5c2a79..f185a7f6e1 100644 --- a/launcher/ui/processmodel.cpp +++ b/launcher/ui/processmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "processmodel.h" diff --git a/launcher/ui/processmodel.h b/launcher/ui/processmodel.h index 76c28182b4..1b7de46487 100644 --- a/launcher/ui/processmodel.h +++ b/launcher/ui/processmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROCESSMODEL_H diff --git a/launcher/ui/promolabel.cpp b/launcher/ui/promolabel.cpp index d3d97a647d..812fae0b56 100644 --- a/launcher/ui/promolabel.cpp +++ b/launcher/ui/promolabel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "promolabel.h" diff --git a/launcher/ui/promolabel.h b/launcher/ui/promolabel.h index 4e34d41409..9c2382d8dc 100644 --- a/launcher/ui/promolabel.h +++ b/launcher/ui/promolabel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROMOLABEL_H diff --git a/launcher/ui/selftestpage.cpp b/launcher/ui/selftestpage.cpp index 7f6ffb32b7..d91b79c2c0 100644 --- a/launcher/ui/selftestpage.cpp +++ b/launcher/ui/selftestpage.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/launcher/ui/selftestpage.h b/launcher/ui/selftestpage.h index f368f2904a..39926a14ba 100644 --- a/launcher/ui/selftestpage.h +++ b/launcher/ui/selftestpage.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SELFTESTPAGE_H diff --git a/launcher/win-injector/CMakeLists.txt b/launcher/win-injector/CMakeLists.txt index a38702daf1..9898e4864f 100644 --- a/launcher/win-injector/CMakeLists.txt +++ b/launcher/win-injector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(WIN32) add_executable( diff --git a/launcher/win-injector/wininjector-cli.cpp b/launcher/win-injector/wininjector-cli.cpp index f48408fa83..fd38c98fa2 100644 --- a/launcher/win-injector/wininjector-cli.cpp +++ b/launcher/win-injector/wininjector-cli.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Hannah von Reth - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "../core/injector/basicwindllinjector.h" diff --git a/multibuild/CMakeLists.txt b/multibuild/CMakeLists.txt index 4378ed6870..3fe1e288c1 100644 --- a/multibuild/CMakeLists.txt +++ b/multibuild/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # include(ExternalProject) diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt index a8030a144a..eb4c5193e3 100644 --- a/plugins/CMakeLists.txt +++ b/plugins/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(TARGET Qt5::Core) add_subdirectory(codecbrowser) diff --git a/plugins/actioninspector/CMakeLists.txt b/plugins/actioninspector/CMakeLists.txt index 3c74199cef..134c3d4bb2 100644 --- a/plugins/actioninspector/CMakeLists.txt +++ b/plugins/actioninspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/actioninspector/actioninspector.cpp b/plugins/actioninspector/actioninspector.cpp index 169a7584a6..ddb339f332 100644 --- a/plugins/actioninspector/actioninspector.cpp +++ b/plugins/actioninspector/actioninspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "actioninspector.h" diff --git a/plugins/actioninspector/actioninspector.h b/plugins/actioninspector/actioninspector.h index 2ded20c9b1..4fa70c26ce 100644 --- a/plugins/actioninspector/actioninspector.h +++ b/plugins/actioninspector/actioninspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ACTIONINSPECTOR_ACTIONINSPECTOR_H diff --git a/plugins/actioninspector/actioninspectorwidget.cpp b/plugins/actioninspector/actioninspectorwidget.cpp index a13f159a9c..824e157336 100644 --- a/plugins/actioninspector/actioninspectorwidget.cpp +++ b/plugins/actioninspector/actioninspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "actioninspectorwidget.h" diff --git a/plugins/actioninspector/actioninspectorwidget.h b/plugins/actioninspector/actioninspectorwidget.h index 92e25dd9e1..3906cdc85b 100644 --- a/plugins/actioninspector/actioninspectorwidget.h +++ b/plugins/actioninspector/actioninspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ACTIONINSPECTOR_ACTIONINSPECTORWIDGET_H diff --git a/plugins/actioninspector/actionmodel.cpp b/plugins/actioninspector/actionmodel.cpp index 9ada19b7a1..f8c804e1fa 100644 --- a/plugins/actioninspector/actionmodel.cpp +++ b/plugins/actioninspector/actionmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "actionmodel.h" diff --git a/plugins/actioninspector/actionmodel.h b/plugins/actioninspector/actionmodel.h index f6a9063447..f2ca831364 100644 --- a/plugins/actioninspector/actionmodel.h +++ b/plugins/actioninspector/actionmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ACTIONINSPECTOR_ACTIONMODEL_H diff --git a/plugins/actioninspector/actionvalidator.cpp b/plugins/actioninspector/actionvalidator.cpp index 2773d698e7..880e11cb35 100644 --- a/plugins/actioninspector/actionvalidator.cpp +++ b/plugins/actioninspector/actionvalidator.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "actionvalidator.h" diff --git a/plugins/actioninspector/actionvalidator.h b/plugins/actioninspector/actionvalidator.h index 34d0ea829c..93c657e773 100644 --- a/plugins/actioninspector/actionvalidator.h +++ b/plugins/actioninspector/actionvalidator.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ACTIONINSPECTOR_ACTIONVALIDATOR_H diff --git a/plugins/actioninspector/clientactionmodel.cpp b/plugins/actioninspector/clientactionmodel.cpp index a5c46afcff..ab31bf51d1 100644 --- a/plugins/actioninspector/clientactionmodel.cpp +++ b/plugins/actioninspector/clientactionmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientactionmodel.h" diff --git a/plugins/actioninspector/clientactionmodel.h b/plugins/actioninspector/clientactionmodel.h index 20b96e1529..f6088378a5 100644 --- a/plugins/actioninspector/clientactionmodel.h +++ b/plugins/actioninspector/clientactionmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTACTIONMODEL_H diff --git a/plugins/bluetooth/CMakeLists.txt b/plugins/bluetooth/CMakeLists.txt index 4fda75ff92..a5c23926f3 100644 --- a/plugins/bluetooth/CMakeLists.txt +++ b/plugins/bluetooth/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/bluetooth/bluetooth.cpp b/plugins/bluetooth/bluetooth.cpp index bdc0fb8852..b8e2100fb7 100644 --- a/plugins/bluetooth/bluetooth.cpp +++ b/plugins/bluetooth/bluetooth.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "bluetooth.h" diff --git a/plugins/bluetooth/bluetooth.h b/plugins/bluetooth/bluetooth.h index b27b5bf48a..469932561f 100644 --- a/plugins/bluetooth/bluetooth.h +++ b/plugins/bluetooth/bluetooth.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BLUETOOTH_BLUETOOTH_H diff --git a/plugins/codecbrowser/CMakeLists.txt b/plugins/codecbrowser/CMakeLists.txt index 68b6493cb4..ba70ede5f5 100644 --- a/plugins/codecbrowser/CMakeLists.txt +++ b/plugins/codecbrowser/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/codecbrowser/codecbrowser.cpp b/plugins/codecbrowser/codecbrowser.cpp index 2b08cfc364..be9be1177d 100644 --- a/plugins/codecbrowser/codecbrowser.cpp +++ b/plugins/codecbrowser/codecbrowser.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "codecbrowser.h" diff --git a/plugins/codecbrowser/codecbrowser.h b/plugins/codecbrowser/codecbrowser.h index c070e0586c..4976980602 100644 --- a/plugins/codecbrowser/codecbrowser.h +++ b/plugins/codecbrowser/codecbrowser.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CODECBROWSER_CODECBROWSER_H diff --git a/plugins/codecbrowser/codecbrowserwidget.cpp b/plugins/codecbrowser/codecbrowserwidget.cpp index c603577795..79f4cc5944 100644 --- a/plugins/codecbrowser/codecbrowserwidget.cpp +++ b/plugins/codecbrowser/codecbrowserwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "codecbrowserwidget.h" diff --git a/plugins/codecbrowser/codecbrowserwidget.h b/plugins/codecbrowser/codecbrowserwidget.h index 99dbcbb0f2..d57a5fb480 100644 --- a/plugins/codecbrowser/codecbrowserwidget.h +++ b/plugins/codecbrowser/codecbrowserwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CODECBROWSERWIDGET_CODECBROWSERWIDGET_H diff --git a/plugins/codecbrowser/codecmodel.cpp b/plugins/codecbrowser/codecmodel.cpp index 802d8b4899..86fd0f8460 100644 --- a/plugins/codecbrowser/codecmodel.cpp +++ b/plugins/codecbrowser/codecmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "codecmodel.h" diff --git a/plugins/codecbrowser/codecmodel.h b/plugins/codecbrowser/codecmodel.h index 497b4fe8d9..82480f72b0 100644 --- a/plugins/codecbrowser/codecmodel.h +++ b/plugins/codecbrowser/codecmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CODECBROWSER_CODECMODEL_H diff --git a/plugins/eventmonitor/CMakeLists.txt b/plugins/eventmonitor/CMakeLists.txt index f1762624bb..38eec74c90 100644 --- a/plugins/eventmonitor/CMakeLists.txt +++ b/plugins/eventmonitor/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/eventmonitor/eventmodel.cpp b/plugins/eventmonitor/eventmodel.cpp index 1a28ccd271..53164a8f98 100644 --- a/plugins/eventmonitor/eventmodel.cpp +++ b/plugins/eventmonitor/eventmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventmodel.h" diff --git a/plugins/eventmonitor/eventmodel.h b/plugins/eventmonitor/eventmodel.h index 1a25ec4d68..5b257eb866 100644 --- a/plugins/eventmonitor/eventmodel.h +++ b/plugins/eventmonitor/eventmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITOR_EVENTMODEL_H #define GAMMARAY_EVENTMONITOR_EVENTMODEL_H diff --git a/plugins/eventmonitor/eventmodelroles.h b/plugins/eventmonitor/eventmodelroles.h index 4a1c06a7e8..0cf51d9980 100644 --- a/plugins/eventmonitor/eventmodelroles.h +++ b/plugins/eventmonitor/eventmodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMODELROLES diff --git a/plugins/eventmonitor/eventmonitor.cpp b/plugins/eventmonitor/eventmonitor.cpp index d653fb6e51..2e1a3b5441 100644 --- a/plugins/eventmonitor/eventmonitor.cpp +++ b/plugins/eventmonitor/eventmonitor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventmonitor.h" diff --git a/plugins/eventmonitor/eventmonitor.h b/plugins/eventmonitor/eventmonitor.h index 53d414e69a..e1abc143c5 100644 --- a/plugins/eventmonitor/eventmonitor.h +++ b/plugins/eventmonitor/eventmonitor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITOR_EVENTMONITOR_H diff --git a/plugins/eventmonitor/eventmonitorclient.cpp b/plugins/eventmonitor/eventmonitorclient.cpp index 1a3c0d1a01..adb456610c 100644 --- a/plugins/eventmonitor/eventmonitorclient.cpp +++ b/plugins/eventmonitor/eventmonitorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventmonitorclient.h" diff --git a/plugins/eventmonitor/eventmonitorclient.h b/plugins/eventmonitor/eventmonitorclient.h index 7f9b6e22b5..848cbdd480 100644 --- a/plugins/eventmonitor/eventmonitorclient.h +++ b/plugins/eventmonitor/eventmonitorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITORCLIENT_H diff --git a/plugins/eventmonitor/eventmonitorinterface.cpp b/plugins/eventmonitor/eventmonitorinterface.cpp index a3051063c7..46bab5d73b 100644 --- a/plugins/eventmonitor/eventmonitorinterface.cpp +++ b/plugins/eventmonitor/eventmonitorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventmonitorinterface.h" diff --git a/plugins/eventmonitor/eventmonitorinterface.h b/plugins/eventmonitor/eventmonitorinterface.h index 6541f6a3b1..e9994f17bd 100644 --- a/plugins/eventmonitor/eventmonitorinterface.h +++ b/plugins/eventmonitor/eventmonitorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITOR_EVENTMONITORINTERFACE_H diff --git a/plugins/eventmonitor/eventmonitorwidget.cpp b/plugins/eventmonitor/eventmonitorwidget.cpp index 8cb6e5ccab..f6e5f39d8c 100644 --- a/plugins/eventmonitor/eventmonitorwidget.cpp +++ b/plugins/eventmonitor/eventmonitorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventmonitorwidget.h" diff --git a/plugins/eventmonitor/eventmonitorwidget.h b/plugins/eventmonitor/eventmonitorwidget.h index 41b260bacc..5edaef60c8 100644 --- a/plugins/eventmonitor/eventmonitorwidget.h +++ b/plugins/eventmonitor/eventmonitorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITOR_EVENTMONITORWIDGET_H diff --git a/plugins/eventmonitor/eventtypeclientproxymodel.cpp b/plugins/eventmonitor/eventtypeclientproxymodel.cpp index 8fc4dbf3dc..7e4f4a4d87 100644 --- a/plugins/eventmonitor/eventtypeclientproxymodel.cpp +++ b/plugins/eventmonitor/eventtypeclientproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventtypeclientproxymodel.h" diff --git a/plugins/eventmonitor/eventtypeclientproxymodel.h b/plugins/eventmonitor/eventtypeclientproxymodel.h index 047c2fce3f..8dc39d7cc3 100644 --- a/plugins/eventmonitor/eventtypeclientproxymodel.h +++ b/plugins/eventmonitor/eventtypeclientproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITOR_EVENTTYPECLIENTPROXYMODEL_H #define GAMMARAY_EVENTMONITOR_EVENTTYPECLIENTPROXYMODEL_H diff --git a/plugins/eventmonitor/eventtypefilter.cpp b/plugins/eventmonitor/eventtypefilter.cpp index 95db08da5c..b98e8ecbc6 100644 --- a/plugins/eventmonitor/eventtypefilter.cpp +++ b/plugins/eventmonitor/eventtypefilter.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventtypefilter.h" diff --git a/plugins/eventmonitor/eventtypefilter.h b/plugins/eventmonitor/eventtypefilter.h index 9967f69ec4..13bb5513d6 100644 --- a/plugins/eventmonitor/eventtypefilter.h +++ b/plugins/eventmonitor/eventtypefilter.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITOR_EVENTTYPEFILTER_H diff --git a/plugins/eventmonitor/eventtypemodel.cpp b/plugins/eventmonitor/eventtypemodel.cpp index f7dc54771b..d329db6cce 100644 --- a/plugins/eventmonitor/eventtypemodel.cpp +++ b/plugins/eventmonitor/eventtypemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "eventtypemodel.h" diff --git a/plugins/eventmonitor/eventtypemodel.h b/plugins/eventmonitor/eventtypemodel.h index 3c800a8fdf..bab745d345 100644 --- a/plugins/eventmonitor/eventtypemodel.h +++ b/plugins/eventmonitor/eventtypemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tim Henning - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EVENTMONITOR_EVENTTYPEMODEL_H #define GAMMARAY_EVENTMONITOR_EVENTTYPEMODEL_H diff --git a/plugins/fontbrowser/CMakeLists.txt b/plugins/fontbrowser/CMakeLists.txt index 86220e4c86..a73f914625 100644 --- a/plugins/fontbrowser/CMakeLists.txt +++ b/plugins/fontbrowser/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/fontbrowser/fontbrowser.cpp b/plugins/fontbrowser/fontbrowser.cpp index 593b18ea84..36a1bb2928 100644 --- a/plugins/fontbrowser/fontbrowser.cpp +++ b/plugins/fontbrowser/fontbrowser.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "fontbrowser.h" diff --git a/plugins/fontbrowser/fontbrowser.h b/plugins/fontbrowser/fontbrowser.h index 1ca2f17585..4391cc36e5 100644 --- a/plugins/fontbrowser/fontbrowser.h +++ b/plugins/fontbrowser/fontbrowser.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FONTBROWSER_FONTBROWSER_H diff --git a/plugins/fontbrowser/fontbrowserclient.cpp b/plugins/fontbrowser/fontbrowserclient.cpp index 9c59cda0a2..7d5fb76449 100644 --- a/plugins/fontbrowser/fontbrowserclient.cpp +++ b/plugins/fontbrowser/fontbrowserclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "fontbrowserclient.h" diff --git a/plugins/fontbrowser/fontbrowserclient.h b/plugins/fontbrowser/fontbrowserclient.h index af8d2f87d0..ceada234f9 100644 --- a/plugins/fontbrowser/fontbrowserclient.h +++ b/plugins/fontbrowser/fontbrowserclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FONTBROWSER_FONTBROWSERCLIENT_H diff --git a/plugins/fontbrowser/fontbrowserinterface.cpp b/plugins/fontbrowser/fontbrowserinterface.cpp index 890cddcf79..4a2ba4130d 100644 --- a/plugins/fontbrowser/fontbrowserinterface.cpp +++ b/plugins/fontbrowser/fontbrowserinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "fontbrowserinterface.h" diff --git a/plugins/fontbrowser/fontbrowserinterface.h b/plugins/fontbrowser/fontbrowserinterface.h index adf776f748..d61ea6810c 100644 --- a/plugins/fontbrowser/fontbrowserinterface.h +++ b/plugins/fontbrowser/fontbrowserinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FONTBROWSER_FONTBROWSERINTERFACE_H diff --git a/plugins/fontbrowser/fontbrowserserver.cpp b/plugins/fontbrowser/fontbrowserserver.cpp index 3747cc0b60..c3d2493025 100644 --- a/plugins/fontbrowser/fontbrowserserver.cpp +++ b/plugins/fontbrowser/fontbrowserserver.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "fontbrowserserver.h" diff --git a/plugins/fontbrowser/fontbrowserserver.h b/plugins/fontbrowser/fontbrowserserver.h index 29e4445bd8..cb8e502d2f 100644 --- a/plugins/fontbrowser/fontbrowserserver.h +++ b/plugins/fontbrowser/fontbrowserserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FONTBROWSER_FONTBROWSERSERVER_H diff --git a/plugins/fontbrowser/fontbrowserwidget.cpp b/plugins/fontbrowser/fontbrowserwidget.cpp index 436f6a09f3..9cda064117 100644 --- a/plugins/fontbrowser/fontbrowserwidget.cpp +++ b/plugins/fontbrowser/fontbrowserwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "fontbrowserwidget.h" diff --git a/plugins/fontbrowser/fontbrowserwidget.h b/plugins/fontbrowser/fontbrowserwidget.h index a8729559df..191823d4b6 100644 --- a/plugins/fontbrowser/fontbrowserwidget.h +++ b/plugins/fontbrowser/fontbrowserwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FONTBROWSER_FONTBROWSERWIDGET_H diff --git a/plugins/fontbrowser/fontdatabasemodel.cpp b/plugins/fontbrowser/fontdatabasemodel.cpp index 89a6b3a8fa..1c3bc0b0da 100644 --- a/plugins/fontbrowser/fontdatabasemodel.cpp +++ b/plugins/fontbrowser/fontdatabasemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "fontdatabasemodel.h" diff --git a/plugins/fontbrowser/fontdatabasemodel.h b/plugins/fontbrowser/fontdatabasemodel.h index 0f4b38bf6c..8bb96c751e 100644 --- a/plugins/fontbrowser/fontdatabasemodel.h +++ b/plugins/fontbrowser/fontdatabasemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FONTDATABASEMODEL_H diff --git a/plugins/fontbrowser/fontmodel.cpp b/plugins/fontbrowser/fontmodel.cpp index 8a90313cf8..23a45800f2 100644 --- a/plugins/fontbrowser/fontmodel.cpp +++ b/plugins/fontbrowser/fontmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "fontmodel.h" diff --git a/plugins/fontbrowser/fontmodel.h b/plugins/fontbrowser/fontmodel.h index 7e34c75caf..76b0bdacd1 100644 --- a/plugins/fontbrowser/fontmodel.h +++ b/plugins/fontbrowser/fontmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FONTBROWSER_FONTMODEL_H diff --git a/plugins/guisupport/CMakeLists.txt b/plugins/guisupport/CMakeLists.txt index 95934a9e9e..1c1f1cb0ce 100644 --- a/plugins/guisupport/CMakeLists.txt +++ b/plugins/guisupport/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/guisupport/guisupport.cpp b/plugins/guisupport/guisupport.cpp index 542acc79c7..c55c46f07d 100644 --- a/plugins/guisupport/guisupport.cpp +++ b/plugins/guisupport/guisupport.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "guisupport.h" diff --git a/plugins/guisupport/guisupport.h b/plugins/guisupport/guisupport.h index eeb27b9ef0..e86f22879d 100644 --- a/plugins/guisupport/guisupport.h +++ b/plugins/guisupport/guisupport.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_GUISUPPORT_H diff --git a/plugins/guisupport/guisupportuifactory.cpp b/plugins/guisupport/guisupportuifactory.cpp index 5ca0747341..2b9e56355d 100644 --- a/plugins/guisupport/guisupportuifactory.cpp +++ b/plugins/guisupport/guisupportuifactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "guisupportuifactory.h" diff --git a/plugins/guisupport/guisupportuifactory.h b/plugins/guisupport/guisupportuifactory.h index 6a37ba6e71..cbfd2915c7 100644 --- a/plugins/guisupport/guisupportuifactory.h +++ b/plugins/guisupport/guisupportuifactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_GUISUPPORTUIFACTORY_H diff --git a/plugins/guisupport/paintanalyzertab.cpp b/plugins/guisupport/paintanalyzertab.cpp index 1357effdf5..3066b7cb53 100644 --- a/plugins/guisupport/paintanalyzertab.cpp +++ b/plugins/guisupport/paintanalyzertab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintanalyzertab.h" diff --git a/plugins/guisupport/paintanalyzertab.h b/plugins/guisupport/paintanalyzertab.h index 8552143f19..56ae09e40c 100644 --- a/plugins/guisupport/paintanalyzertab.h +++ b/plugins/guisupport/paintanalyzertab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTANALYZERTAB_H diff --git a/plugins/kjobtracker/CMakeLists.txt b/plugins/kjobtracker/CMakeLists.txt index 4ef0cf0da5..3943eccde1 100644 --- a/plugins/kjobtracker/CMakeLists.txt +++ b/plugins/kjobtracker/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # find_package(KF${QtCore_VERSION_MAJOR}CoreAddons NO_MODULE QUIET) set_package_properties( diff --git a/plugins/kjobtracker/kjobmodel.cpp b/plugins/kjobtracker/kjobmodel.cpp index 363151aad8..7972018f0b 100644 --- a/plugins/kjobtracker/kjobmodel.cpp +++ b/plugins/kjobtracker/kjobmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "kjobmodel.h" diff --git a/plugins/kjobtracker/kjobmodel.h b/plugins/kjobtracker/kjobmodel.h index af42b61910..29cbf5a184 100644 --- a/plugins/kjobtracker/kjobmodel.h +++ b/plugins/kjobtracker/kjobmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_KJOBTRACKER_KJOBMODEL_H diff --git a/plugins/kjobtracker/kjobtracker.cpp b/plugins/kjobtracker/kjobtracker.cpp index c3750a51e5..4b7db647b5 100644 --- a/plugins/kjobtracker/kjobtracker.cpp +++ b/plugins/kjobtracker/kjobtracker.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "kjobtracker.h" diff --git a/plugins/kjobtracker/kjobtracker.h b/plugins/kjobtracker/kjobtracker.h index 7b988a37a1..c485fc48b2 100644 --- a/plugins/kjobtracker/kjobtracker.h +++ b/plugins/kjobtracker/kjobtracker.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_KJOBTRACKER_KJOBTRACKER_H diff --git a/plugins/kjobtracker/kjobtrackerwidget.cpp b/plugins/kjobtracker/kjobtrackerwidget.cpp index 476d9b8872..43256f93d8 100644 --- a/plugins/kjobtracker/kjobtrackerwidget.cpp +++ b/plugins/kjobtracker/kjobtrackerwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "kjobtrackerwidget.h" diff --git a/plugins/kjobtracker/kjobtrackerwidget.h b/plugins/kjobtracker/kjobtrackerwidget.h index 2f7fe9a688..547ce5c6a1 100644 --- a/plugins/kjobtracker/kjobtrackerwidget.h +++ b/plugins/kjobtracker/kjobtrackerwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_KJOBTRACKER_KJOBTRACKERWIDGET_H diff --git a/plugins/localeinspector/CMakeLists.txt b/plugins/localeinspector/CMakeLists.txt index 625f6dd02e..e145e0403d 100644 --- a/plugins/localeinspector/CMakeLists.txt +++ b/plugins/localeinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/localeinspector/localeaccessormodel.cpp b/plugins/localeinspector/localeaccessormodel.cpp index 9306f1008e..2898d438f7 100644 --- a/plugins/localeinspector/localeaccessormodel.cpp +++ b/plugins/localeinspector/localeaccessormodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localeaccessormodel.h" diff --git a/plugins/localeinspector/localeaccessormodel.h b/plugins/localeinspector/localeaccessormodel.h index 3d1bc20035..4306e6c62a 100644 --- a/plugins/localeinspector/localeaccessormodel.h +++ b/plugins/localeinspector/localeaccessormodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALEINSPECTOR_LOCALEACCESSORMODEL_H diff --git a/plugins/localeinspector/localedataaccessor.cpp b/plugins/localeinspector/localedataaccessor.cpp index a9f0f909d2..0f34dbb4ff 100644 --- a/plugins/localeinspector/localedataaccessor.cpp +++ b/plugins/localeinspector/localedataaccessor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localedataaccessor.h" diff --git a/plugins/localeinspector/localedataaccessor.h b/plugins/localeinspector/localedataaccessor.h index 8af42462fe..e123f41014 100644 --- a/plugins/localeinspector/localedataaccessor.h +++ b/plugins/localeinspector/localedataaccessor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALEINSPECTOR_LOCALEDATAACCESSOR_H diff --git a/plugins/localeinspector/localeinspector.cpp b/plugins/localeinspector/localeinspector.cpp index 9ced2d6913..e7c6b2f4f0 100644 --- a/plugins/localeinspector/localeinspector.cpp +++ b/plugins/localeinspector/localeinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localeinspector.h" diff --git a/plugins/localeinspector/localeinspector.h b/plugins/localeinspector/localeinspector.h index fcf642c965..28e7acd3fc 100644 --- a/plugins/localeinspector/localeinspector.h +++ b/plugins/localeinspector/localeinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALEINSPECTOR_LOCALEINSPECTOR_H diff --git a/plugins/localeinspector/localeinspectorwidget.cpp b/plugins/localeinspector/localeinspectorwidget.cpp index 1bac755d95..9837218ebf 100644 --- a/plugins/localeinspector/localeinspectorwidget.cpp +++ b/plugins/localeinspector/localeinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localeinspectorwidget.h" diff --git a/plugins/localeinspector/localeinspectorwidget.h b/plugins/localeinspector/localeinspectorwidget.h index e4ad882f4f..30f86f4892 100644 --- a/plugins/localeinspector/localeinspectorwidget.h +++ b/plugins/localeinspector/localeinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALEINSPECTOR_LOCALEINSPECTORWIDGET_H diff --git a/plugins/localeinspector/localemodel.cpp b/plugins/localeinspector/localemodel.cpp index 732f36ae2f..d065a66373 100644 --- a/plugins/localeinspector/localemodel.cpp +++ b/plugins/localeinspector/localemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localemodel.h" diff --git a/plugins/localeinspector/localemodel.h b/plugins/localeinspector/localemodel.h index 24964245e7..afc81f6912 100644 --- a/plugins/localeinspector/localemodel.h +++ b/plugins/localeinspector/localemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALEINSPECTOR_LOCALEMODEL_H diff --git a/plugins/localeinspector/localetab.cpp b/plugins/localeinspector/localetab.cpp index 6f990e5361..cc00e73210 100644 --- a/plugins/localeinspector/localetab.cpp +++ b/plugins/localeinspector/localetab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "localetab.h" diff --git a/plugins/localeinspector/localetab.h b/plugins/localeinspector/localetab.h index 9b50703a28..76608577a5 100644 --- a/plugins/localeinspector/localetab.h +++ b/plugins/localeinspector/localetab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOCALETAB_H diff --git a/plugins/localeinspector/timezoneclientmodel.cpp b/plugins/localeinspector/timezoneclientmodel.cpp index 4e720db7c1..d0d561a77c 100644 --- a/plugins/localeinspector/timezoneclientmodel.cpp +++ b/plugins/localeinspector/timezoneclientmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timezoneclientmodel.h" diff --git a/plugins/localeinspector/timezoneclientmodel.h b/plugins/localeinspector/timezoneclientmodel.h index bc127831c7..3224eba454 100644 --- a/plugins/localeinspector/timezoneclientmodel.h +++ b/plugins/localeinspector/timezoneclientmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMEZONECLIENTMODEL_H diff --git a/plugins/localeinspector/timezonemodel.cpp b/plugins/localeinspector/timezonemodel.cpp index d90a9eed3f..c3dd9317c0 100644 --- a/plugins/localeinspector/timezonemodel.cpp +++ b/plugins/localeinspector/timezonemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timezonemodel.h" diff --git a/plugins/localeinspector/timezonemodel.h b/plugins/localeinspector/timezonemodel.h index 374200d993..b02bf8b61f 100644 --- a/plugins/localeinspector/timezonemodel.h +++ b/plugins/localeinspector/timezonemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMEZONEMODEL_H diff --git a/plugins/localeinspector/timezonemodelroles.h b/plugins/localeinspector/timezonemodelroles.h index 60d7171c52..d82d7a16e2 100644 --- a/plugins/localeinspector/timezonemodelroles.h +++ b/plugins/localeinspector/timezonemodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMEZONEMODELROLES_H diff --git a/plugins/localeinspector/timezoneoffsetdataclientmodel.cpp b/plugins/localeinspector/timezoneoffsetdataclientmodel.cpp index 589de92680..02d9c8df67 100644 --- a/plugins/localeinspector/timezoneoffsetdataclientmodel.cpp +++ b/plugins/localeinspector/timezoneoffsetdataclientmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timezoneoffsetdataclientmodel.h" diff --git a/plugins/localeinspector/timezoneoffsetdataclientmodel.h b/plugins/localeinspector/timezoneoffsetdataclientmodel.h index 10828d8f72..13e372ba6e 100644 --- a/plugins/localeinspector/timezoneoffsetdataclientmodel.h +++ b/plugins/localeinspector/timezoneoffsetdataclientmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMEZONEOFFSETDATACLIENTMODEL_H diff --git a/plugins/localeinspector/timezoneoffsetdatamodel.cpp b/plugins/localeinspector/timezoneoffsetdatamodel.cpp index 19910127a4..655cf6bea1 100644 --- a/plugins/localeinspector/timezoneoffsetdatamodel.cpp +++ b/plugins/localeinspector/timezoneoffsetdatamodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timezoneoffsetdatamodel.h" diff --git a/plugins/localeinspector/timezoneoffsetdatamodel.h b/plugins/localeinspector/timezoneoffsetdatamodel.h index a454092c8e..b2bd7fbe0d 100644 --- a/plugins/localeinspector/timezoneoffsetdatamodel.h +++ b/plugins/localeinspector/timezoneoffsetdatamodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMEZONEOFFSETDATAMODEL_H diff --git a/plugins/localeinspector/timezonetab.cpp b/plugins/localeinspector/timezonetab.cpp index dcd2f191fe..b7eace0fbf 100644 --- a/plugins/localeinspector/timezonetab.cpp +++ b/plugins/localeinspector/timezonetab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timezonetab.h" diff --git a/plugins/localeinspector/timezonetab.h b/plugins/localeinspector/timezonetab.h index 055069930d..2bf9aaf404 100644 --- a/plugins/localeinspector/timezonetab.h +++ b/plugins/localeinspector/timezonetab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMEZONETAB_H diff --git a/plugins/mimetypes/CMakeLists.txt b/plugins/mimetypes/CMakeLists.txt index 61e95f5def..9515f0c84f 100644 --- a/plugins/mimetypes/CMakeLists.txt +++ b/plugins/mimetypes/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/mimetypes/mimetypes.cpp b/plugins/mimetypes/mimetypes.cpp index b3f8ef68e5..32cc06ee6e 100644 --- a/plugins/mimetypes/mimetypes.cpp +++ b/plugins/mimetypes/mimetypes.cpp @@ -6,18 +6,15 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "mimetypes.h" #include "mimetypesmodel.h" -#include <3rdparty/kde/krecursivefilterproxymodel.h> +#include using namespace GammaRay; @@ -25,7 +22,7 @@ MimeTypes::MimeTypes(Probe *probe, QObject *parent) : QObject(parent) { auto model = new MimeTypesModel(this); - auto proxy = new KRecursiveFilterProxyModel(this); + auto proxy = new RecursiveProxyModelBase(this); proxy->setSourceModel(model); probe->registerModel(QStringLiteral("com.kdab.GammaRay.MimeTypeModel"), proxy); } diff --git a/plugins/mimetypes/mimetypes.h b/plugins/mimetypes/mimetypes.h index e97400ab87..309211c014 100644 --- a/plugins/mimetypes/mimetypes.h +++ b/plugins/mimetypes/mimetypes.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MIMETYPES_MIMETYPES_H diff --git a/plugins/mimetypes/mimetypesmodel.cpp b/plugins/mimetypes/mimetypesmodel.cpp index 6f49949f1f..b24700ae65 100644 --- a/plugins/mimetypes/mimetypesmodel.cpp +++ b/plugins/mimetypes/mimetypesmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "mimetypesmodel.h" diff --git a/plugins/mimetypes/mimetypesmodel.h b/plugins/mimetypes/mimetypesmodel.h index 4911f7bb04..d68929a0df 100644 --- a/plugins/mimetypes/mimetypesmodel.h +++ b/plugins/mimetypes/mimetypesmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MIMETYPES_MIMETYPESMODEL_H diff --git a/plugins/mimetypes/mimetypeswidget.cpp b/plugins/mimetypes/mimetypeswidget.cpp index 72f7a0f41c..32e2bf99ea 100644 --- a/plugins/mimetypes/mimetypeswidget.cpp +++ b/plugins/mimetypes/mimetypeswidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "mimetypeswidget.h" diff --git a/plugins/mimetypes/mimetypeswidget.h b/plugins/mimetypes/mimetypeswidget.h index 60df577453..351203fa25 100644 --- a/plugins/mimetypes/mimetypeswidget.h +++ b/plugins/mimetypes/mimetypeswidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MIMETYPESWIDGET_H diff --git a/plugins/modelinspector/CMakeLists.txt b/plugins/modelinspector/CMakeLists.txt index be94191cc0..a834710c6c 100644 --- a/plugins/modelinspector/CMakeLists.txt +++ b/plugins/modelinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/modelinspector/modelcellmodel.cpp b/plugins/modelinspector/modelcellmodel.cpp index 25148bbb4c..f6de703791 100644 --- a/plugins/modelinspector/modelcellmodel.cpp +++ b/plugins/modelinspector/modelcellmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelcellmodel.h" diff --git a/plugins/modelinspector/modelcellmodel.h b/plugins/modelinspector/modelcellmodel.h index 4fe65edec3..cc560c3e2d 100644 --- a/plugins/modelinspector/modelcellmodel.h +++ b/plugins/modelinspector/modelcellmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELINSPECTOR_MODELCELLMODEL_H diff --git a/plugins/modelinspector/modelcontentdelegate.cpp b/plugins/modelinspector/modelcontentdelegate.cpp index e4061e92fe..d16cc83d3c 100644 --- a/plugins/modelinspector/modelcontentdelegate.cpp +++ b/plugins/modelinspector/modelcontentdelegate.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelcontentdelegate.h" diff --git a/plugins/modelinspector/modelcontentdelegate.h b/plugins/modelinspector/modelcontentdelegate.h index eeb19ffadc..f2d3f68daa 100644 --- a/plugins/modelinspector/modelcontentdelegate.h +++ b/plugins/modelinspector/modelcontentdelegate.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELCONTENTDELEGATE_H diff --git a/plugins/modelinspector/modelcontentproxymodel.cpp b/plugins/modelinspector/modelcontentproxymodel.cpp index 76645dbefb..cae9870201 100644 --- a/plugins/modelinspector/modelcontentproxymodel.cpp +++ b/plugins/modelinspector/modelcontentproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelcontentproxymodel.h" diff --git a/plugins/modelinspector/modelcontentproxymodel.h b/plugins/modelinspector/modelcontentproxymodel.h index e5f8426183..efc9f11995 100644 --- a/plugins/modelinspector/modelcontentproxymodel.h +++ b/plugins/modelinspector/modelcontentproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELINSPECTOR_MODELCONTENTPROXYMODEL_H diff --git a/plugins/modelinspector/modelinspector.cpp b/plugins/modelinspector/modelinspector.cpp index 7aeb7b6c3b..6c0bed0402 100644 --- a/plugins/modelinspector/modelinspector.cpp +++ b/plugins/modelinspector/modelinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelinspector.h" @@ -23,8 +20,7 @@ #include #include - -#include <3rdparty/kde/krecursivefilterproxymodel.h> +#include #include #include @@ -44,7 +40,7 @@ ModelInspector::ModelInspector(Probe *probe, QObject *parent) connect(probe, &Probe::objectCreated, modelModelSource, &ModelModel::objectAdded); connect(probe, &Probe::objectDestroyed, modelModelSource, &ModelModel::objectRemoved); - auto modelModelProxy = new ServerProxyModel(this); + auto modelModelProxy = new ServerProxyModel(this); modelModelProxy->setSourceModel(modelModelSource); m_modelModel = modelModelProxy; probe->registerModel(QStringLiteral("com.kdab.GammaRay.ModelModel"), m_modelModel); diff --git a/plugins/modelinspector/modelinspector.h b/plugins/modelinspector/modelinspector.h index 412448d662..0b423a6515 100644 --- a/plugins/modelinspector/modelinspector.h +++ b/plugins/modelinspector/modelinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELINSPECTOR_MODELINSPECTOR_H diff --git a/plugins/modelinspector/modelinspectorclient.cpp b/plugins/modelinspector/modelinspectorclient.cpp index 758792f3e4..10e9080e32 100644 --- a/plugins/modelinspector/modelinspectorclient.cpp +++ b/plugins/modelinspector/modelinspectorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelinspectorclient.h" diff --git a/plugins/modelinspector/modelinspectorclient.h b/plugins/modelinspector/modelinspectorclient.h index 098e4b9cdc..5da34b20f9 100644 --- a/plugins/modelinspector/modelinspectorclient.h +++ b/plugins/modelinspector/modelinspectorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELINSPECTORCLIENT_H diff --git a/plugins/modelinspector/modelinspectorinterface.cpp b/plugins/modelinspector/modelinspectorinterface.cpp index 1897826781..f351a0d675 100644 --- a/plugins/modelinspector/modelinspectorinterface.cpp +++ b/plugins/modelinspector/modelinspectorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelinspectorinterface.h" diff --git a/plugins/modelinspector/modelinspectorinterface.h b/plugins/modelinspector/modelinspectorinterface.h index 5f241c9f96..6b73352428 100644 --- a/plugins/modelinspector/modelinspectorinterface.h +++ b/plugins/modelinspector/modelinspectorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELINSPECTORINTERFACE_H diff --git a/plugins/modelinspector/modelinspectorwidget.cpp b/plugins/modelinspector/modelinspectorwidget.cpp index b0c4321b40..3692ac6f30 100644 --- a/plugins/modelinspector/modelinspectorwidget.cpp +++ b/plugins/modelinspector/modelinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelinspectorwidget.h" diff --git a/plugins/modelinspector/modelinspectorwidget.h b/plugins/modelinspector/modelinspectorwidget.h index bdb1a5ced3..9582e54ef8 100644 --- a/plugins/modelinspector/modelinspectorwidget.h +++ b/plugins/modelinspector/modelinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELINSPECTOR_MODELINSPECTORWIDGET_H diff --git a/plugins/modelinspector/modelmodel.cpp b/plugins/modelinspector/modelmodel.cpp index 857acf4216..55fa7647a3 100644 --- a/plugins/modelinspector/modelmodel.cpp +++ b/plugins/modelinspector/modelmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelmodel.h" diff --git a/plugins/modelinspector/modelmodel.h b/plugins/modelinspector/modelmodel.h index f2b4e1c3bc..ebff5135f7 100644 --- a/plugins/modelinspector/modelmodel.h +++ b/plugins/modelinspector/modelmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELINSPECTOR_MODELMODEL_H diff --git a/plugins/modelinspector/selectionmodelmodel.cpp b/plugins/modelinspector/selectionmodelmodel.cpp index de53bd5722..88da59c745 100644 --- a/plugins/modelinspector/selectionmodelmodel.cpp +++ b/plugins/modelinspector/selectionmodelmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "selectionmodelmodel.h" diff --git a/plugins/modelinspector/selectionmodelmodel.h b/plugins/modelinspector/selectionmodelmodel.h index e9a3e6daa3..850795f545 100644 --- a/plugins/modelinspector/selectionmodelmodel.h +++ b/plugins/modelinspector/selectionmodelmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SELECTIONMODELMODEL_H diff --git a/plugins/network/CMakeLists.txt b/plugins/network/CMakeLists.txt index a7bf6392d7..30508865d5 100644 --- a/plugins/network/CMakeLists.txt +++ b/plugins/network/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/network/clientnetworkconfigurationmodel.cpp b/plugins/network/clientnetworkconfigurationmodel.cpp index 67a5af07fd..cda55e7fca 100644 --- a/plugins/network/clientnetworkconfigurationmodel.cpp +++ b/plugins/network/clientnetworkconfigurationmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientnetworkconfigurationmodel.h" diff --git a/plugins/network/clientnetworkconfigurationmodel.h b/plugins/network/clientnetworkconfigurationmodel.h index f3810439aa..7c05456392 100644 --- a/plugins/network/clientnetworkconfigurationmodel.h +++ b/plugins/network/clientnetworkconfigurationmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTNETWORKCONFIGURATIONMODEL_H diff --git a/plugins/network/clientnetworkreplymodel.cpp b/plugins/network/clientnetworkreplymodel.cpp index 3dad5e60dd..92e99865d2 100644 --- a/plugins/network/clientnetworkreplymodel.cpp +++ b/plugins/network/clientnetworkreplymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientnetworkreplymodel.h" diff --git a/plugins/network/clientnetworkreplymodel.h b/plugins/network/clientnetworkreplymodel.h index 3b027cbc8c..8dbe86d109 100644 --- a/plugins/network/clientnetworkreplymodel.h +++ b/plugins/network/clientnetworkreplymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTNETWORKREPLYMODEL_H diff --git a/plugins/network/cookies/cookieextension.cpp b/plugins/network/cookies/cookieextension.cpp index c6f12c09c5..41c670c1c7 100644 --- a/plugins/network/cookies/cookieextension.cpp +++ b/plugins/network/cookies/cookieextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "cookieextension.h" diff --git a/plugins/network/cookies/cookieextension.h b/plugins/network/cookies/cookieextension.h index 6aef4e03f2..d151e37614 100644 --- a/plugins/network/cookies/cookieextension.h +++ b/plugins/network/cookies/cookieextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_COOKIEEXTENSION_H diff --git a/plugins/network/cookies/cookiejarmodel.cpp b/plugins/network/cookies/cookiejarmodel.cpp index dd4e271ab8..c03ff1f960 100644 --- a/plugins/network/cookies/cookiejarmodel.cpp +++ b/plugins/network/cookies/cookiejarmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "cookiejarmodel.h" diff --git a/plugins/network/cookies/cookiejarmodel.h b/plugins/network/cookies/cookiejarmodel.h index 451499eeec..d219aac0b1 100644 --- a/plugins/network/cookies/cookiejarmodel.h +++ b/plugins/network/cookies/cookiejarmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_COOKIEJARMODEL_H diff --git a/plugins/network/cookies/cookietab.cpp b/plugins/network/cookies/cookietab.cpp index da671ad3a4..dc6e6a0c02 100644 --- a/plugins/network/cookies/cookietab.cpp +++ b/plugins/network/cookies/cookietab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "cookietab.h" diff --git a/plugins/network/cookies/cookietab.h b/plugins/network/cookies/cookietab.h index de9e1d99ba..60f7d495b1 100644 --- a/plugins/network/cookies/cookietab.h +++ b/plugins/network/cookies/cookietab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_COOKIETAB_H diff --git a/plugins/network/networkconfigurationmodel.cpp b/plugins/network/networkconfigurationmodel.cpp index b5cfce8c20..ba6521dfbb 100644 --- a/plugins/network/networkconfigurationmodel.cpp +++ b/plugins/network/networkconfigurationmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkconfigurationmodel.h" diff --git a/plugins/network/networkconfigurationmodel.h b/plugins/network/networkconfigurationmodel.h index 0027711fd2..dba37fafb2 100644 --- a/plugins/network/networkconfigurationmodel.h +++ b/plugins/network/networkconfigurationmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKCONFIGURATIONMODEL_H diff --git a/plugins/network/networkconfigurationmodelroles.h b/plugins/network/networkconfigurationmodelroles.h index b892e08102..479f4f6fbf 100644 --- a/plugins/network/networkconfigurationmodelroles.h +++ b/plugins/network/networkconfigurationmodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKCONFIGURATIONMODELROLES_H diff --git a/plugins/network/networkconfigurationwidget.cpp b/plugins/network/networkconfigurationwidget.cpp index 6bd1534b70..1efd73db84 100644 --- a/plugins/network/networkconfigurationwidget.cpp +++ b/plugins/network/networkconfigurationwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkconfigurationwidget.h" diff --git a/plugins/network/networkconfigurationwidget.h b/plugins/network/networkconfigurationwidget.h index c7875bf0a7..e615bcb788 100644 --- a/plugins/network/networkconfigurationwidget.h +++ b/plugins/network/networkconfigurationwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKCONFIGURATIONWIDGET_H diff --git a/plugins/network/networkinterfacemodel.cpp b/plugins/network/networkinterfacemodel.cpp index a582b937af..d2d9f712f4 100644 --- a/plugins/network/networkinterfacemodel.cpp +++ b/plugins/network/networkinterfacemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkinterfacemodel.h" diff --git a/plugins/network/networkinterfacemodel.h b/plugins/network/networkinterfacemodel.h index d08a4c3e9c..312f5e3cf6 100644 --- a/plugins/network/networkinterfacemodel.h +++ b/plugins/network/networkinterfacemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKINTERFACEMODEL_H diff --git a/plugins/network/networkinterfacewidget.cpp b/plugins/network/networkinterfacewidget.cpp index 697f470297..1ad9f94794 100644 --- a/plugins/network/networkinterfacewidget.cpp +++ b/plugins/network/networkinterfacewidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkinterfacewidget.h" diff --git a/plugins/network/networkinterfacewidget.h b/plugins/network/networkinterfacewidget.h index 247ac85c8c..96c4850610 100644 --- a/plugins/network/networkinterfacewidget.h +++ b/plugins/network/networkinterfacewidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKINTERFACEWIDGET_H diff --git a/plugins/network/networkreplymodel.cpp b/plugins/network/networkreplymodel.cpp index 19159747a4..52f904bb36 100644 --- a/plugins/network/networkreplymodel.cpp +++ b/plugins/network/networkreplymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkreplymodel.h" diff --git a/plugins/network/networkreplymodel.h b/plugins/network/networkreplymodel.h index d07f693090..e0002442a9 100644 --- a/plugins/network/networkreplymodel.h +++ b/plugins/network/networkreplymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKREPLYMODEL_H diff --git a/plugins/network/networkreplymodeldefs.h b/plugins/network/networkreplymodeldefs.h index 68c678c5c7..7734082be9 100644 --- a/plugins/network/networkreplymodeldefs.h +++ b/plugins/network/networkreplymodeldefs.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKREPLYMODELDEFS_H diff --git a/plugins/network/networkreplywidget.cpp b/plugins/network/networkreplywidget.cpp index 3ec17c9950..4c1f2833ad 100644 --- a/plugins/network/networkreplywidget.cpp +++ b/plugins/network/networkreplywidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkreplywidget.h" diff --git a/plugins/network/networkreplywidget.h b/plugins/network/networkreplywidget.h index 03fd672e3f..9766f8a18f 100644 --- a/plugins/network/networkreplywidget.h +++ b/plugins/network/networkreplywidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKREPLYWIDGET_H diff --git a/plugins/network/networksupport.cpp b/plugins/network/networksupport.cpp index 07951243eb..6ab51a0214 100644 --- a/plugins/network/networksupport.cpp +++ b/plugins/network/networksupport.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networksupport.h" diff --git a/plugins/network/networksupport.h b/plugins/network/networksupport.h index b3be8e74d5..0f89b0c0e5 100644 --- a/plugins/network/networksupport.h +++ b/plugins/network/networksupport.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKSUPPORT_H diff --git a/plugins/network/networksupportclient.cpp b/plugins/network/networksupportclient.cpp index 7b2b41f836..0a68e38bd5 100644 --- a/plugins/network/networksupportclient.cpp +++ b/plugins/network/networksupportclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Shantanu Tushar - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networksupportclient.h" diff --git a/plugins/network/networksupportclient.h b/plugins/network/networksupportclient.h index d276067776..d8d817cce8 100644 --- a/plugins/network/networksupportclient.h +++ b/plugins/network/networksupportclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Shantanu Tushar - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKSUPPORTCLIENT_H diff --git a/plugins/network/networksupportinterface.cpp b/plugins/network/networksupportinterface.cpp index 7472695ae6..501e79aa47 100644 --- a/plugins/network/networksupportinterface.cpp +++ b/plugins/network/networksupportinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Shantanu Tushar - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networksupportinterface.h" diff --git a/plugins/network/networksupportinterface.h b/plugins/network/networksupportinterface.h index 3760b8f52e..38011bacf0 100644 --- a/plugins/network/networksupportinterface.h +++ b/plugins/network/networksupportinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Shantanu Tushar - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKSUPPORTINTERFACE_H diff --git a/plugins/network/networkwidget.cpp b/plugins/network/networkwidget.cpp index cf92078430..92439b9dcc 100644 --- a/plugins/network/networkwidget.cpp +++ b/plugins/network/networkwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "networkwidget.h" diff --git a/plugins/network/networkwidget.h b/plugins/network/networkwidget.h index 97ac6e2405..efb87d444b 100644 --- a/plugins/network/networkwidget.h +++ b/plugins/network/networkwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_NETWORKWIDGET_H diff --git a/plugins/openglsupport/CMakeLists.txt b/plugins/openglsupport/CMakeLists.txt index 6387b893fe..e5614be632 100644 --- a/plugins/openglsupport/CMakeLists.txt +++ b/plugins/openglsupport/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2021-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/openglsupport/openglsupport.cpp b/plugins/openglsupport/openglsupport.cpp index b63f63f970..7508cddda3 100644 --- a/plugins/openglsupport/openglsupport.cpp +++ b/plugins/openglsupport/openglsupport.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "openglsupport.h" diff --git a/plugins/openglsupport/openglsupport.h b/plugins/openglsupport/openglsupport.h index 1e6080e415..2a18d1dfc5 100644 --- a/plugins/openglsupport/openglsupport.h +++ b/plugins/openglsupport/openglsupport.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OPENGLSUPPORT_H diff --git a/plugins/positioning/CMakeLists.txt b/plugins/positioning/CMakeLists.txt index 73f9b57a9b..81c8a7949a 100644 --- a/plugins/positioning/CMakeLists.txt +++ b/plugins/positioning/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/positioning/geopositioninfosource.cpp b/plugins/positioning/geopositioninfosource.cpp index 0fdeda66bc..f42fa53e48 100644 --- a/plugins/positioning/geopositioninfosource.cpp +++ b/plugins/positioning/geopositioninfosource.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "geopositioninfosource.h" diff --git a/plugins/positioning/geopositioninfosource.h b/plugins/positioning/geopositioninfosource.h index 5bf9822589..36e83932b6 100644 --- a/plugins/positioning/geopositioninfosource.h +++ b/plugins/positioning/geopositioninfosource.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_GEOPOSITIONINFOSOURCE_H diff --git a/plugins/positioning/geopositioninfosourcefactory.cpp b/plugins/positioning/geopositioninfosourcefactory.cpp index c7e841a8a5..9c6e0a25f3 100644 --- a/plugins/positioning/geopositioninfosourcefactory.cpp +++ b/plugins/positioning/geopositioninfosourcefactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "geopositioninfosourcefactory.h" diff --git a/plugins/positioning/geopositioninfosourcefactory.h b/plugins/positioning/geopositioninfosourcefactory.h index d62fa8e37b..9192d74e17 100644 --- a/plugins/positioning/geopositioninfosourcefactory.h +++ b/plugins/positioning/geopositioninfosourcefactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_GEOPOSITIONINFOSOURCEFACTORY_H diff --git a/plugins/positioning/mapcontroller.cpp b/plugins/positioning/mapcontroller.cpp index ebfadfbf72..f97a97b420 100644 --- a/plugins/positioning/mapcontroller.cpp +++ b/plugins/positioning/mapcontroller.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "mapcontroller.h" diff --git a/plugins/positioning/mapcontroller.h b/plugins/positioning/mapcontroller.h index 47277192e0..9d4a2c2226 100644 --- a/plugins/positioning/mapcontroller.h +++ b/plugins/positioning/mapcontroller.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MAPCONTROLLER_H diff --git a/plugins/positioning/mapview.qml b/plugins/positioning/mapview.qml index 63ff0123de..5bbb33b189 100644 --- a/plugins/positioning/mapview.qml +++ b/plugins/positioning/mapview.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtPositioning 5.3 diff --git a/plugins/positioning/positioninfopropertyadaptor.cpp b/plugins/positioning/positioninfopropertyadaptor.cpp index 9deea0d921..cd2b48a5b6 100644 --- a/plugins/positioning/positioninfopropertyadaptor.cpp +++ b/plugins/positioning/positioninfopropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "positioninfopropertyadaptor.h" diff --git a/plugins/positioning/positioninfopropertyadaptor.h b/plugins/positioning/positioninfopropertyadaptor.h index 4ef3b7745f..31c5e1aa6c 100644 --- a/plugins/positioning/positioninfopropertyadaptor.h +++ b/plugins/positioning/positioninfopropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_POSITIONINFOPROPERTYADAPTOR_H diff --git a/plugins/positioning/positioning.cpp b/plugins/positioning/positioning.cpp index 276595855f..9835fe911b 100644 --- a/plugins/positioning/positioning.cpp +++ b/plugins/positioning/positioning.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "positioning.h" diff --git a/plugins/positioning/positioning.h b/plugins/positioning/positioning.h index 663b77eb72..5cd075ae0c 100644 --- a/plugins/positioning/positioning.h +++ b/plugins/positioning/positioning.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_POSITIONING_H diff --git a/plugins/positioning/positioningclient.cpp b/plugins/positioning/positioningclient.cpp index 8514e4b5ef..5de679f7e5 100644 --- a/plugins/positioning/positioningclient.cpp +++ b/plugins/positioning/positioningclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "positioningclient.h" diff --git a/plugins/positioning/positioningclient.h b/plugins/positioning/positioningclient.h index fde1e19567..04d59e4064 100644 --- a/plugins/positioning/positioningclient.h +++ b/plugins/positioning/positioningclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_POSITIONINGCLIENT_H diff --git a/plugins/positioning/positioninginterface.cpp b/plugins/positioning/positioninginterface.cpp index 03bf11af08..31bdcf3f17 100644 --- a/plugins/positioning/positioninginterface.cpp +++ b/plugins/positioning/positioninginterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "positioninginterface.h" diff --git a/plugins/positioning/positioninginterface.h b/plugins/positioning/positioninginterface.h index a4a7d2501c..f195860c7b 100644 --- a/plugins/positioning/positioninginterface.h +++ b/plugins/positioning/positioninginterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_POSITIONINGINTERFACE_H diff --git a/plugins/positioning/positioningwidget.cpp b/plugins/positioning/positioningwidget.cpp index c47a74f5f8..f921e7c72c 100644 --- a/plugins/positioning/positioningwidget.cpp +++ b/plugins/positioning/positioningwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "positioningwidget.h" diff --git a/plugins/positioning/positioningwidget.h b/plugins/positioning/positioningwidget.h index 3cc95b8e39..432c012e53 100644 --- a/plugins/positioning/positioningwidget.h +++ b/plugins/positioning/positioningwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_POSITIONINGWIDGET_H diff --git a/plugins/qmlsupport/CMakeLists.txt b/plugins/qmlsupport/CMakeLists.txt index db6fc016f3..1a908fc9cf 100644 --- a/plugins/qmlsupport/CMakeLists.txt +++ b/plugins/qmlsupport/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/qmlsupport/qjsvaluepropertyadaptor.cpp b/plugins/qmlsupport/qjsvaluepropertyadaptor.cpp index 8682ecf957..9123d2f082 100644 --- a/plugins/qmlsupport/qjsvaluepropertyadaptor.cpp +++ b/plugins/qmlsupport/qjsvaluepropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qjsvaluepropertyadaptor.h" diff --git a/plugins/qmlsupport/qjsvaluepropertyadaptor.h b/plugins/qmlsupport/qjsvaluepropertyadaptor.h index 1b2ff1e363..fb7ea6a6b7 100644 --- a/plugins/qmlsupport/qjsvaluepropertyadaptor.h +++ b/plugins/qmlsupport/qjsvaluepropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef QJSVALUEPROPERTYADAPTOR_H diff --git a/plugins/qmlsupport/qmlattachedpropertyadaptor.cpp b/plugins/qmlsupport/qmlattachedpropertyadaptor.cpp index 9520ccccff..66a8e8c0aa 100644 --- a/plugins/qmlsupport/qmlattachedpropertyadaptor.cpp +++ b/plugins/qmlsupport/qmlattachedpropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmlattachedpropertyadaptor.h" diff --git a/plugins/qmlsupport/qmlattachedpropertyadaptor.h b/plugins/qmlsupport/qmlattachedpropertyadaptor.h index f28615f5e7..ef2dd9e9f9 100644 --- a/plugins/qmlsupport/qmlattachedpropertyadaptor.h +++ b/plugins/qmlsupport/qmlattachedpropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLATTACHEDPROPERTYADAPTOR_H diff --git a/plugins/qmlsupport/qmlbindingprovider.cpp b/plugins/qmlsupport/qmlbindingprovider.cpp index f027abd9e0..5edd2f24af 100644 --- a/plugins/qmlsupport/qmlbindingprovider.cpp +++ b/plugins/qmlsupport/qmlbindingprovider.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/plugins/qmlsupport/qmlbindingprovider.h b/plugins/qmlsupport/qmlbindingprovider.h index 067bc2ab8e..10cbb844e1 100644 --- a/plugins/qmlsupport/qmlbindingprovider.h +++ b/plugins/qmlsupport/qmlbindingprovider.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLBINDINGPROVIDER_H diff --git a/plugins/qmlsupport/qmlcontextextension.cpp b/plugins/qmlsupport/qmlcontextextension.cpp index ae357bd467..1f5114e1f5 100644 --- a/plugins/qmlsupport/qmlcontextextension.cpp +++ b/plugins/qmlsupport/qmlcontextextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmlcontextextension.h" diff --git a/plugins/qmlsupport/qmlcontextextension.h b/plugins/qmlsupport/qmlcontextextension.h index 6cc01a3186..bbda2f28b8 100644 --- a/plugins/qmlsupport/qmlcontextextension.h +++ b/plugins/qmlsupport/qmlcontextextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLCONTEXTEXTENSION_H diff --git a/plugins/qmlsupport/qmlcontextmodel.cpp b/plugins/qmlsupport/qmlcontextmodel.cpp index 7425a6c498..a8a42f3aa4 100644 --- a/plugins/qmlsupport/qmlcontextmodel.cpp +++ b/plugins/qmlsupport/qmlcontextmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmlcontextmodel.h" diff --git a/plugins/qmlsupport/qmlcontextmodel.h b/plugins/qmlsupport/qmlcontextmodel.h index f9368d7b69..5d028afaca 100644 --- a/plugins/qmlsupport/qmlcontextmodel.h +++ b/plugins/qmlsupport/qmlcontextmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLCONTEXTMODEL_H diff --git a/plugins/qmlsupport/qmlcontextpropertyadaptor.cpp b/plugins/qmlsupport/qmlcontextpropertyadaptor.cpp index b2e8bab398..6bf859a70d 100644 --- a/plugins/qmlsupport/qmlcontextpropertyadaptor.cpp +++ b/plugins/qmlsupport/qmlcontextpropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmlcontextpropertyadaptor.h" diff --git a/plugins/qmlsupport/qmlcontextpropertyadaptor.h b/plugins/qmlsupport/qmlcontextpropertyadaptor.h index 4176dfd3fa..8d3bbe2eb8 100644 --- a/plugins/qmlsupport/qmlcontextpropertyadaptor.h +++ b/plugins/qmlsupport/qmlcontextpropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLCONTEXTPROPERTYADAPTOR_H diff --git a/plugins/qmlsupport/qmlcontexttab.cpp b/plugins/qmlsupport/qmlcontexttab.cpp index 503056d1a7..6000f73680 100644 --- a/plugins/qmlsupport/qmlcontexttab.cpp +++ b/plugins/qmlsupport/qmlcontexttab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmlcontexttab.h" diff --git a/plugins/qmlsupport/qmlcontexttab.h b/plugins/qmlsupport/qmlcontexttab.h index 00fbf35699..48e37444f4 100644 --- a/plugins/qmlsupport/qmlcontexttab.h +++ b/plugins/qmlsupport/qmlcontexttab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLCONTEXTTAB_H diff --git a/plugins/qmlsupport/qmllistpropertyadaptor.cpp b/plugins/qmlsupport/qmllistpropertyadaptor.cpp index 6a27feeca6..58ec96b080 100644 --- a/plugins/qmlsupport/qmllistpropertyadaptor.cpp +++ b/plugins/qmlsupport/qmllistpropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmllistpropertyadaptor.h" diff --git a/plugins/qmlsupport/qmllistpropertyadaptor.h b/plugins/qmlsupport/qmllistpropertyadaptor.h index ed510b9942..425c3f818d 100644 --- a/plugins/qmlsupport/qmllistpropertyadaptor.h +++ b/plugins/qmlsupport/qmllistpropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLLISTPROPERTYADAPTOR_H diff --git a/plugins/qmlsupport/qmlsupport.cpp b/plugins/qmlsupport/qmlsupport.cpp index 80f234869d..6d47d829d6 100644 --- a/plugins/qmlsupport/qmlsupport.cpp +++ b/plugins/qmlsupport/qmlsupport.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmlsupport.h" diff --git a/plugins/qmlsupport/qmlsupport.h b/plugins/qmlsupport/qmlsupport.h index 808c6c192b..9b69bcd181 100644 --- a/plugins/qmlsupport/qmlsupport.h +++ b/plugins/qmlsupport/qmlsupport.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLSUPPORT_QMLSUPPORT_H diff --git a/plugins/qmlsupport/qmlsupportuifactory.cpp b/plugins/qmlsupport/qmlsupportuifactory.cpp index fdd7f20afc..0bdc043fb3 100644 --- a/plugins/qmlsupport/qmlsupportuifactory.cpp +++ b/plugins/qmlsupport/qmlsupportuifactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmlsupportuifactory.h" diff --git a/plugins/qmlsupport/qmlsupportuifactory.h b/plugins/qmlsupport/qmlsupportuifactory.h index 53a0c92f4b..174399e8ad 100644 --- a/plugins/qmlsupport/qmlsupportuifactory.h +++ b/plugins/qmlsupport/qmlsupportuifactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLSUPPORTUIFACTORY_H diff --git a/plugins/qmlsupport/qmltypeextension.cpp b/plugins/qmlsupport/qmltypeextension.cpp index 4ab76ed787..4d55628258 100644 --- a/plugins/qmlsupport/qmltypeextension.cpp +++ b/plugins/qmlsupport/qmltypeextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmltypeextension.h" diff --git a/plugins/qmlsupport/qmltypeextension.h b/plugins/qmlsupport/qmltypeextension.h index 1a8843e767..2245c87c6b 100644 --- a/plugins/qmlsupport/qmltypeextension.h +++ b/plugins/qmlsupport/qmltypeextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLTYPEEXTENSION_H diff --git a/plugins/qmlsupport/qmltypetab.cpp b/plugins/qmlsupport/qmltypetab.cpp index 39b881b07b..afe54dc05c 100644 --- a/plugins/qmlsupport/qmltypetab.cpp +++ b/plugins/qmlsupport/qmltypetab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qmltypetab.h" diff --git a/plugins/qmlsupport/qmltypetab.h b/plugins/qmlsupport/qmltypetab.h index dbcf9ac9b8..ba2b2e1529 100644 --- a/plugins/qmlsupport/qmltypetab.h +++ b/plugins/qmlsupport/qmltypetab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QMLTYPETAB_H diff --git a/plugins/qmlsupport/qmltypeutil.h b/plugins/qmlsupport/qmltypeutil.h index 7204639447..c33e85567e 100644 --- a/plugins/qmlsupport/qmltypeutil.h +++ b/plugins/qmlsupport/qmltypeutil.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef QMLTYPEUTIL_H diff --git a/plugins/qt3dinspector/3dinspector.cpp b/plugins/qt3dinspector/3dinspector.cpp index dcf1f409dc..4dbef55dad 100644 --- a/plugins/qt3dinspector/3dinspector.cpp +++ b/plugins/qt3dinspector/3dinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "3dinspector.h" @@ -30,8 +27,7 @@ #include #include - -#include <3rdparty/kde/krecursivefilterproxymodel.h> +#include #include #include @@ -101,7 +97,7 @@ Qt3DInspector::Qt3DInspector(Probe *probe, QObject *parent) connect(probe, &Probe::objectCreated, m_entityModel, &Qt3DEntityTreeModel::objectCreated); connect(probe, &Probe::objectDestroyed, m_entityModel, &Qt3DEntityTreeModel::objectDestroyed); connect(probe, &Probe::objectReparented, m_entityModel, &Qt3DEntityTreeModel::objectReparented); - auto entityProxy = new ServerProxyModel(this); + auto entityProxy = new ServerProxyModel(this); entityProxy->setSourceModel(m_entityModel); probe->registerModel(QStringLiteral("com.kdab.GammaRay.Qt3DInspector.sceneModel"), entityProxy); m_entitySelectionModel = ObjectBroker::selectionModel(entityProxy); @@ -111,7 +107,7 @@ Qt3DInspector::Qt3DInspector(Probe *probe, QObject *parent) connect(probe, &Probe::objectCreated, m_frameGraphModel, &FrameGraphModel::objectCreated); connect(probe, &Probe::objectDestroyed, m_frameGraphModel, &FrameGraphModel::objectDestroyed); connect(probe, &Probe::objectReparented, m_frameGraphModel, &FrameGraphModel::objectReparented); - auto frameGraphProxy = new ServerProxyModel(this); + auto frameGraphProxy = new ServerProxyModel(this); frameGraphProxy->setSourceModel(m_frameGraphModel); probe->registerModel(QStringLiteral( "com.kdab.GammaRay.Qt3DInspector.frameGraphModel"), diff --git a/plugins/qt3dinspector/3dinspector.h b/plugins/qt3dinspector/3dinspector.h index 58700e39b3..84dd602dc3 100644 --- a/plugins/qt3dinspector/3dinspector.h +++ b/plugins/qt3dinspector/3dinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_3DINSPECTOR_3DINSPECTOR_H diff --git a/plugins/qt3dinspector/CMakeLists.txt b/plugins/qt3dinspector/CMakeLists.txt index 47c0a4ea76..ab514d9f45 100644 --- a/plugins/qt3dinspector/CMakeLists.txt +++ b/plugins/qt3dinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # shared stuff diff --git a/plugins/qt3dinspector/framegraphmodel.cpp b/plugins/qt3dinspector/framegraphmodel.cpp index d62a445d39..90a0c97eb4 100644 --- a/plugins/qt3dinspector/framegraphmodel.cpp +++ b/plugins/qt3dinspector/framegraphmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "framegraphmodel.h" diff --git a/plugins/qt3dinspector/framegraphmodel.h b/plugins/qt3dinspector/framegraphmodel.h index 76f848bef5..84a8c3ccff 100644 --- a/plugins/qt3dinspector/framegraphmodel.h +++ b/plugins/qt3dinspector/framegraphmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FRAMEGRAPHMODEL_H diff --git a/plugins/qt3dinspector/geometryextension/attribute.cpp b/plugins/qt3dinspector/geometryextension/attribute.cpp index f5acb4dcc7..f5fa4046f2 100644 --- a/plugins/qt3dinspector/geometryextension/attribute.cpp +++ b/plugins/qt3dinspector/geometryextension/attribute.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // krazy:excludeall=typedefs since we need int8_t and friends in here diff --git a/plugins/qt3dinspector/geometryextension/attribute.h b/plugins/qt3dinspector/geometryextension/attribute.h index 1fd767ac0d..15ec60e01b 100644 --- a/plugins/qt3dinspector/geometryextension/attribute.h +++ b/plugins/qt3dinspector/geometryextension/attribute.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ATTRIBUTE_H diff --git a/plugins/qt3dinspector/geometryextension/boundingvolume.cpp b/plugins/qt3dinspector/geometryextension/boundingvolume.cpp index 8143e5c290..74e6b75c31 100644 --- a/plugins/qt3dinspector/geometryextension/boundingvolume.cpp +++ b/plugins/qt3dinspector/geometryextension/boundingvolume.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "boundingvolume.h" diff --git a/plugins/qt3dinspector/geometryextension/boundingvolume.h b/plugins/qt3dinspector/geometryextension/boundingvolume.h index 326c407e31..26fd479520 100644 --- a/plugins/qt3dinspector/geometryextension/boundingvolume.h +++ b/plugins/qt3dinspector/geometryextension/boundingvolume.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BOUNDINGVOLUME_H diff --git a/plugins/qt3dinspector/geometryextension/buffermodel.cpp b/plugins/qt3dinspector/geometryextension/buffermodel.cpp index 325cf8fd94..023c8b1e0f 100644 --- a/plugins/qt3dinspector/geometryextension/buffermodel.cpp +++ b/plugins/qt3dinspector/geometryextension/buffermodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "buffermodel.h" diff --git a/plugins/qt3dinspector/geometryextension/buffermodel.h b/plugins/qt3dinspector/geometryextension/buffermodel.h index 61a4fc0964..f6ef73db44 100644 --- a/plugins/qt3dinspector/geometryextension/buffermodel.h +++ b/plugins/qt3dinspector/geometryextension/buffermodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BUFFERMODEL_H diff --git a/plugins/qt3dinspector/geometryextension/cameracontroller.cpp b/plugins/qt3dinspector/geometryextension/cameracontroller.cpp index 405f9726e2..af6bffc41f 100644 --- a/plugins/qt3dinspector/geometryextension/cameracontroller.cpp +++ b/plugins/qt3dinspector/geometryextension/cameracontroller.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "cameracontroller.h" diff --git a/plugins/qt3dinspector/geometryextension/cameracontroller.h b/plugins/qt3dinspector/geometryextension/cameracontroller.h index 9aa7024e9b..c81446ce51 100644 --- a/plugins/qt3dinspector/geometryextension/cameracontroller.h +++ b/plugins/qt3dinspector/geometryextension/cameracontroller.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CAMERACONTROLLER_H diff --git a/plugins/qt3dinspector/geometryextension/es2/CMakeLists.txt b/plugins/qt3dinspector/geometryextension/es2/CMakeLists.txt index 73ddb40f15..a4068b4e25 100644 --- a/plugins/qt3dinspector/geometryextension/es2/CMakeLists.txt +++ b/plugins/qt3dinspector/geometryextension/es2/CMakeLists.txt @@ -2,10 +2,7 @@ # # SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # diff --git a/plugins/qt3dinspector/geometryextension/gl3/CMakeLists.txt b/plugins/qt3dinspector/geometryextension/gl3/CMakeLists.txt index 73ddb40f15..a4068b4e25 100644 --- a/plugins/qt3dinspector/geometryextension/gl3/CMakeLists.txt +++ b/plugins/qt3dinspector/geometryextension/gl3/CMakeLists.txt @@ -2,10 +2,7 @@ # # SPDX-FileCopyrightText: 2019-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.cpp b/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.cpp index f4a62d8628..6ed69a64c5 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.cpp +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dgeometryextension.h" diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.h b/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.h index a81c49f08a..cf2bb47d02 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.h +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometryextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DGEOMETRYEXTENSION_H diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.cpp b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.cpp index e8de18c997..69e4f8305f 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.cpp +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dgeometryextensionclient.h" diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.h b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.h index 3ab6edd997..9f899cc501 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.h +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensionclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DGEOMETRYEXTENSIONCLIENT_H diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.cpp b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.cpp index c77c7a5842..aa6dbdd1a8 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.cpp +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dgeometryextensioninterface.h" diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.h b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.h index 2ca80ae5f7..ec422f1f5f 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.h +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometryextensioninterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DGEOMETRYEXTENSIONINTERFACE_H diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.cpp b/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.cpp index 7aaf0c84ad..ceb3a9cb15 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.cpp +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dgeometrytab.h" diff --git a/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.h b/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.h index 144d01877a..8aae46167f 100644 --- a/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.h +++ b/plugins/qt3dinspector/geometryextension/qt3dgeometrytab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DGEOMETRYTAB_H diff --git a/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.cpp b/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.cpp index badf4abdf8..8f37ca09c9 100644 --- a/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.cpp +++ b/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dpaintedtextureanalyzerextension.h" diff --git a/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.h b/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.h index 18713648cf..a61220060a 100644 --- a/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.h +++ b/plugins/qt3dinspector/paintanalyzerextension/qt3dpaintedtextureanalyzerextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DPAINTEDTEXTUREANALYZEREXTENSION_H diff --git a/plugins/qt3dinspector/qt3dentitytreemodel.cpp b/plugins/qt3dinspector/qt3dentitytreemodel.cpp index 278dda14ea..e10305df22 100644 --- a/plugins/qt3dinspector/qt3dentitytreemodel.cpp +++ b/plugins/qt3dinspector/qt3dentitytreemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dentitytreemodel.h" diff --git a/plugins/qt3dinspector/qt3dentitytreemodel.h b/plugins/qt3dinspector/qt3dentitytreemodel.h index f342d235c7..d9304899ea 100644 --- a/plugins/qt3dinspector/qt3dentitytreemodel.h +++ b/plugins/qt3dinspector/qt3dentitytreemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DENTITYTREEMODEL_H diff --git a/plugins/qt3dinspector/qt3dinspectorclient.cpp b/plugins/qt3dinspector/qt3dinspectorclient.cpp index c74513f349..e5d5f9ad5d 100644 --- a/plugins/qt3dinspector/qt3dinspectorclient.cpp +++ b/plugins/qt3dinspector/qt3dinspectorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dinspectorclient.h" diff --git a/plugins/qt3dinspector/qt3dinspectorclient.h b/plugins/qt3dinspector/qt3dinspectorclient.h index 777e91955b..bec51921de 100644 --- a/plugins/qt3dinspector/qt3dinspectorclient.h +++ b/plugins/qt3dinspector/qt3dinspectorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DINSPECTORCLIENT_H diff --git a/plugins/qt3dinspector/qt3dinspectorinterface.cpp b/plugins/qt3dinspector/qt3dinspectorinterface.cpp index 8195f61674..858d78e885 100644 --- a/plugins/qt3dinspector/qt3dinspectorinterface.cpp +++ b/plugins/qt3dinspector/qt3dinspectorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dinspectorinterface.h" diff --git a/plugins/qt3dinspector/qt3dinspectorinterface.h b/plugins/qt3dinspector/qt3dinspectorinterface.h index bbb79d8cc1..ea66c8c11f 100644 --- a/plugins/qt3dinspector/qt3dinspectorinterface.h +++ b/plugins/qt3dinspector/qt3dinspectorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DINSPECTORINTERFACE_H diff --git a/plugins/qt3dinspector/qt3dinspectorwidget.cpp b/plugins/qt3dinspector/qt3dinspectorwidget.cpp index 466e211527..f941bdb4aa 100644 --- a/plugins/qt3dinspector/qt3dinspectorwidget.cpp +++ b/plugins/qt3dinspector/qt3dinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qt3dinspectorwidget.h" diff --git a/plugins/qt3dinspector/qt3dinspectorwidget.h b/plugins/qt3dinspector/qt3dinspectorwidget.h index f33faa0881..d36b5b0aee 100644 --- a/plugins/qt3dinspector/qt3dinspectorwidget.h +++ b/plugins/qt3dinspector/qt3dinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QT3DINSPECTOR_QT3DINSPECTORWIDGET_H diff --git a/plugins/qt3dinspector/treeexpander.cpp b/plugins/qt3dinspector/treeexpander.cpp index 0e5bd228f5..ab313ecfab 100644 --- a/plugins/qt3dinspector/treeexpander.cpp +++ b/plugins/qt3dinspector/treeexpander.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "treeexpander.h" diff --git a/plugins/qt3dinspector/treeexpander.h b/plugins/qt3dinspector/treeexpander.h index 4a2c12861c..786cdd99d8 100644 --- a/plugins/qt3dinspector/treeexpander.h +++ b/plugins/qt3dinspector/treeexpander.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TREEEXPANDER_H diff --git a/plugins/qtivi/CMakeLists.txt b/plugins/qtivi/CMakeLists.txt index f2c6e3c16a..fd97a11382 100644 --- a/plugins/qtivi/CMakeLists.txt +++ b/plugins/qtivi/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/qtivi/qtiviconstrainedvaluedelegate.cpp b/plugins/qtivi/qtiviconstrainedvaluedelegate.cpp index f17d9001ad..53c6adb712 100644 --- a/plugins/qtivi/qtiviconstrainedvaluedelegate.cpp +++ b/plugins/qtivi/qtiviconstrainedvaluedelegate.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qtiviconstrainedvaluedelegate.h" diff --git a/plugins/qtivi/qtiviconstrainedvaluedelegate.h b/plugins/qtivi/qtiviconstrainedvaluedelegate.h index dd438582c6..f81a807d8b 100644 --- a/plugins/qtivi/qtiviconstrainedvaluedelegate.h +++ b/plugins/qtivi/qtiviconstrainedvaluedelegate.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QTIVICONSTRAINEDVALUEDELEGATE_H diff --git a/plugins/qtivi/qtiviobjectmodel.cpp b/plugins/qtivi/qtiviobjectmodel.cpp index d290bac440..7637a638d2 100644 --- a/plugins/qtivi/qtiviobjectmodel.cpp +++ b/plugins/qtivi/qtiviobjectmodel.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qtiviobjectmodel.h" diff --git a/plugins/qtivi/qtiviobjectmodel.h b/plugins/qtivi/qtiviobjectmodel.h index ad8ac338ab..99c6dac6c6 100644 --- a/plugins/qtivi/qtiviobjectmodel.h +++ b/plugins/qtivi/qtiviobjectmodel.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QTIVI_QTIVIOBJECTMODEL_H diff --git a/plugins/qtivi/qtivipropertyclientmodel.cpp b/plugins/qtivi/qtivipropertyclientmodel.cpp index e77b902f1c..382624d0ba 100644 --- a/plugins/qtivi/qtivipropertyclientmodel.cpp +++ b/plugins/qtivi/qtivipropertyclientmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qtivipropertyclientmodel.h" diff --git a/plugins/qtivi/qtivipropertyclientmodel.h b/plugins/qtivi/qtivipropertyclientmodel.h index 0501ce5cc9..9511ad02b9 100644 --- a/plugins/qtivi/qtivipropertyclientmodel.h +++ b/plugins/qtivi/qtivipropertyclientmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QTIVI_PROPERTYCLIENTMODEL_H diff --git a/plugins/qtivi/qtivipropertymodel.cpp b/plugins/qtivi/qtivipropertymodel.cpp index 4088142ff3..c7e883e157 100644 --- a/plugins/qtivi/qtivipropertymodel.cpp +++ b/plugins/qtivi/qtivipropertymodel.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qtivipropertymodel.h" diff --git a/plugins/qtivi/qtivipropertymodel.h b/plugins/qtivi/qtivipropertymodel.h index f5e18bbdf2..bacab546e8 100644 --- a/plugins/qtivi/qtivipropertymodel.h +++ b/plugins/qtivi/qtivipropertymodel.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QTIVI_QTIVIPROPERTYMODEL_H diff --git a/plugins/qtivi/qtivipropertyoverrider.cpp b/plugins/qtivi/qtivipropertyoverrider.cpp index 75a97d5954..fd242ab25e 100644 --- a/plugins/qtivi/qtivipropertyoverrider.cpp +++ b/plugins/qtivi/qtivipropertyoverrider.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qtivipropertyoverrider.h" diff --git a/plugins/qtivi/qtivipropertyoverrider.h b/plugins/qtivi/qtivipropertyoverrider.h index bd4d4f1c8d..b99473101c 100644 --- a/plugins/qtivi/qtivipropertyoverrider.h +++ b/plugins/qtivi/qtivipropertyoverrider.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QTIVIPROPERTYOVERRIDER_H diff --git a/plugins/qtivi/qtivisupport.cpp b/plugins/qtivi/qtivisupport.cpp index 58aae5df5d..4e10baee65 100644 --- a/plugins/qtivi/qtivisupport.cpp +++ b/plugins/qtivi/qtivisupport.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qtivisupport.h" diff --git a/plugins/qtivi/qtivisupport.h b/plugins/qtivi/qtivisupport.h index 03383632b9..13d2c67b2f 100644 --- a/plugins/qtivi/qtivisupport.h +++ b/plugins/qtivi/qtivisupport.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QTIVISUPPORT_H diff --git a/plugins/qtivi/qtivisupportwidget.cpp b/plugins/qtivi/qtivisupportwidget.cpp index e1540f8346..e4518dfa39 100644 --- a/plugins/qtivi/qtivisupportwidget.cpp +++ b/plugins/qtivi/qtivisupportwidget.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qtivisupportwidget.h" diff --git a/plugins/qtivi/qtivisupportwidget.h b/plugins/qtivi/qtivisupportwidget.h index 002ddf2289..b04ff0d6d7 100644 --- a/plugins/qtivi/qtivisupportwidget.h +++ b/plugins/qtivi/qtivisupportwidget.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QTIVISUPPORTWIDGET_H diff --git a/plugins/quickinspector/CMakeLists.txt b/plugins/quickinspector/CMakeLists.txt index 9a99778e88..1858d6372f 100644 --- a/plugins/quickinspector/CMakeLists.txt +++ b/plugins/quickinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(TARGET Qt::Quick) # shared stuff diff --git a/plugins/quickinspector/geometryextension/sggeometryextension.cpp b/plugins/quickinspector/geometryextension/sggeometryextension.cpp index 99d4f1b846..d4cca20ec8 100644 --- a/plugins/quickinspector/geometryextension/sggeometryextension.cpp +++ b/plugins/quickinspector/geometryextension/sggeometryextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sggeometryextension.h" diff --git a/plugins/quickinspector/geometryextension/sggeometryextension.h b/plugins/quickinspector/geometryextension/sggeometryextension.h index 088a18cc0d..6e12a3d134 100644 --- a/plugins/quickinspector/geometryextension/sggeometryextension.h +++ b/plugins/quickinspector/geometryextension/sggeometryextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_SGGEOMETRYEXTENSION_H diff --git a/plugins/quickinspector/geometryextension/sggeometrymodel.cpp b/plugins/quickinspector/geometryextension/sggeometrymodel.cpp index de034b2d8c..46be0480fb 100644 --- a/plugins/quickinspector/geometryextension/sggeometrymodel.cpp +++ b/plugins/quickinspector/geometryextension/sggeometrymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sggeometrymodel.h" @@ -110,7 +107,7 @@ QVariant SGVertexModel::data(const QModelIndex &index, int role) const case GL_DOUBLE: return toStringList(index.internalPointer(), attrInfo->tupleSize).join(QStringLiteral(", ")); #endif -#ifndef QT_OPENGL_ES_2 +#if !QT_CONFIG(opengles2) case GL_2_BYTES: return "2Bytes"; case GL_3_BYTES: diff --git a/plugins/quickinspector/geometryextension/sggeometrymodel.h b/plugins/quickinspector/geometryextension/sggeometrymodel.h index 0c453c5300..d9e558bcb2 100644 --- a/plugins/quickinspector/geometryextension/sggeometrymodel.h +++ b/plugins/quickinspector/geometryextension/sggeometrymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_SGGEOMETRYMODEL_H diff --git a/plugins/quickinspector/geometryextension/sggeometrytab.cpp b/plugins/quickinspector/geometryextension/sggeometrytab.cpp index 9e94979ea7..fd42ff5cb6 100644 --- a/plugins/quickinspector/geometryextension/sggeometrytab.cpp +++ b/plugins/quickinspector/geometryextension/sggeometrytab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sggeometrytab.h" diff --git a/plugins/quickinspector/geometryextension/sggeometrytab.h b/plugins/quickinspector/geometryextension/sggeometrytab.h index 42056db206..226f7db921 100644 --- a/plugins/quickinspector/geometryextension/sggeometrytab.h +++ b/plugins/quickinspector/geometryextension/sggeometrytab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_SGGEOMETRYTAB_H diff --git a/plugins/quickinspector/geometryextension/sgwireframewidget.cpp b/plugins/quickinspector/geometryextension/sgwireframewidget.cpp index 2e6b2f4a12..a3f39f8747 100644 --- a/plugins/quickinspector/geometryextension/sgwireframewidget.cpp +++ b/plugins/quickinspector/geometryextension/sgwireframewidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sgwireframewidget.h" @@ -69,7 +66,7 @@ void SGWireframeWidget::paintEvent(QPaintEvent *) drawHighlightedFace(&painter, QVector() << index << m_adjacencyList[i - 1] << m_adjacencyList.first()); } -#ifndef QT_OPENGL_ES_2 +#if !QT_CONFIG(opengles2) else if ((m_drawingMode == GL_QUADS || m_drawingMode == GL_QUAD_STRIP) && i % 4 == 3) { drawHighlightedFace(&painter, QVector() << index << m_adjacencyList[i - 1] << m_adjacencyList[i - 2] << m_adjacencyList[i - 3]); @@ -91,7 +88,7 @@ void SGWireframeWidget::paintEvent(QPaintEvent *) || (m_drawingMode == GL_TRIANGLES && i % 3) || m_drawingMode == GL_TRIANGLE_STRIP || m_drawingMode == GL_TRIANGLE_FAN -#ifndef QT_OPENGL_ES_2 +#if !QT_CONFIG(opengles2) || (m_drawingMode == GL_QUADS && i % 4 != 0) || (m_drawingMode == GL_QUAD_STRIP && i % 2) || m_drawingMode == GL_POLYGON @@ -104,7 +101,7 @@ void SGWireframeWidget::paintEvent(QPaintEvent *) // Draw a connection to the second previous vertex if ((m_drawingMode == GL_TRIANGLE_STRIP || (m_drawingMode == GL_TRIANGLES && i % 3 == 2) -#ifndef QT_OPENGL_ES_2 +#if !QT_CONFIG(opengles2) || m_drawingMode == GL_QUAD_STRIP #endif ) @@ -113,7 +110,7 @@ void SGWireframeWidget::paintEvent(QPaintEvent *) } // draw a connection to the third previous vertex -#ifndef QT_OPENGL_ES_2 +#if !QT_CONFIG(opengles2) if (m_drawingMode == GL_QUADS && i % 4 == 3) { drawWire(&painter, index, m_adjacencyList[i - 3]); } @@ -122,7 +119,7 @@ void SGWireframeWidget::paintEvent(QPaintEvent *) // Draw a connection to the very first vertex if ((m_drawingMode == GL_LINE_LOOP && i == m_adjacencyList.size() - 1) -#ifndef QT_OPENGL_ES_2 +#if !QT_CONFIG(opengles2) || (m_drawingMode == GL_POLYGON && i == m_adjacencyList.size() - 1) #endif || m_drawingMode == GL_TRIANGLE_FAN) @@ -159,7 +156,7 @@ void SGWireframeWidget::paintEvent(QPaintEvent *) : m_drawingMode == GL_LINE_STRIP ? QStringLiteral("GL_LINE_STRIP") : m_drawingMode == GL_LINE_LOOP ? QStringLiteral("GL_LINE_LOOP") : -#ifndef QT_OPENGL_ES_2 +#if !QT_CONFIG(opengles2) m_drawingMode == GL_POLYGON ? QStringLiteral("GL_POLYGON") : m_drawingMode == GL_QUADS ? QStringLiteral("GL_QUADS") : m_drawingMode == GL_QUAD_STRIP ? QStringLiteral("GL_QUAD_STRIP") diff --git a/plugins/quickinspector/geometryextension/sgwireframewidget.h b/plugins/quickinspector/geometryextension/sgwireframewidget.h index 1d0113640b..e8198c2d50 100644 --- a/plugins/quickinspector/geometryextension/sgwireframewidget.h +++ b/plugins/quickinspector/geometryextension/sgwireframewidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_SGWIREFRAMEWIDGET_H diff --git a/plugins/quickinspector/gridsettingswidget.cpp b/plugins/quickinspector/gridsettingswidget.cpp index f994b9860a..71284a1e94 100644 --- a/plugins/quickinspector/gridsettingswidget.cpp +++ b/plugins/quickinspector/gridsettingswidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "gridsettingswidget.h" diff --git a/plugins/quickinspector/gridsettingswidget.h b/plugins/quickinspector/gridsettingswidget.h index e4195628ae..9288f04eb4 100644 --- a/plugins/quickinspector/gridsettingswidget.h +++ b/plugins/quickinspector/gridsettingswidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_GRIDSETTINGSWIDGET_H diff --git a/plugins/quickinspector/materialextension/materialextension.cpp b/plugins/quickinspector/materialextension/materialextension.cpp index 72dccf6ee8..e363f8b8a8 100644 --- a/plugins/quickinspector/materialextension/materialextension.cpp +++ b/plugins/quickinspector/materialextension/materialextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/plugins/quickinspector/materialextension/materialextension.h b/plugins/quickinspector/materialextension/materialextension.h index 7fd4fef1ea..4135380ff4 100644 --- a/plugins/quickinspector/materialextension/materialextension.h +++ b/plugins/quickinspector/materialextension/materialextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_MATERIALEXTENSION_H diff --git a/plugins/quickinspector/materialextension/materialextensionclient.cpp b/plugins/quickinspector/materialextension/materialextensionclient.cpp index 2a6ea467e6..887fe25105 100644 --- a/plugins/quickinspector/materialextension/materialextensionclient.cpp +++ b/plugins/quickinspector/materialextension/materialextensionclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "materialextensionclient.h" diff --git a/plugins/quickinspector/materialextension/materialextensionclient.h b/plugins/quickinspector/materialextension/materialextensionclient.h index eb7e2f077b..eb9fcfc8bc 100644 --- a/plugins/quickinspector/materialextension/materialextensionclient.h +++ b/plugins/quickinspector/materialextension/materialextensionclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_MATERIALEXTENSIONCLIENT_H diff --git a/plugins/quickinspector/materialextension/materialextensioninterface.cpp b/plugins/quickinspector/materialextension/materialextensioninterface.cpp index 82bc6f51c1..9c09c36029 100644 --- a/plugins/quickinspector/materialextension/materialextensioninterface.cpp +++ b/plugins/quickinspector/materialextension/materialextensioninterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "materialextensioninterface.h" diff --git a/plugins/quickinspector/materialextension/materialextensioninterface.h b/plugins/quickinspector/materialextension/materialextensioninterface.h index 44cfdca05f..442fc7384c 100644 --- a/plugins/quickinspector/materialextension/materialextensioninterface.h +++ b/plugins/quickinspector/materialextension/materialextensioninterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_MATERIALEXTENSIONINTERFACE_H diff --git a/plugins/quickinspector/materialextension/materialshadermodel.cpp b/plugins/quickinspector/materialextension/materialshadermodel.cpp index d2d0e02933..6bb667cd43 100644 --- a/plugins/quickinspector/materialextension/materialshadermodel.cpp +++ b/plugins/quickinspector/materialextension/materialshadermodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "materialshadermodel.h" diff --git a/plugins/quickinspector/materialextension/materialshadermodel.h b/plugins/quickinspector/materialextension/materialshadermodel.h index 281030d218..120ee158a6 100644 --- a/plugins/quickinspector/materialextension/materialshadermodel.h +++ b/plugins/quickinspector/materialextension/materialshadermodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MATERIALSHADERMODEL_H diff --git a/plugins/quickinspector/materialextension/materialtab.cpp b/plugins/quickinspector/materialextension/materialtab.cpp index 20a50b4f77..e1874d4271 100644 --- a/plugins/quickinspector/materialextension/materialtab.cpp +++ b/plugins/quickinspector/materialextension/materialtab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "materialtab.h" diff --git a/plugins/quickinspector/materialextension/materialtab.h b/plugins/quickinspector/materialextension/materialtab.h index 9a96f39e71..add314fcbf 100644 --- a/plugins/quickinspector/materialextension/materialtab.h +++ b/plugins/quickinspector/materialextension/materialtab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_MATERIALTAB_H diff --git a/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.cpp b/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.cpp index feb86e3b24..261aa683eb 100644 --- a/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.cpp +++ b/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qquickopenglshadereffectmaterialadaptor.h" diff --git a/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.h b/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.h index 19a6ed2e92..84d7fd16cf 100644 --- a/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.h +++ b/plugins/quickinspector/materialextension/qquickopenglshadereffectmaterialadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QQUICKOPENGLSHADEREFFECTMATERIALADAPTOR_H diff --git a/plugins/quickinspector/quickanchorspropertyadaptor.cpp b/plugins/quickinspector/quickanchorspropertyadaptor.cpp index 23bee244b2..f8d96e6fd5 100644 --- a/plugins/quickinspector/quickanchorspropertyadaptor.cpp +++ b/plugins/quickinspector/quickanchorspropertyadaptor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickanchorspropertyadaptor.h" diff --git a/plugins/quickinspector/quickanchorspropertyadaptor.h b/plugins/quickinspector/quickanchorspropertyadaptor.h index ea516327ec..fc6695bc07 100644 --- a/plugins/quickinspector/quickanchorspropertyadaptor.h +++ b/plugins/quickinspector/quickanchorspropertyadaptor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKANCHORSPROPERTYADAPTOR_H diff --git a/plugins/quickinspector/quickclientitemmodel.cpp b/plugins/quickinspector/quickclientitemmodel.cpp index 3e36932364..48d380ab60 100644 --- a/plugins/quickinspector/quickclientitemmodel.cpp +++ b/plugins/quickinspector/quickclientitemmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickclientitemmodel.h" diff --git a/plugins/quickinspector/quickclientitemmodel.h b/plugins/quickinspector/quickclientitemmodel.h index ace8c31988..e362b63a60 100644 --- a/plugins/quickinspector/quickclientitemmodel.h +++ b/plugins/quickinspector/quickclientitemmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKCLIENTITEMMODEL_H diff --git a/plugins/quickinspector/quickdecorationsdrawer.cpp b/plugins/quickinspector/quickdecorationsdrawer.cpp index 448b402d80..802209315d 100644 --- a/plugins/quickinspector/quickdecorationsdrawer.cpp +++ b/plugins/quickinspector/quickdecorationsdrawer.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickdecorationsdrawer.h" diff --git a/plugins/quickinspector/quickdecorationsdrawer.h b/plugins/quickinspector/quickdecorationsdrawer.h index 274d16276b..5404e10654 100644 --- a/plugins/quickinspector/quickdecorationsdrawer.h +++ b/plugins/quickinspector/quickdecorationsdrawer.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKDECORATIONSDRAWER_H diff --git a/plugins/quickinspector/quickimplicitbindingdependencyprovider.cpp b/plugins/quickinspector/quickimplicitbindingdependencyprovider.cpp index 8659061d59..12ccb8272b 100644 --- a/plugins/quickinspector/quickimplicitbindingdependencyprovider.cpp +++ b/plugins/quickinspector/quickimplicitbindingdependencyprovider.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own @@ -92,7 +89,7 @@ std::vector> QuickImplicitBindingDependencyProvider if (!object) return dependencies; - auto addDependency = [this, binding, object, &dependencies](const char *propName, QObject *depObj, const char *depName) { + auto addDependency = [binding, object, &dependencies](const char *propName, QObject *depObj, const char *depName) { if (depObj && binding->propertyIndex() == object->metaObject()->indexOfProperty(propName)) { dependencies.push_back(createBindingNode(depObj, depName, binding)); } diff --git a/plugins/quickinspector/quickimplicitbindingdependencyprovider.h b/plugins/quickinspector/quickimplicitbindingdependencyprovider.h index 566943c459..1cf53a7acf 100644 --- a/plugins/quickinspector/quickimplicitbindingdependencyprovider.h +++ b/plugins/quickinspector/quickimplicitbindingdependencyprovider.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKIMPLICITBINDINGDEPENDENCYPROVIDER_H diff --git a/plugins/quickinspector/quickinspector.cpp b/plugins/quickinspector/quickinspector.cpp index 95f2d73760..7f9d1961df 100644 --- a/plugins/quickinspector/quickinspector.cpp +++ b/plugins/quickinspector/quickinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickinspector.h" @@ -37,6 +34,7 @@ #include #include #include +#include #include #include @@ -55,8 +53,6 @@ #include #include -#include <3rdparty/kde/krecursivefilterproxymodel.h> - #include #include #include @@ -388,7 +384,7 @@ QuickInspector::QuickInspector(Probe *probe, QObject *parent) m_windowModel = proxy; probe->registerModel(QStringLiteral("com.kdab.GammaRay.QuickWindowModel"), m_windowModel); - auto filterProxy = new ServerProxyModel(this); + auto filterProxy = new ServerProxyModel(this); filterProxy->setSourceModel(m_itemModel); filterProxy->addRole(ObjectModel::ObjectIdRole); probe->registerModel(QStringLiteral("com.kdab.GammaRay.QuickItemModel"), filterProxy); @@ -408,7 +404,7 @@ QuickInspector::QuickInspector(Probe *probe, QObject *parent) connect(m_itemSelectionModel, &QItemSelectionModel::selectionChanged, this, &QuickInspector::itemSelectionChanged); - filterProxy = new ServerProxyModel(this); + filterProxy = new ServerProxyModel(this); filterProxy->setSourceModel(m_sgModel); probe->registerModel(QStringLiteral("com.kdab.GammaRay.QuickSceneGraphModel"), filterProxy); diff --git a/plugins/quickinspector/quickinspector.h b/plugins/quickinspector/quickinspector.h index 86adc35224..017dd39e56 100644 --- a/plugins/quickinspector/quickinspector.h +++ b/plugins/quickinspector/quickinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKINSPECTOR_H diff --git a/plugins/quickinspector/quickinspectorclient.cpp b/plugins/quickinspector/quickinspectorclient.cpp index e47b1e0aac..9495526aad 100644 --- a/plugins/quickinspector/quickinspectorclient.cpp +++ b/plugins/quickinspector/quickinspectorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickinspectorclient.h" diff --git a/plugins/quickinspector/quickinspectorclient.h b/plugins/quickinspector/quickinspectorclient.h index b66a0b4585..4f57918e75 100644 --- a/plugins/quickinspector/quickinspectorclient.h +++ b/plugins/quickinspector/quickinspectorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKINSPECTORCLIENT_H diff --git a/plugins/quickinspector/quickinspectorinterface.cpp b/plugins/quickinspector/quickinspectorinterface.cpp index 97ec281c2a..2379549cb0 100644 --- a/plugins/quickinspector/quickinspectorinterface.cpp +++ b/plugins/quickinspector/quickinspectorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickinspectorinterface.h" @@ -61,6 +58,7 @@ QuickInspectorInterface::QuickInspectorInterface(QObject *parent) { ObjectBroker::registerObject(this); StreamOperators::registerOperators(); + qRegisterMetaType("QFlags"); StreamOperators::registerOperators(); StreamOperators::registerOperators(); StreamOperators::registerOperators>(); diff --git a/plugins/quickinspector/quickinspectorinterface.h b/plugins/quickinspector/quickinspectorinterface.h index 0e1e98d776..c98af8438a 100644 --- a/plugins/quickinspector/quickinspectorinterface.h +++ b/plugins/quickinspector/quickinspectorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKINSPECTORINTERFACE_H @@ -89,7 +86,7 @@ public slots: virtual void setSlowMode(bool slow) = 0; signals: - void features(GammaRay::QuickInspectorInterface::Features features); + void features(QFlags features); void serverSideDecorationChanged(bool enabled); void overlaySettings(const GammaRay::QuickDecorationsSettings &settings); void slowModeChanged(bool slow); diff --git a/plugins/quickinspector/quickinspectorwidget.cpp b/plugins/quickinspector/quickinspectorwidget.cpp index d1902ddecc..a9b1bf1d0d 100644 --- a/plugins/quickinspector/quickinspectorwidget.cpp +++ b/plugins/quickinspector/quickinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickinspectorwidget.h" diff --git a/plugins/quickinspector/quickinspectorwidget.h b/plugins/quickinspector/quickinspectorwidget.h index eff184bb2c..30ab8ba701 100644 --- a/plugins/quickinspector/quickinspectorwidget.h +++ b/plugins/quickinspector/quickinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKINSPECTORWIDGET_H diff --git a/plugins/quickinspector/quickitemdelegate.cpp b/plugins/quickinspector/quickitemdelegate.cpp index 386684028b..6b1d5bb562 100644 --- a/plugins/quickinspector/quickitemdelegate.cpp +++ b/plugins/quickinspector/quickitemdelegate.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickitemdelegate.h" diff --git a/plugins/quickinspector/quickitemdelegate.h b/plugins/quickinspector/quickitemdelegate.h index 9818f86ede..9463ea7bd7 100644 --- a/plugins/quickinspector/quickitemdelegate.h +++ b/plugins/quickinspector/quickitemdelegate.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKITEMDELEGATE_H diff --git a/plugins/quickinspector/quickitemgeometry.cpp b/plugins/quickinspector/quickitemgeometry.cpp index ca14470eec..6717c4c050 100644 --- a/plugins/quickinspector/quickitemgeometry.cpp +++ b/plugins/quickinspector/quickitemgeometry.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickitemgeometry.h" diff --git a/plugins/quickinspector/quickitemgeometry.h b/plugins/quickinspector/quickitemgeometry.h index bc471134d1..d91433b5c8 100644 --- a/plugins/quickinspector/quickitemgeometry.h +++ b/plugins/quickinspector/quickitemgeometry.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKITEMGEOMETRY_H diff --git a/plugins/quickinspector/quickitemmodel.cpp b/plugins/quickinspector/quickitemmodel.cpp index fb3d1c645a..b46f7040c7 100644 --- a/plugins/quickinspector/quickitemmodel.cpp +++ b/plugins/quickinspector/quickitemmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickitemmodel.h" diff --git a/plugins/quickinspector/quickitemmodel.h b/plugins/quickinspector/quickitemmodel.h index 55e0be498d..2af59acd36 100644 --- a/plugins/quickinspector/quickitemmodel.h +++ b/plugins/quickinspector/quickitemmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKITEMMODEL_H diff --git a/plugins/quickinspector/quickitemmodelroles.h b/plugins/quickinspector/quickitemmodelroles.h index 6dae962076..f77a78145e 100644 --- a/plugins/quickinspector/quickitemmodelroles.h +++ b/plugins/quickinspector/quickitemmodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKITEMMODELROLES_H diff --git a/plugins/quickinspector/quickitemtreewatcher.cpp b/plugins/quickinspector/quickitemtreewatcher.cpp index 8ac8db9547..938e6aabd8 100644 --- a/plugins/quickinspector/quickitemtreewatcher.cpp +++ b/plugins/quickinspector/quickitemtreewatcher.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickitemtreewatcher.h" diff --git a/plugins/quickinspector/quickitemtreewatcher.h b/plugins/quickinspector/quickitemtreewatcher.h index 1df49f8a87..d30f06b6f5 100644 --- a/plugins/quickinspector/quickitemtreewatcher.h +++ b/plugins/quickinspector/quickitemtreewatcher.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKITEMTREEWATCHER_H diff --git a/plugins/quickinspector/quickoverlaylegend.cpp b/plugins/quickinspector/quickoverlaylegend.cpp index 474e2ea43a..619286b8e3 100644 --- a/plugins/quickinspector/quickoverlaylegend.cpp +++ b/plugins/quickinspector/quickoverlaylegend.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickoverlaylegend.h" diff --git a/plugins/quickinspector/quickoverlaylegend.h b/plugins/quickinspector/quickoverlaylegend.h index b0f2a0120c..973f529441 100644 --- a/plugins/quickinspector/quickoverlaylegend.h +++ b/plugins/quickinspector/quickoverlaylegend.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKOVERLAYLEGEND_H diff --git a/plugins/quickinspector/quickpaintanalyzerextension.cpp b/plugins/quickinspector/quickpaintanalyzerextension.cpp index 3b617c9340..89b21cd888 100644 --- a/plugins/quickinspector/quickpaintanalyzerextension.cpp +++ b/plugins/quickinspector/quickpaintanalyzerextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickpaintanalyzerextension.h" diff --git a/plugins/quickinspector/quickpaintanalyzerextension.h b/plugins/quickinspector/quickpaintanalyzerextension.h index 4dd7b412e4..8299890cb0 100644 --- a/plugins/quickinspector/quickpaintanalyzerextension.h +++ b/plugins/quickinspector/quickpaintanalyzerextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKPAINTANALYZEREXTENSION_H diff --git a/plugins/quickinspector/quickscenecontrolwidget.cpp b/plugins/quickinspector/quickscenecontrolwidget.cpp index c39a8e48d4..af74d7d954 100644 --- a/plugins/quickinspector/quickscenecontrolwidget.cpp +++ b/plugins/quickinspector/quickscenecontrolwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph Sterz - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickscenecontrolwidget.h" diff --git a/plugins/quickinspector/quickscenecontrolwidget.h b/plugins/quickinspector/quickscenecontrolwidget.h index 808b17a196..e4f7952ded 100644 --- a/plugins/quickinspector/quickscenecontrolwidget.h +++ b/plugins/quickinspector/quickscenecontrolwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph Sterz - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef QUICKSCENECONTROLWIDGET_H diff --git a/plugins/quickinspector/quickscenegraphmodel.cpp b/plugins/quickinspector/quickscenegraphmodel.cpp index b1b7ea47c6..f9989e8514 100644 --- a/plugins/quickinspector/quickscenegraphmodel.cpp +++ b/plugins/quickinspector/quickscenegraphmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickscenegraphmodel.h" diff --git a/plugins/quickinspector/quickscenegraphmodel.h b/plugins/quickinspector/quickscenegraphmodel.h index 734791d741..0a1b6276d1 100644 --- a/plugins/quickinspector/quickscenegraphmodel.h +++ b/plugins/quickinspector/quickscenegraphmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKSCENEGRAPHMODEL_H diff --git a/plugins/quickinspector/quickscenepreviewwidget.cpp b/plugins/quickinspector/quickscenepreviewwidget.cpp index fdea39407d..442f5109c3 100644 --- a/plugins/quickinspector/quickscenepreviewwidget.cpp +++ b/plugins/quickinspector/quickscenepreviewwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickscenepreviewwidget.h" diff --git a/plugins/quickinspector/quickscenepreviewwidget.h b/plugins/quickinspector/quickscenepreviewwidget.h index d1063cd230..71d36660c4 100644 --- a/plugins/quickinspector/quickscenepreviewwidget.h +++ b/plugins/quickinspector/quickscenepreviewwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKSCENEPREVIEWWIDGET_H diff --git a/plugins/quickinspector/quickscreengrabber.cpp b/plugins/quickinspector/quickscreengrabber.cpp index 4a7598a71b..7ad4d5996c 100644 --- a/plugins/quickinspector/quickscreengrabber.cpp +++ b/plugins/quickinspector/quickscreengrabber.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickscreengrabber.h" @@ -747,7 +744,11 @@ void SoftwareScreenGrabber::requestGrabWindow(const QRectF &userViewport) renderer->markDirty(); winPriv->polishItems(); winPriv->syncSceneGraph(); +#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) + winPriv->renderSceneGraph(); +#else winPriv->renderSceneGraph(m_window->size()); +#endif renderer->setCurrentPaintDevice(regularRenderDevice); #else m_grabbedFrame.image = m_window->grabWindow(); diff --git a/plugins/quickinspector/quickscreengrabber.h b/plugins/quickinspector/quickscreengrabber.h index 67718a2d9d..f99bb6037e 100644 --- a/plugins/quickinspector/quickscreengrabber.h +++ b/plugins/quickinspector/quickscreengrabber.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKINSPECTOR_QUICKSCREENGRABBER_H diff --git a/plugins/quickinspector/textureextension/qsgtexturegrabber.cpp b/plugins/quickinspector/textureextension/qsgtexturegrabber.cpp index 63aa06079d..120bb400d7 100644 --- a/plugins/quickinspector/textureextension/qsgtexturegrabber.cpp +++ b/plugins/quickinspector/textureextension/qsgtexturegrabber.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qsgtexturegrabber.h" @@ -188,7 +185,7 @@ QImage QSGTextureGrabber::grabTexture(QOpenGLContext *context, int textureId) co glFuncs->glDeleteFramebuffers(1, &fbo); return img; } else { -#if !defined(QT_NO_OPENGL) && !defined(QT_OPENGL_ES_2) +#if !defined(QT_NO_OPENGL) && !QT_CONFIG(opengles2) #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) auto glFuncs = QOpenGLVersionFunctionsFactory::get(context); #else diff --git a/plugins/quickinspector/textureextension/qsgtexturegrabber.h b/plugins/quickinspector/textureextension/qsgtexturegrabber.h index 906d0f6ac9..e61463bce5 100644 --- a/plugins/quickinspector/textureextension/qsgtexturegrabber.h +++ b/plugins/quickinspector/textureextension/qsgtexturegrabber.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QSGTEXTUREGRABBER_H diff --git a/plugins/quickinspector/textureextension/textureextension.cpp b/plugins/quickinspector/textureextension/textureextension.cpp index 7c62f1edc2..d54bb1ed51 100644 --- a/plugins/quickinspector/textureextension/textureextension.cpp +++ b/plugins/quickinspector/textureextension/textureextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "textureextension.h" diff --git a/plugins/quickinspector/textureextension/textureextension.h b/plugins/quickinspector/textureextension/textureextension.h index 9268efb22e..ee00e86aea 100644 --- a/plugins/quickinspector/textureextension/textureextension.h +++ b/plugins/quickinspector/textureextension/textureextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTUREEXTENSION_H diff --git a/plugins/quickinspector/textureextension/texturetab.cpp b/plugins/quickinspector/textureextension/texturetab.cpp index a08798f3f5..356e145d97 100644 --- a/plugins/quickinspector/textureextension/texturetab.cpp +++ b/plugins/quickinspector/textureextension/texturetab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "texturetab.h" diff --git a/plugins/quickinspector/textureextension/texturetab.h b/plugins/quickinspector/textureextension/texturetab.h index b8099daf4b..08faa529a2 100644 --- a/plugins/quickinspector/textureextension/texturetab.h +++ b/plugins/quickinspector/textureextension/texturetab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTURETAB_H diff --git a/plugins/quickinspector/textureextension/textureviewwidget.cpp b/plugins/quickinspector/textureextension/textureviewwidget.cpp index a3eef1af85..57d60bdf25 100644 --- a/plugins/quickinspector/textureextension/textureviewwidget.cpp +++ b/plugins/quickinspector/textureextension/textureviewwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "textureviewwidget.h" diff --git a/plugins/quickinspector/textureextension/textureviewwidget.h b/plugins/quickinspector/textureextension/textureviewwidget.h index 424d5cd593..ad3a123e80 100644 --- a/plugins/quickinspector/textureextension/textureviewwidget.h +++ b/plugins/quickinspector/textureextension/textureviewwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTUREVIEWWIDGET_H diff --git a/plugins/quickwidgetsupport/CMakeLists.txt b/plugins/quickwidgetsupport/CMakeLists.txt index a47e6d892c..99b1211561 100644 --- a/plugins/quickwidgetsupport/CMakeLists.txt +++ b/plugins/quickwidgetsupport/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/quickwidgetsupport/quickwidgetsupport.cpp b/plugins/quickwidgetsupport/quickwidgetsupport.cpp index 4737c7cdcd..0bc2cfc4ad 100644 --- a/plugins/quickwidgetsupport/quickwidgetsupport.cpp +++ b/plugins/quickwidgetsupport/quickwidgetsupport.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "quickwidgetsupport.h" diff --git a/plugins/quickwidgetsupport/quickwidgetsupport.h b/plugins/quickwidgetsupport/quickwidgetsupport.h index ceea70a669..4649c6cd9a 100644 --- a/plugins/quickwidgetsupport/quickwidgetsupport.h +++ b/plugins/quickwidgetsupport/quickwidgetsupport.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_QUICKWIDGETSUPPRT_QUICKWIDGETSUPPORT_H diff --git a/plugins/sceneinspector/CMakeLists.txt b/plugins/sceneinspector/CMakeLists.txt index 4d3ae9b8a8..8ebbfd897e 100644 --- a/plugins/sceneinspector/CMakeLists.txt +++ b/plugins/sceneinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/sceneinspector/graphicssceneview.cpp b/plugins/sceneinspector/graphicssceneview.cpp index 70ed005848..cdbe00062b 100644 --- a/plugins/sceneinspector/graphicssceneview.cpp +++ b/plugins/sceneinspector/graphicssceneview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "graphicssceneview.h" diff --git a/plugins/sceneinspector/graphicssceneview.h b/plugins/sceneinspector/graphicssceneview.h index 5907ea30f1..51632503c9 100644 --- a/plugins/sceneinspector/graphicssceneview.h +++ b/plugins/sceneinspector/graphicssceneview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCENEINSPECTOR_GRAPHICSSCENEVIEW_H diff --git a/plugins/sceneinspector/graphicsview.cpp b/plugins/sceneinspector/graphicsview.cpp index 4d485efd2f..43662ec11c 100644 --- a/plugins/sceneinspector/graphicsview.cpp +++ b/plugins/sceneinspector/graphicsview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "graphicsview.h" diff --git a/plugins/sceneinspector/graphicsview.h b/plugins/sceneinspector/graphicsview.h index 67d7700ea5..07d60bde45 100644 --- a/plugins/sceneinspector/graphicsview.h +++ b/plugins/sceneinspector/graphicsview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCENEINSPECTOR_GRAPHICSVIEW_H diff --git a/plugins/sceneinspector/paintanalyzerextension.cpp b/plugins/sceneinspector/paintanalyzerextension.cpp index 8080456234..23b5557b62 100644 --- a/plugins/sceneinspector/paintanalyzerextension.cpp +++ b/plugins/sceneinspector/paintanalyzerextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintanalyzerextension.h" diff --git a/plugins/sceneinspector/paintanalyzerextension.h b/plugins/sceneinspector/paintanalyzerextension.h index 5c711f6ddf..a21505ccf8 100644 --- a/plugins/sceneinspector/paintanalyzerextension.h +++ b/plugins/sceneinspector/paintanalyzerextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTANALYZEREXTENSION_H diff --git a/plugins/sceneinspector/sceneinspector.cpp b/plugins/sceneinspector/sceneinspector.cpp index d301c07f68..8ca705c04a 100644 --- a/plugins/sceneinspector/sceneinspector.cpp +++ b/plugins/sceneinspector/sceneinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sceneinspector.h" @@ -34,8 +31,7 @@ #include #include #include - -#include +#include #include #include @@ -94,7 +90,7 @@ SceneInspector::SceneInspector(Probe *probe, QObject *parent) this, &SceneInspector::sceneSelected); m_sceneModel = new SceneModel(this); - auto sceneProxy = new ServerProxyModel(this); + auto sceneProxy = new ServerProxyModel(this); sceneProxy->setSourceModel(m_sceneModel); sceneProxy->addRole(ObjectModel::ObjectIdRole); probe->registerModel(QStringLiteral("com.kdab.GammaRay.SceneGraphModel"), sceneProxy); diff --git a/plugins/sceneinspector/sceneinspector.h b/plugins/sceneinspector/sceneinspector.h index 4f290e0e07..c6aed555a1 100644 --- a/plugins/sceneinspector/sceneinspector.h +++ b/plugins/sceneinspector/sceneinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCENEINSPECTOR_SCENEINSPECTOR_H diff --git a/plugins/sceneinspector/sceneinspectorclient.cpp b/plugins/sceneinspector/sceneinspectorclient.cpp index 1c5411b58c..8c1736019f 100644 --- a/plugins/sceneinspector/sceneinspectorclient.cpp +++ b/plugins/sceneinspector/sceneinspectorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sceneinspectorclient.h" diff --git a/plugins/sceneinspector/sceneinspectorclient.h b/plugins/sceneinspector/sceneinspectorclient.h index ebe8efcc5b..c9ea18b95c 100644 --- a/plugins/sceneinspector/sceneinspectorclient.h +++ b/plugins/sceneinspector/sceneinspectorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCENEINSPECTOR_SCENEINSPECTORCLIENT_H diff --git a/plugins/sceneinspector/sceneinspectorinterface.cpp b/plugins/sceneinspector/sceneinspectorinterface.cpp index 929075896a..2cbd2c05cb 100644 --- a/plugins/sceneinspector/sceneinspectorinterface.cpp +++ b/plugins/sceneinspector/sceneinspectorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sceneinspectorinterface.h" diff --git a/plugins/sceneinspector/sceneinspectorinterface.h b/plugins/sceneinspector/sceneinspectorinterface.h index b9737fe1ba..5e1f53573d 100644 --- a/plugins/sceneinspector/sceneinspectorinterface.h +++ b/plugins/sceneinspector/sceneinspectorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCENEINSPECTOR_SCENEINSPECTORINTERFACE_H diff --git a/plugins/sceneinspector/sceneinspectorwidget.cpp b/plugins/sceneinspector/sceneinspectorwidget.cpp index 468832225b..7b702cfa9d 100644 --- a/plugins/sceneinspector/sceneinspectorwidget.cpp +++ b/plugins/sceneinspector/sceneinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sceneinspectorwidget.h" diff --git a/plugins/sceneinspector/sceneinspectorwidget.h b/plugins/sceneinspector/sceneinspectorwidget.h index 61f7ba90bb..8cd3433512 100644 --- a/plugins/sceneinspector/sceneinspectorwidget.h +++ b/plugins/sceneinspector/sceneinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCENEINSPECTOR_SCENEINSPECTORWIDGET_H diff --git a/plugins/sceneinspector/scenemodel.cpp b/plugins/sceneinspector/scenemodel.cpp index 859179ee0d..3afbc23038 100644 --- a/plugins/sceneinspector/scenemodel.cpp +++ b/plugins/sceneinspector/scenemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "scenemodel.h" diff --git a/plugins/sceneinspector/scenemodel.h b/plugins/sceneinspector/scenemodel.h index fd9a27347f..23acf96fe7 100644 --- a/plugins/sceneinspector/scenemodel.h +++ b/plugins/sceneinspector/scenemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCENEINSPECTOR_SCENEMODEL_H diff --git a/plugins/scriptenginedebugger/CMakeLists.txt b/plugins/scriptenginedebugger/CMakeLists.txt index dee6ebe648..59ee76fb30 100644 --- a/plugins/scriptenginedebugger/CMakeLists.txt +++ b/plugins/scriptenginedebugger/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/scriptenginedebugger/scriptenginedebugger.cpp b/plugins/scriptenginedebugger/scriptenginedebugger.cpp index 637dda70c9..f2c8c87e1a 100644 --- a/plugins/scriptenginedebugger/scriptenginedebugger.cpp +++ b/plugins/scriptenginedebugger/scriptenginedebugger.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "scriptenginedebugger.h" diff --git a/plugins/scriptenginedebugger/scriptenginedebugger.h b/plugins/scriptenginedebugger/scriptenginedebugger.h index 9e7c81801b..c5211cb150 100644 --- a/plugins/scriptenginedebugger/scriptenginedebugger.h +++ b/plugins/scriptenginedebugger/scriptenginedebugger.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCRIPTENGINEDEBUGGER_SCRIPTENGINEDEBUGGER_H diff --git a/plugins/scriptenginedebugger/scriptenginedebuggerwidget.cpp b/plugins/scriptenginedebugger/scriptenginedebuggerwidget.cpp index d39711ee73..850163e3a7 100644 --- a/plugins/scriptenginedebugger/scriptenginedebuggerwidget.cpp +++ b/plugins/scriptenginedebugger/scriptenginedebuggerwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "scriptenginedebuggerwidget.h" diff --git a/plugins/scriptenginedebugger/scriptenginedebuggerwidget.h b/plugins/scriptenginedebugger/scriptenginedebuggerwidget.h index 5d5a5ac5e0..2a62ff8500 100644 --- a/plugins/scriptenginedebugger/scriptenginedebuggerwidget.h +++ b/plugins/scriptenginedebugger/scriptenginedebuggerwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SCRIPTENGINEDEBUGGER_SCRIPTENGINEDEBUGGERWIDGET_H diff --git a/plugins/signalmonitor/CMakeLists.txt b/plugins/signalmonitor/CMakeLists.txt index aef1e6bcfa..0a85fea169 100644 --- a/plugins/signalmonitor/CMakeLists.txt +++ b/plugins/signalmonitor/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # shared part set(gammaray_signalmonitor_shared_srcs signalmonitorinterface.cpp signalmonitorcommon.cpp) diff --git a/plugins/signalmonitor/relativeclock.cpp b/plugins/signalmonitor/relativeclock.cpp index 89a598657a..00f1bfc493 100644 --- a/plugins/signalmonitor/relativeclock.cpp +++ b/plugins/signalmonitor/relativeclock.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "relativeclock.h" diff --git a/plugins/signalmonitor/relativeclock.h b/plugins/signalmonitor/relativeclock.h index 2ef2b27eff..c70dbac562 100644 --- a/plugins/signalmonitor/relativeclock.h +++ b/plugins/signalmonitor/relativeclock.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_RELATIVECLOCK_H diff --git a/plugins/signalmonitor/signalhistorydelegate.cpp b/plugins/signalmonitor/signalhistorydelegate.cpp index 4d334c3e75..1c348ea125 100644 --- a/plugins/signalmonitor/signalhistorydelegate.cpp +++ b/plugins/signalmonitor/signalhistorydelegate.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalhistorydelegate.h" diff --git a/plugins/signalmonitor/signalhistorydelegate.h b/plugins/signalmonitor/signalhistorydelegate.h index 3d4ccf3ef8..81d7b69e0c 100644 --- a/plugins/signalmonitor/signalhistorydelegate.h +++ b/plugins/signalmonitor/signalhistorydelegate.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALHISTORYDELEGATE_H diff --git a/plugins/signalmonitor/signalhistorymodel.cpp b/plugins/signalmonitor/signalhistorymodel.cpp index 5b296b2a42..4ba2f970aa 100644 --- a/plugins/signalmonitor/signalhistorymodel.cpp +++ b/plugins/signalmonitor/signalhistorymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalhistorymodel.h" diff --git a/plugins/signalmonitor/signalhistorymodel.h b/plugins/signalmonitor/signalhistorymodel.h index 145de6a9d1..50dbf5bdb5 100644 --- a/plugins/signalmonitor/signalhistorymodel.h +++ b/plugins/signalmonitor/signalhistorymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALHISTORYMODEL_H diff --git a/plugins/signalmonitor/signalhistoryview.cpp b/plugins/signalmonitor/signalhistoryview.cpp index e15ac7087a..1ede2838bb 100644 --- a/plugins/signalmonitor/signalhistoryview.cpp +++ b/plugins/signalmonitor/signalhistoryview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalhistoryview.h" diff --git a/plugins/signalmonitor/signalhistoryview.h b/plugins/signalmonitor/signalhistoryview.h index 0ec861ec8c..c6dfc3085c 100644 --- a/plugins/signalmonitor/signalhistoryview.h +++ b/plugins/signalmonitor/signalhistoryview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALHISTORYVIEW_H diff --git a/plugins/signalmonitor/signalmonitor.cpp b/plugins/signalmonitor/signalmonitor.cpp index 76774cd032..10cae52602 100644 --- a/plugins/signalmonitor/signalmonitor.cpp +++ b/plugins/signalmonitor/signalmonitor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalmonitor.h" diff --git a/plugins/signalmonitor/signalmonitor.h b/plugins/signalmonitor/signalmonitor.h index 387295eda2..e5e788094f 100644 --- a/plugins/signalmonitor/signalmonitor.h +++ b/plugins/signalmonitor/signalmonitor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALMONITOR_H diff --git a/plugins/signalmonitor/signalmonitorclient.cpp b/plugins/signalmonitor/signalmonitorclient.cpp index e6101aebac..e0fea6382b 100644 --- a/plugins/signalmonitor/signalmonitorclient.cpp +++ b/plugins/signalmonitor/signalmonitorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalmonitorclient.h" diff --git a/plugins/signalmonitor/signalmonitorclient.h b/plugins/signalmonitor/signalmonitorclient.h index 7738a870a8..9e244b07f9 100644 --- a/plugins/signalmonitor/signalmonitorclient.h +++ b/plugins/signalmonitor/signalmonitorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALMONITORCLIENT_H diff --git a/plugins/signalmonitor/signalmonitorcommon.cpp b/plugins/signalmonitor/signalmonitorcommon.cpp index f6519fd221..d182789353 100644 --- a/plugins/signalmonitor/signalmonitorcommon.cpp +++ b/plugins/signalmonitor/signalmonitorcommon.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalmonitorcommon.h" diff --git a/plugins/signalmonitor/signalmonitorcommon.h b/plugins/signalmonitor/signalmonitorcommon.h index 4a98d88b3d..8ffa8e6702 100644 --- a/plugins/signalmonitor/signalmonitorcommon.h +++ b/plugins/signalmonitor/signalmonitorcommon.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALMONITORCOMMON_H diff --git a/plugins/signalmonitor/signalmonitorinterface.cpp b/plugins/signalmonitor/signalmonitorinterface.cpp index c6ffb53462..8928b6986a 100644 --- a/plugins/signalmonitor/signalmonitorinterface.cpp +++ b/plugins/signalmonitor/signalmonitorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalmonitorinterface.h" diff --git a/plugins/signalmonitor/signalmonitorinterface.h b/plugins/signalmonitor/signalmonitorinterface.h index d791963672..f53fee32f0 100644 --- a/plugins/signalmonitor/signalmonitorinterface.h +++ b/plugins/signalmonitor/signalmonitorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALMONITORINTERFACE_H diff --git a/plugins/signalmonitor/signalmonitorwidget.cpp b/plugins/signalmonitor/signalmonitorwidget.cpp index 02f61c70d9..088b44bce0 100644 --- a/plugins/signalmonitor/signalmonitorwidget.cpp +++ b/plugins/signalmonitor/signalmonitorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalmonitorwidget.h" diff --git a/plugins/signalmonitor/signalmonitorwidget.h b/plugins/signalmonitor/signalmonitorwidget.h index 2fac786f23..d541c72793 100644 --- a/plugins/signalmonitor/signalmonitorwidget.h +++ b/plugins/signalmonitor/signalmonitorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALMONITORWIDGET_H diff --git a/plugins/statemachineviewer/CMakeLists.txt b/plugins/statemachineviewer/CMakeLists.txt index 78d5229d96..475608bbcc 100644 --- a/plugins/statemachineviewer/CMakeLists.txt +++ b/plugins/statemachineviewer/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # shared part set(gammaray_statemachineviewer_shared_srcs statemachineviewerinterface.cpp) diff --git a/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.cpp b/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.cpp index 91c0e33cdb..9fd2341197 100644 --- a/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.cpp +++ b/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Arne Petersen - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qscxmlstatemachinedebuginterface.h" diff --git a/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.h b/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.h index 221ed3f5f5..c66f18b875 100644 --- a/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.h +++ b/plugins/statemachineviewer/qscxmlstatemachinedebuginterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Arne Petersen - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_QSCXMLSTATEMACHINEDEBUGINTERFACE_H diff --git a/plugins/statemachineviewer/qsmstatemachinedebuginterface.cpp b/plugins/statemachineviewer/qsmstatemachinedebuginterface.cpp index 61daf1a0a1..ada7c72613 100644 --- a/plugins/statemachineviewer/qsmstatemachinedebuginterface.cpp +++ b/plugins/statemachineviewer/qsmstatemachinedebuginterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Arne Petersen - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "qsmstatemachinedebuginterface.h" diff --git a/plugins/statemachineviewer/qsmstatemachinedebuginterface.h b/plugins/statemachineviewer/qsmstatemachinedebuginterface.h index 616247693b..b3effbf240 100644 --- a/plugins/statemachineviewer/qsmstatemachinedebuginterface.h +++ b/plugins/statemachineviewer/qsmstatemachinedebuginterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Arne Petersen - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_QSMSTATEMACHINEDEBUGINTERFACE_H diff --git a/plugins/statemachineviewer/statemachinedebuginterface.cpp b/plugins/statemachineviewer/statemachinedebuginterface.cpp index 82cdd8d6fc..e67f62dd6c 100644 --- a/plugins/statemachineviewer/statemachinedebuginterface.cpp +++ b/plugins/statemachineviewer/statemachinedebuginterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Arne Petersen - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemachinedebuginterface.h" diff --git a/plugins/statemachineviewer/statemachinedebuginterface.h b/plugins/statemachineviewer/statemachinedebuginterface.h index 8b5d359f46..27eeb827e3 100644 --- a/plugins/statemachineviewer/statemachinedebuginterface.h +++ b/plugins/statemachineviewer/statemachinedebuginterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Arne Petersen - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_STATEMACHINEDEBUGINTERFACE_H diff --git a/plugins/statemachineviewer/statemachineviewerclient.cpp b/plugins/statemachineviewer/statemachineviewerclient.cpp index 814dc0d250..49af582107 100644 --- a/plugins/statemachineviewer/statemachineviewerclient.cpp +++ b/plugins/statemachineviewer/statemachineviewerclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemachineviewerclient.h" diff --git a/plugins/statemachineviewer/statemachineviewerclient.h b/plugins/statemachineviewer/statemachineviewerclient.h index 55933148b8..9217bcde6e 100644 --- a/plugins/statemachineviewer/statemachineviewerclient.h +++ b/plugins/statemachineviewer/statemachineviewerclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_STATEMACHINEVIEWERCLIENT_H diff --git a/plugins/statemachineviewer/statemachineviewerinterface.cpp b/plugins/statemachineviewer/statemachineviewerinterface.cpp index ea04d8dc9f..f63d059b80 100644 --- a/plugins/statemachineviewer/statemachineviewerinterface.cpp +++ b/plugins/statemachineviewer/statemachineviewerinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemachineviewerinterface.h" diff --git a/plugins/statemachineviewer/statemachineviewerinterface.h b/plugins/statemachineviewer/statemachineviewerinterface.h index 806549da94..4a5692177b 100644 --- a/plugins/statemachineviewer/statemachineviewerinterface.h +++ b/plugins/statemachineviewer/statemachineviewerinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_STATEMACHINEVIEWERINTERFACE_H diff --git a/plugins/statemachineviewer/statemachineviewerserver.cpp b/plugins/statemachineviewer/statemachineviewerserver.cpp index 8c121f9ad8..63b130b355 100644 --- a/plugins/statemachineviewer/statemachineviewerserver.cpp +++ b/plugins/statemachineviewer/statemachineviewerserver.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemachineviewerserver.h" diff --git a/plugins/statemachineviewer/statemachineviewerserver.h b/plugins/statemachineviewer/statemachineviewerserver.h index b27825d56a..a40547eafc 100644 --- a/plugins/statemachineviewer/statemachineviewerserver.h +++ b/plugins/statemachineviewer/statemachineviewerserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_STATEMACHINEVIEWERSERVER_H diff --git a/plugins/statemachineviewer/statemachineviewerutil.h b/plugins/statemachineviewer/statemachineviewerutil.h index a263152523..262c9ff7a8 100644 --- a/plugins/statemachineviewer/statemachineviewerutil.h +++ b/plugins/statemachineviewer/statemachineviewerutil.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_STATEMACHINEVIEWERUTIL_H diff --git a/plugins/statemachineviewer/statemachineviewerwidget.cpp b/plugins/statemachineviewer/statemachineviewerwidget.cpp index 40347888ea..81d391f600 100644 --- a/plugins/statemachineviewer/statemachineviewerwidget.cpp +++ b/plugins/statemachineviewer/statemachineviewerwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemachineviewerwidget.h" diff --git a/plugins/statemachineviewer/statemachineviewerwidget.h b/plugins/statemachineviewer/statemachineviewerwidget.h index d51da116b2..92fbc793ee 100644 --- a/plugins/statemachineviewer/statemachineviewerwidget.h +++ b/plugins/statemachineviewer/statemachineviewerwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef STATEMACHINEVIEWERWIDGETNG_H diff --git a/plugins/statemachineviewer/statemachinewatcher.cpp b/plugins/statemachineviewer/statemachinewatcher.cpp index a2200aa15a..307635f76f 100644 --- a/plugins/statemachineviewer/statemachinewatcher.cpp +++ b/plugins/statemachineviewer/statemachinewatcher.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemachinewatcher.h" diff --git a/plugins/statemachineviewer/statemachinewatcher.h b/plugins/statemachineviewer/statemachinewatcher.h index 985e09f4a2..8387e801d1 100644 --- a/plugins/statemachineviewer/statemachinewatcher.h +++ b/plugins/statemachineviewer/statemachinewatcher.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_STATEMACHINEWATCHER_H diff --git a/plugins/statemachineviewer/statemodel.cpp b/plugins/statemachineviewer/statemodel.cpp index fec27b5959..9e48eb9e24 100644 --- a/plugins/statemachineviewer/statemodel.cpp +++ b/plugins/statemachineviewer/statemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemodel.h" #include "statemachinedebuginterface.h" diff --git a/plugins/statemachineviewer/statemodel.h b/plugins/statemachineviewer/statemodel.h index 8e720da34d..e90a592607 100644 --- a/plugins/statemachineviewer/statemodel.h +++ b/plugins/statemachineviewer/statemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_STATEMODEL_H #define GAMMARAY_STATEMACHINEVIEWER_STATEMODEL_H diff --git a/plugins/statemachineviewer/statemodeldelegate.cpp b/plugins/statemachineviewer/statemodeldelegate.cpp index 69c90c11f9..08c708ee1c 100644 --- a/plugins/statemachineviewer/statemodeldelegate.cpp +++ b/plugins/statemachineviewer/statemodeldelegate.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "statemodeldelegate.h" diff --git a/plugins/statemachineviewer/statemodeldelegate.h b/plugins/statemachineviewer/statemodeldelegate.h index 1982b7fccd..fb4bcf1e21 100644 --- a/plugins/statemachineviewer/statemodeldelegate.h +++ b/plugins/statemachineviewer/statemodeldelegate.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMODELDELEGATE_H diff --git a/plugins/statemachineviewer/transitionmodel.cpp b/plugins/statemachineviewer/transitionmodel.cpp index 09b4e354b3..53d667d850 100644 --- a/plugins/statemachineviewer/transitionmodel.cpp +++ b/plugins/statemachineviewer/transitionmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "transitionmodel.h" diff --git a/plugins/statemachineviewer/transitionmodel.h b/plugins/statemachineviewer/transitionmodel.h index b615cc542e..4b6da4e138 100644 --- a/plugins/statemachineviewer/transitionmodel.h +++ b/plugins/statemachineviewer/transitionmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STATEMACHINEVIEWER_TRANSITIONMODEL_H diff --git a/plugins/styleinspector/CMakeLists.txt b/plugins/styleinspector/CMakeLists.txt index 7241cd03f4..80e13502c4 100644 --- a/plugins/styleinspector/CMakeLists.txt +++ b/plugins/styleinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/styleinspector/abstractstyleelementmodel.cpp b/plugins/styleinspector/abstractstyleelementmodel.cpp index 67e89a60ad..f6db9395d6 100644 --- a/plugins/styleinspector/abstractstyleelementmodel.cpp +++ b/plugins/styleinspector/abstractstyleelementmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "abstractstyleelementmodel.h" diff --git a/plugins/styleinspector/abstractstyleelementmodel.h b/plugins/styleinspector/abstractstyleelementmodel.h index 80f67c7a11..d7ac7c4747 100644 --- a/plugins/styleinspector/abstractstyleelementmodel.h +++ b/plugins/styleinspector/abstractstyleelementmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_ABSTRACTSTYLEELEMENTMODEL_H diff --git a/plugins/styleinspector/abstractstyleelementstatetable.cpp b/plugins/styleinspector/abstractstyleelementstatetable.cpp index aa6f9ca6c4..cf0134e5a4 100644 --- a/plugins/styleinspector/abstractstyleelementstatetable.cpp +++ b/plugins/styleinspector/abstractstyleelementstatetable.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "abstractstyleelementstatetable.h" diff --git a/plugins/styleinspector/abstractstyleelementstatetable.h b/plugins/styleinspector/abstractstyleelementstatetable.h index 4859f34ad9..609368f911 100644 --- a/plugins/styleinspector/abstractstyleelementstatetable.h +++ b/plugins/styleinspector/abstractstyleelementstatetable.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_ABSTRACTSTYLEELEMENTSTATETABLE_H diff --git a/plugins/styleinspector/complexcontrolmodel.cpp b/plugins/styleinspector/complexcontrolmodel.cpp index f5971420d8..953e41be1f 100644 --- a/plugins/styleinspector/complexcontrolmodel.cpp +++ b/plugins/styleinspector/complexcontrolmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "complexcontrolmodel.h" diff --git a/plugins/styleinspector/complexcontrolmodel.h b/plugins/styleinspector/complexcontrolmodel.h index 8ba7d20d26..f7630847bc 100644 --- a/plugins/styleinspector/complexcontrolmodel.h +++ b/plugins/styleinspector/complexcontrolmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_COMPLEXCONTROLMODEL_H diff --git a/plugins/styleinspector/controlmodel.cpp b/plugins/styleinspector/controlmodel.cpp index 00d96b094f..92bc080c30 100644 --- a/plugins/styleinspector/controlmodel.cpp +++ b/plugins/styleinspector/controlmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "controlmodel.h" diff --git a/plugins/styleinspector/controlmodel.h b/plugins/styleinspector/controlmodel.h index 223016d24c..bdf2495d47 100644 --- a/plugins/styleinspector/controlmodel.h +++ b/plugins/styleinspector/controlmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_CONTROLMODEL_H diff --git a/plugins/styleinspector/dynamicproxystyle.cpp b/plugins/styleinspector/dynamicproxystyle.cpp index b40df93000..2f8f8e92c3 100644 --- a/plugins/styleinspector/dynamicproxystyle.cpp +++ b/plugins/styleinspector/dynamicproxystyle.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "dynamicproxystyle.h" diff --git a/plugins/styleinspector/dynamicproxystyle.h b/plugins/styleinspector/dynamicproxystyle.h index 152e991ec9..6f41664427 100644 --- a/plugins/styleinspector/dynamicproxystyle.h +++ b/plugins/styleinspector/dynamicproxystyle.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_DYNAMICPROXYSTYLE_H diff --git a/plugins/styleinspector/pixelmetricmodel.cpp b/plugins/styleinspector/pixelmetricmodel.cpp index 05a618cca4..c885797ad7 100644 --- a/plugins/styleinspector/pixelmetricmodel.cpp +++ b/plugins/styleinspector/pixelmetricmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "pixelmetricmodel.h" diff --git a/plugins/styleinspector/pixelmetricmodel.h b/plugins/styleinspector/pixelmetricmodel.h index ae0a5dc1ed..e15af7a998 100644 --- a/plugins/styleinspector/pixelmetricmodel.h +++ b/plugins/styleinspector/pixelmetricmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_PIXELMETRICMODEL_H diff --git a/plugins/styleinspector/primitivemodel.cpp b/plugins/styleinspector/primitivemodel.cpp index 2a331afb90..9d7cdb8517 100644 --- a/plugins/styleinspector/primitivemodel.cpp +++ b/plugins/styleinspector/primitivemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "primitivemodel.h" diff --git a/plugins/styleinspector/primitivemodel.h b/plugins/styleinspector/primitivemodel.h index 2abeedbbdb..caac54d922 100644 --- a/plugins/styleinspector/primitivemodel.h +++ b/plugins/styleinspector/primitivemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_PRIMITIVEMODEL_H diff --git a/plugins/styleinspector/standardiconmodel.cpp b/plugins/styleinspector/standardiconmodel.cpp index b6ad58de39..6c2c97c8e7 100644 --- a/plugins/styleinspector/standardiconmodel.cpp +++ b/plugins/styleinspector/standardiconmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "standardiconmodel.h" diff --git a/plugins/styleinspector/standardiconmodel.h b/plugins/styleinspector/standardiconmodel.h index 726a390286..8df0b2a388 100644 --- a/plugins/styleinspector/standardiconmodel.h +++ b/plugins/styleinspector/standardiconmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STANDARDICONMODEL_H diff --git a/plugins/styleinspector/styleelementproxymodel.cpp b/plugins/styleinspector/styleelementproxymodel.cpp index 4914c10bd1..a86080c5a1 100644 --- a/plugins/styleinspector/styleelementproxymodel.cpp +++ b/plugins/styleinspector/styleelementproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "styleelementproxymodel.h" diff --git a/plugins/styleinspector/styleelementproxymodel.h b/plugins/styleinspector/styleelementproxymodel.h index 20a4274d4e..119b110c5d 100644 --- a/plugins/styleinspector/styleelementproxymodel.h +++ b/plugins/styleinspector/styleelementproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STYLEELEMENTPROXYMODEL_H diff --git a/plugins/styleinspector/styleelementstatetablepage.cpp b/plugins/styleinspector/styleelementstatetablepage.cpp index ceb53447cb..9c529eb7ed 100644 --- a/plugins/styleinspector/styleelementstatetablepage.cpp +++ b/plugins/styleinspector/styleelementstatetablepage.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "styleelementstatetablepage.h" diff --git a/plugins/styleinspector/styleelementstatetablepage.h b/plugins/styleinspector/styleelementstatetablepage.h index 2780676a5c..cf58a2a1f2 100644 --- a/plugins/styleinspector/styleelementstatetablepage.h +++ b/plugins/styleinspector/styleelementstatetablepage.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STYLEELEMENTSTATETABLEPAGE_H diff --git a/plugins/styleinspector/stylehintmodel.cpp b/plugins/styleinspector/stylehintmodel.cpp index 7d594bdb2b..c4f128a4f3 100644 --- a/plugins/styleinspector/stylehintmodel.cpp +++ b/plugins/styleinspector/stylehintmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "stylehintmodel.h" diff --git a/plugins/styleinspector/stylehintmodel.h b/plugins/styleinspector/stylehintmodel.h index 486606377a..2e2704101a 100644 --- a/plugins/styleinspector/stylehintmodel.h +++ b/plugins/styleinspector/stylehintmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEHINTMODEL_H diff --git a/plugins/styleinspector/styleinspector.cpp b/plugins/styleinspector/styleinspector.cpp index ae11dff015..ec88074e02 100644 --- a/plugins/styleinspector/styleinspector.cpp +++ b/plugins/styleinspector/styleinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "styleinspector.h" diff --git a/plugins/styleinspector/styleinspector.h b/plugins/styleinspector/styleinspector.h index a14fa6511e..d5892ce26a 100644 --- a/plugins/styleinspector/styleinspector.h +++ b/plugins/styleinspector/styleinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STYLEINSPECTOR_H diff --git a/plugins/styleinspector/styleinspectorclient.cpp b/plugins/styleinspector/styleinspectorclient.cpp index 8f739ed0c0..3d1cde246f 100644 --- a/plugins/styleinspector/styleinspectorclient.cpp +++ b/plugins/styleinspector/styleinspectorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "styleinspectorclient.h" diff --git a/plugins/styleinspector/styleinspectorclient.h b/plugins/styleinspector/styleinspectorclient.h index 1aed7dfe5f..098f377248 100644 --- a/plugins/styleinspector/styleinspectorclient.h +++ b/plugins/styleinspector/styleinspectorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STYLEINSPECTORCLIENT_H diff --git a/plugins/styleinspector/styleinspectorinterface.cpp b/plugins/styleinspector/styleinspectorinterface.cpp index 3a00cd78c6..d16279a874 100644 --- a/plugins/styleinspector/styleinspectorinterface.cpp +++ b/plugins/styleinspector/styleinspectorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "styleinspectorinterface.h" diff --git a/plugins/styleinspector/styleinspectorinterface.h b/plugins/styleinspector/styleinspectorinterface.h index 86bac10921..7dd0f30945 100644 --- a/plugins/styleinspector/styleinspectorinterface.h +++ b/plugins/styleinspector/styleinspectorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STYLEINSPECTORINTERFACE_H diff --git a/plugins/styleinspector/styleinspectorwidget.cpp b/plugins/styleinspector/styleinspectorwidget.cpp index 43d46499cf..aebdc92a6d 100644 --- a/plugins/styleinspector/styleinspectorwidget.cpp +++ b/plugins/styleinspector/styleinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "styleinspectorwidget.h" diff --git a/plugins/styleinspector/styleinspectorwidget.h b/plugins/styleinspector/styleinspectorwidget.h index 46d6c919ba..6673365973 100644 --- a/plugins/styleinspector/styleinspectorwidget.h +++ b/plugins/styleinspector/styleinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STYLEINSPECTORWIDGET_H diff --git a/plugins/styleinspector/styleoption.cpp b/plugins/styleinspector/styleoption.cpp index 55feb8f742..69ad56c80e 100644 --- a/plugins/styleinspector/styleoption.cpp +++ b/plugins/styleinspector/styleoption.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "styleoption.h" diff --git a/plugins/styleinspector/styleoption.h b/plugins/styleinspector/styleoption.h index b9778aed50..ef61c167b1 100644 --- a/plugins/styleinspector/styleoption.h +++ b/plugins/styleinspector/styleoption.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STYLEINSPECTOR_STYLEOPTION_H diff --git a/plugins/sysinfo/CMakeLists.txt b/plugins/sysinfo/CMakeLists.txt index 11626acb2f..9fc42fa93d 100644 --- a/plugins/sysinfo/CMakeLists.txt +++ b/plugins/sysinfo/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/sysinfo/environmentmodel.cpp b/plugins/sysinfo/environmentmodel.cpp index 1515e717d3..43c6b6a9d5 100644 --- a/plugins/sysinfo/environmentmodel.cpp +++ b/plugins/sysinfo/environmentmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "environmentmodel.h" diff --git a/plugins/sysinfo/environmentmodel.h b/plugins/sysinfo/environmentmodel.h index 0bde80ee21..9a75a50105 100644 --- a/plugins/sysinfo/environmentmodel.h +++ b/plugins/sysinfo/environmentmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ENVIRONMENTMODEL_H diff --git a/plugins/sysinfo/libraryinfomodel.cpp b/plugins/sysinfo/libraryinfomodel.cpp index d853fcfe14..a6b3bf7c9d 100644 --- a/plugins/sysinfo/libraryinfomodel.cpp +++ b/plugins/sysinfo/libraryinfomodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "libraryinfomodel.h" diff --git a/plugins/sysinfo/libraryinfomodel.h b/plugins/sysinfo/libraryinfomodel.h index 8cca76eaca..53be446db2 100644 --- a/plugins/sysinfo/libraryinfomodel.h +++ b/plugins/sysinfo/libraryinfomodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LIBRARYINFOMODEL_H diff --git a/plugins/sysinfo/standardpathsmodel.cpp b/plugins/sysinfo/standardpathsmodel.cpp index 427d359446..3c2f5f4540 100644 --- a/plugins/sysinfo/standardpathsmodel.cpp +++ b/plugins/sysinfo/standardpathsmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "standardpathsmodel.h" diff --git a/plugins/sysinfo/standardpathsmodel.h b/plugins/sysinfo/standardpathsmodel.h index 1fae97fc9d..f0bcd29712 100644 --- a/plugins/sysinfo/standardpathsmodel.h +++ b/plugins/sysinfo/standardpathsmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STANDARDPATHS_STANDARDPATHSMODEL_H diff --git a/plugins/sysinfo/standardpathswidget.cpp b/plugins/sysinfo/standardpathswidget.cpp index f22f702c96..c41e22e78d 100644 --- a/plugins/sysinfo/standardpathswidget.cpp +++ b/plugins/sysinfo/standardpathswidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "standardpathswidget.h" diff --git a/plugins/sysinfo/standardpathswidget.h b/plugins/sysinfo/standardpathswidget.h index f31ac3906b..f1fd98d598 100644 --- a/plugins/sysinfo/standardpathswidget.h +++ b/plugins/sysinfo/standardpathswidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STANDARDPATHSWIDGET_H diff --git a/plugins/sysinfo/sysinfo.cpp b/plugins/sysinfo/sysinfo.cpp index adbe88864c..462814b27c 100644 --- a/plugins/sysinfo/sysinfo.cpp +++ b/plugins/sysinfo/sysinfo.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sysinfo.h" diff --git a/plugins/sysinfo/sysinfo.h b/plugins/sysinfo/sysinfo.h index 67266010a8..c5457769db 100644 --- a/plugins/sysinfo/sysinfo.h +++ b/plugins/sysinfo/sysinfo.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SYSINFO_H diff --git a/plugins/sysinfo/sysinfomodel.cpp b/plugins/sysinfo/sysinfomodel.cpp index d2dea95f5a..a707c6988e 100644 --- a/plugins/sysinfo/sysinfomodel.cpp +++ b/plugins/sysinfo/sysinfomodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sysinfomodel.h" diff --git a/plugins/sysinfo/sysinfomodel.h b/plugins/sysinfo/sysinfomodel.h index 688a610ce5..612a270e3a 100644 --- a/plugins/sysinfo/sysinfomodel.h +++ b/plugins/sysinfo/sysinfomodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SYSINFOMODEL_H diff --git a/plugins/sysinfo/sysinfowidget.cpp b/plugins/sysinfo/sysinfowidget.cpp index 860715388c..89b82656df 100644 --- a/plugins/sysinfo/sysinfowidget.cpp +++ b/plugins/sysinfo/sysinfowidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sysinfowidget.h" diff --git a/plugins/sysinfo/sysinfowidget.h b/plugins/sysinfo/sysinfowidget.h index fe37c994a8..64b37abd92 100644 --- a/plugins/sysinfo/sysinfowidget.h +++ b/plugins/sysinfo/sysinfowidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SYSINFOWIDGET_H diff --git a/plugins/textdocumentinspector/CMakeLists.txt b/plugins/textdocumentinspector/CMakeLists.txt index a38b3b0f10..1e5f3a9e5a 100644 --- a/plugins/textdocumentinspector/CMakeLists.txt +++ b/plugins/textdocumentinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/textdocumentinspector/textdocumentcontentview.cpp b/plugins/textdocumentinspector/textdocumentcontentview.cpp index 66bdc5c849..98d9b2036c 100644 --- a/plugins/textdocumentinspector/textdocumentcontentview.cpp +++ b/plugins/textdocumentinspector/textdocumentcontentview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "textdocumentcontentview.h" diff --git a/plugins/textdocumentinspector/textdocumentcontentview.h b/plugins/textdocumentinspector/textdocumentcontentview.h index 911dc05e96..7e69f0c3f8 100644 --- a/plugins/textdocumentinspector/textdocumentcontentview.h +++ b/plugins/textdocumentinspector/textdocumentcontentview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTDOCUMENTINSPECTOR_TEXTDOCUMENTCONTENTVIEW_H diff --git a/plugins/textdocumentinspector/textdocumentformatmodel.cpp b/plugins/textdocumentinspector/textdocumentformatmodel.cpp index 2963c99000..9076b3d2f2 100644 --- a/plugins/textdocumentinspector/textdocumentformatmodel.cpp +++ b/plugins/textdocumentinspector/textdocumentformatmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "textdocumentformatmodel.h" diff --git a/plugins/textdocumentinspector/textdocumentformatmodel.h b/plugins/textdocumentinspector/textdocumentformatmodel.h index f4fb1cb087..c33319649e 100644 --- a/plugins/textdocumentinspector/textdocumentformatmodel.h +++ b/plugins/textdocumentinspector/textdocumentformatmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTDOCUMENTINSPECTOR_TEXTDOCUMENTFORMATMODEL_H diff --git a/plugins/textdocumentinspector/textdocumentinspector.cpp b/plugins/textdocumentinspector/textdocumentinspector.cpp index 832f475819..4cdf156837 100644 --- a/plugins/textdocumentinspector/textdocumentinspector.cpp +++ b/plugins/textdocumentinspector/textdocumentinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "textdocumentinspector.h" diff --git a/plugins/textdocumentinspector/textdocumentinspector.h b/plugins/textdocumentinspector/textdocumentinspector.h index e343ad93f0..69d340beec 100644 --- a/plugins/textdocumentinspector/textdocumentinspector.h +++ b/plugins/textdocumentinspector/textdocumentinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTDOCUMENTINSPECTOR_TEXTDOCUMENTINSPECTOR_H diff --git a/plugins/textdocumentinspector/textdocumentinspectorwidget.cpp b/plugins/textdocumentinspector/textdocumentinspectorwidget.cpp index 3add97b863..55b6ab2194 100644 --- a/plugins/textdocumentinspector/textdocumentinspectorwidget.cpp +++ b/plugins/textdocumentinspector/textdocumentinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "textdocumentinspectorwidget.h" diff --git a/plugins/textdocumentinspector/textdocumentinspectorwidget.h b/plugins/textdocumentinspector/textdocumentinspectorwidget.h index ff1555c236..9ff308caf6 100644 --- a/plugins/textdocumentinspector/textdocumentinspectorwidget.h +++ b/plugins/textdocumentinspector/textdocumentinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTDOCUMENTINSPECTOR_TEXTDOCUMENTINSPECTORWIDGET_H diff --git a/plugins/textdocumentinspector/textdocumentmodel.cpp b/plugins/textdocumentinspector/textdocumentmodel.cpp index ea0c1c86d5..2b313f3cea 100644 --- a/plugins/textdocumentinspector/textdocumentmodel.cpp +++ b/plugins/textdocumentinspector/textdocumentmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "textdocumentmodel.h" diff --git a/plugins/textdocumentinspector/textdocumentmodel.h b/plugins/textdocumentinspector/textdocumentmodel.h index 418bc50511..74e241f6a8 100644 --- a/plugins/textdocumentinspector/textdocumentmodel.h +++ b/plugins/textdocumentinspector/textdocumentmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEXTDOCUMENTINSPECTOR_TEXTDOCUMENTMODEL_H diff --git a/plugins/timertop/CMakeLists.txt b/plugins/timertop/CMakeLists.txt index ec64aceb4a..41a90b0cb8 100644 --- a/plugins/timertop/CMakeLists.txt +++ b/plugins/timertop/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/timertop/clienttimermodel.cpp b/plugins/timertop/clienttimermodel.cpp index 6c8493b80b..7f4bfe5618 100644 --- a/plugins/timertop/clienttimermodel.cpp +++ b/plugins/timertop/clienttimermodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clienttimermodel.h" diff --git a/plugins/timertop/clienttimermodel.h b/plugins/timertop/clienttimermodel.h index e00463ec7a..eff4bfc42e 100644 --- a/plugins/timertop/clienttimermodel.h +++ b/plugins/timertop/clienttimermodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTTIMERMODEL_H diff --git a/plugins/timertop/timerinfo.cpp b/plugins/timertop/timerinfo.cpp index e4149f5f2b..d1b148a250 100644 --- a/plugins/timertop/timerinfo.cpp +++ b/plugins/timertop/timerinfo.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timerinfo.h" diff --git a/plugins/timertop/timerinfo.h b/plugins/timertop/timerinfo.h index 1ef821f596..4b506fe3ef 100644 --- a/plugins/timertop/timerinfo.h +++ b/plugins/timertop/timerinfo.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMERTOP_TIMERINFO_H #define GAMMARAY_TIMERTOP_TIMERINFO_H diff --git a/plugins/timertop/timermodel.cpp b/plugins/timertop/timermodel.cpp index d1ecc74791..05199c2a98 100644 --- a/plugins/timertop/timermodel.cpp +++ b/plugins/timertop/timermodel.cpp @@ -7,12 +7,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timermodel.h" diff --git a/plugins/timertop/timermodel.h b/plugins/timertop/timermodel.h index 46f1edb2d9..552bc85eff 100644 --- a/plugins/timertop/timermodel.h +++ b/plugins/timertop/timermodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMERTOP_TIMERMODEL_H #define GAMMARAY_TIMERTOP_TIMERMODEL_H diff --git a/plugins/timertop/timertop.cpp b/plugins/timertop/timertop.cpp index 8649306357..cbba486feb 100644 --- a/plugins/timertop/timertop.cpp +++ b/plugins/timertop/timertop.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timertop.h" diff --git a/plugins/timertop/timertop.h b/plugins/timertop/timertop.h index 41d5ee3d89..b7c432f077 100644 --- a/plugins/timertop/timertop.h +++ b/plugins/timertop/timertop.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMERTOP_TIMERTOP_H #define GAMMARAY_TIMERTOP_TIMERTOP_H diff --git a/plugins/timertop/timertopclient.cpp b/plugins/timertop/timertopclient.cpp index c958f9751b..aedefa0e19 100644 --- a/plugins/timertop/timertopclient.cpp +++ b/plugins/timertop/timertopclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timertopclient.h" diff --git a/plugins/timertop/timertopclient.h b/plugins/timertop/timertopclient.h index a372ba1f1c..4f49692102 100644 --- a/plugins/timertop/timertopclient.h +++ b/plugins/timertop/timertopclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMERTOP_TIMERTOPCLIENT_H diff --git a/plugins/timertop/timertopinterface.cpp b/plugins/timertop/timertopinterface.cpp index 96f57bcf2c..d37d93f8dc 100644 --- a/plugins/timertop/timertopinterface.cpp +++ b/plugins/timertop/timertopinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timertopinterface.h" diff --git a/plugins/timertop/timertopinterface.h b/plugins/timertop/timertopinterface.h index fcca04c919..c7f6e73190 100644 --- a/plugins/timertop/timertopinterface.h +++ b/plugins/timertop/timertopinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMERTOP_TIMERTOPINTERFACE_H diff --git a/plugins/timertop/timertopwidget.cpp b/plugins/timertop/timertopwidget.cpp index 13f0b1bd4f..6c9f13bc59 100644 --- a/plugins/timertop/timertopwidget.cpp +++ b/plugins/timertop/timertopwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "timertopwidget.h" diff --git a/plugins/timertop/timertopwidget.h b/plugins/timertop/timertopwidget.h index 55fd74acc3..6467e0b9ec 100644 --- a/plugins/timertop/timertopwidget.h +++ b/plugins/timertop/timertopwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Thomas McGuire - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TIMERTOP_TIMERTOPWIDGET_H #define GAMMARAY_TIMERTOP_TIMERTOPWIDGET_H diff --git a/plugins/translatorinspector/CMakeLists.txt b/plugins/translatorinspector/CMakeLists.txt index 3203286713..488549ae53 100644 --- a/plugins/translatorinspector/CMakeLists.txt +++ b/plugins/translatorinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/translatorinspector/translatorinspector.cpp b/plugins/translatorinspector/translatorinspector.cpp index 4070533dc3..72e4b50a1e 100644 --- a/plugins/translatorinspector/translatorinspector.cpp +++ b/plugins/translatorinspector/translatorinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "translatorinspector.h" diff --git a/plugins/translatorinspector/translatorinspector.h b/plugins/translatorinspector/translatorinspector.h index 10278b9cc9..9624a9049a 100644 --- a/plugins/translatorinspector/translatorinspector.h +++ b/plugins/translatorinspector/translatorinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TRANSLATORINSPECTOR_H diff --git a/plugins/translatorinspector/translatorinspectorinterface.cpp b/plugins/translatorinspector/translatorinspectorinterface.cpp index 324b2b055c..f05a793d6b 100644 --- a/plugins/translatorinspector/translatorinspectorinterface.cpp +++ b/plugins/translatorinspector/translatorinspectorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "translatorinspectorinterface.h" diff --git a/plugins/translatorinspector/translatorinspectorinterface.h b/plugins/translatorinspector/translatorinspectorinterface.h index bed0062da4..1de7a98f9d 100644 --- a/plugins/translatorinspector/translatorinspectorinterface.h +++ b/plugins/translatorinspector/translatorinspectorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TRANSLATORINSPECTORINTERFACE_H diff --git a/plugins/translatorinspector/translatorinspectorwidget.cpp b/plugins/translatorinspector/translatorinspectorwidget.cpp index 4f1c925f4c..c2d7442cc5 100644 --- a/plugins/translatorinspector/translatorinspectorwidget.cpp +++ b/plugins/translatorinspector/translatorinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "translatorinspectorwidget.h" diff --git a/plugins/translatorinspector/translatorinspectorwidget.h b/plugins/translatorinspector/translatorinspectorwidget.h index da44165ebd..dae99726af 100644 --- a/plugins/translatorinspector/translatorinspectorwidget.h +++ b/plugins/translatorinspector/translatorinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TRANSLATORINSPECTORWIDGET_H diff --git a/plugins/translatorinspector/translatorsmodel.cpp b/plugins/translatorinspector/translatorsmodel.cpp index 7f628b6b8a..f4e200ac04 100644 --- a/plugins/translatorinspector/translatorsmodel.cpp +++ b/plugins/translatorinspector/translatorsmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "translatorsmodel.h" diff --git a/plugins/translatorinspector/translatorsmodel.h b/plugins/translatorinspector/translatorsmodel.h index b506aa877b..56704a1e57 100644 --- a/plugins/translatorinspector/translatorsmodel.h +++ b/plugins/translatorinspector/translatorsmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TRANSLATORSMODEL_H diff --git a/plugins/translatorinspector/translatorwrapper.cpp b/plugins/translatorinspector/translatorwrapper.cpp index 2ea3e503f5..85c521b4e3 100644 --- a/plugins/translatorinspector/translatorwrapper.cpp +++ b/plugins/translatorinspector/translatorwrapper.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "translatorwrapper.h" diff --git a/plugins/translatorinspector/translatorwrapper.h b/plugins/translatorinspector/translatorwrapper.h index 8d0abcc718..02a14252d0 100644 --- a/plugins/translatorinspector/translatorwrapper.h +++ b/plugins/translatorinspector/translatorwrapper.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TRANSLATORWRAPPER_H diff --git a/plugins/translatorinspector/translatorwrapperproxy.cpp b/plugins/translatorinspector/translatorwrapperproxy.cpp index ae4b53b7c5..99ec5bd763 100644 --- a/plugins/translatorinspector/translatorwrapperproxy.cpp +++ b/plugins/translatorinspector/translatorwrapperproxy.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "translatorwrapperproxy.h" diff --git a/plugins/translatorinspector/translatorwrapperproxy.h b/plugins/translatorinspector/translatorwrapperproxy.h index ef87ab64a0..1e21c18b57 100644 --- a/plugins/translatorinspector/translatorwrapperproxy.h +++ b/plugins/translatorinspector/translatorwrapperproxy.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TRANSLATORWRAPPERPROXY_H diff --git a/plugins/webinspector/CMakeLists.txt b/plugins/webinspector/CMakeLists.txt index 75036bff59..afed739a0b 100644 --- a/plugins/webinspector/CMakeLists.txt +++ b/plugins/webinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe part if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/webinspector/webinspector.cpp b/plugins/webinspector/webinspector.cpp index d0702caa41..c2275c0052 100644 --- a/plugins/webinspector/webinspector.cpp +++ b/plugins/webinspector/webinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/plugins/webinspector/webinspector.h b/plugins/webinspector/webinspector.h index 5503a87576..64c010fcbb 100644 --- a/plugins/webinspector/webinspector.h +++ b/plugins/webinspector/webinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WEBINSPECTOR_WEBINSPECTOR_H diff --git a/plugins/webinspector/webinspectorwidget.cpp b/plugins/webinspector/webinspectorwidget.cpp index 53a1b229ef..73d4c10e6b 100644 --- a/plugins/webinspector/webinspectorwidget.cpp +++ b/plugins/webinspector/webinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "webinspectorwidget.h" diff --git a/plugins/webinspector/webinspectorwidget.h b/plugins/webinspector/webinspectorwidget.h index 69799fddc9..3e54253dd9 100644 --- a/plugins/webinspector/webinspectorwidget.h +++ b/plugins/webinspector/webinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WEBINSPECTOR_WEBINSPECTORWIDGET_H diff --git a/plugins/webinspector/webviewmodel.cpp b/plugins/webinspector/webviewmodel.cpp index f1e11b5491..07e1ba29cd 100644 --- a/plugins/webinspector/webviewmodel.cpp +++ b/plugins/webinspector/webviewmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "webviewmodel.h" diff --git a/plugins/webinspector/webviewmodel.h b/plugins/webinspector/webviewmodel.h index 55d0087bbf..4d0ead0d29 100644 --- a/plugins/webinspector/webviewmodel.h +++ b/plugins/webinspector/webviewmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WEBINSPECTOR_WEBVIEWMODEL_H diff --git a/plugins/webinspector/webviewmodelroles.h b/plugins/webinspector/webviewmodelroles.h index 84dbf5da16..194c992452 100644 --- a/plugins/webinspector/webviewmodelroles.h +++ b/plugins/webinspector/webviewmodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WEBVIEWMODELROLES_H diff --git a/plugins/widgetinspector/CMakeLists.txt b/plugins/widgetinspector/CMakeLists.txt index b45ac02ce6..18b2897227 100644 --- a/plugins/widgetinspector/CMakeLists.txt +++ b/plugins/widgetinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/widgetinspector/overlaywidget.cpp b/plugins/widgetinspector/overlaywidget.cpp index 21eb41d610..d3fe9c37b7 100644 --- a/plugins/widgetinspector/overlaywidget.cpp +++ b/plugins/widgetinspector/overlaywidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "overlaywidget.h" diff --git a/plugins/widgetinspector/overlaywidget.h b/plugins/widgetinspector/overlaywidget.h index 1d4c42089b..cf18f69adb 100644 --- a/plugins/widgetinspector/overlaywidget.h +++ b/plugins/widgetinspector/overlaywidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_OVERLAYWIDGET_H diff --git a/plugins/widgetinspector/uiextractor.cpp b/plugins/widgetinspector/uiextractor.cpp index d753870e6f..641ab1acba 100644 --- a/plugins/widgetinspector/uiextractor.cpp +++ b/plugins/widgetinspector/uiextractor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "uiextractor.h" diff --git a/plugins/widgetinspector/uiextractor.h b/plugins/widgetinspector/uiextractor.h index f62d01287a..79011ec066 100644 --- a/plugins/widgetinspector/uiextractor.h +++ b/plugins/widgetinspector/uiextractor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_UIEXTRACTOR_H diff --git a/plugins/widgetinspector/waextension/widgetattributeextension.cpp b/plugins/widgetinspector/waextension/widgetattributeextension.cpp index 53dd8b6096..7669a85dd9 100644 --- a/plugins/widgetinspector/waextension/widgetattributeextension.cpp +++ b/plugins/widgetinspector/waextension/widgetattributeextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetattributeextension.h" diff --git a/plugins/widgetinspector/waextension/widgetattributeextension.h b/plugins/widgetinspector/waextension/widgetattributeextension.h index 226f463c94..4b93c752ac 100644 --- a/plugins/widgetinspector/waextension/widgetattributeextension.h +++ b/plugins/widgetinspector/waextension/widgetattributeextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETATTRIBUTEEXTENSION_H diff --git a/plugins/widgetinspector/waextension/widgetattributetab.cpp b/plugins/widgetinspector/waextension/widgetattributetab.cpp index 4b15d1c7a4..407a25eb1c 100644 --- a/plugins/widgetinspector/waextension/widgetattributetab.cpp +++ b/plugins/widgetinspector/waextension/widgetattributetab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetattributetab.h" diff --git a/plugins/widgetinspector/waextension/widgetattributetab.h b/plugins/widgetinspector/waextension/widgetattributetab.h index 39f4a52ff0..3e28caee4f 100644 --- a/plugins/widgetinspector/waextension/widgetattributetab.h +++ b/plugins/widgetinspector/waextension/widgetattributetab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETATTRIBUTETAB_H diff --git a/plugins/widgetinspector/widget3dimagetextureimage.cpp b/plugins/widgetinspector/widget3dimagetextureimage.cpp index 0aef2e2fe9..2da6e8b300 100644 --- a/plugins/widgetinspector/widget3dimagetextureimage.cpp +++ b/plugins/widgetinspector/widget3dimagetextureimage.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ diff --git a/plugins/widgetinspector/widget3dimagetextureimage.h b/plugins/widgetinspector/widget3dimagetextureimage.h index ae94f653f6..229286006a 100644 --- a/plugins/widgetinspector/widget3dimagetextureimage.h +++ b/plugins/widgetinspector/widget3dimagetextureimage.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGET3DIMAGETEXTUREIMAGE_H diff --git a/plugins/widgetinspector/widget3dmodel.cpp b/plugins/widgetinspector/widget3dmodel.cpp index 78ceba7e33..22b751c48d 100644 --- a/plugins/widgetinspector/widget3dmodel.cpp +++ b/plugins/widgetinspector/widget3dmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widget3dmodel.h" diff --git a/plugins/widgetinspector/widget3dmodel.h b/plugins/widgetinspector/widget3dmodel.h index af4f93619f..ec1928885c 100644 --- a/plugins/widgetinspector/widget3dmodel.h +++ b/plugins/widgetinspector/widget3dmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef WIDGET3DMODEL_H diff --git a/plugins/widgetinspector/widget3dsubtreemodel.cpp b/plugins/widgetinspector/widget3dsubtreemodel.cpp index 24d45df9bc..3b6ff3c4e8 100644 --- a/plugins/widgetinspector/widget3dsubtreemodel.cpp +++ b/plugins/widgetinspector/widget3dsubtreemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widget3dsubtreemodel.h" diff --git a/plugins/widgetinspector/widget3dsubtreemodel.h b/plugins/widgetinspector/widget3dsubtreemodel.h index 869185f2ef..88ac18a0b8 100644 --- a/plugins/widgetinspector/widget3dsubtreemodel.h +++ b/plugins/widgetinspector/widget3dsubtreemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef WIDGET3DSUBTREEMODEL_H diff --git a/plugins/widgetinspector/widget3dview.cpp b/plugins/widgetinspector/widget3dview.cpp index 3a3074de85..9bb69d5117 100644 --- a/plugins/widgetinspector/widget3dview.cpp +++ b/plugins/widgetinspector/widget3dview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ diff --git a/plugins/widgetinspector/widget3dview.h b/plugins/widgetinspector/widget3dview.h index 1e1bc13d53..995617370c 100644 --- a/plugins/widgetinspector/widget3dview.h +++ b/plugins/widgetinspector/widget3dview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef WIDGET3DVIEW_H diff --git a/plugins/widgetinspector/widget3dwindowmodel.cpp b/plugins/widgetinspector/widget3dwindowmodel.cpp index f1524a7846..94244549dd 100644 --- a/plugins/widgetinspector/widget3dwindowmodel.cpp +++ b/plugins/widgetinspector/widget3dwindowmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widget3dwindowmodel.h" diff --git a/plugins/widgetinspector/widget3dwindowmodel.h b/plugins/widgetinspector/widget3dwindowmodel.h index 71afcf474e..74d0c043c5 100644 --- a/plugins/widgetinspector/widget3dwindowmodel.h +++ b/plugins/widgetinspector/widget3dwindowmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Daniel Vrátil - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef WIDGET3DWINDOWMODEL_H diff --git a/plugins/widgetinspector/widgetclientmodel.cpp b/plugins/widgetinspector/widgetclientmodel.cpp index 81e0d6880d..193eb82ed0 100644 --- a/plugins/widgetinspector/widgetclientmodel.cpp +++ b/plugins/widgetinspector/widgetclientmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetclientmodel.h" diff --git a/plugins/widgetinspector/widgetclientmodel.h b/plugins/widgetinspector/widgetclientmodel.h index 1f90ca1d3e..4c72cb18a8 100644 --- a/plugins/widgetinspector/widgetclientmodel.h +++ b/plugins/widgetinspector/widgetclientmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETCLIENTMODEL_H diff --git a/plugins/widgetinspector/widgetinspector.cpp b/plugins/widgetinspector/widgetinspector.cpp index fea31bd3ca..ed15c37037 100644 --- a/plugins/widgetinspector/widgetinspector.cpp +++ b/plugins/widgetinspector/widgetinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetinspector.h" diff --git a/plugins/widgetinspector/widgetinspector.h b/plugins/widgetinspector/widgetinspector.h index 9fdbe528a0..bb571e15f4 100644 --- a/plugins/widgetinspector/widgetinspector.h +++ b/plugins/widgetinspector/widgetinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETINSPECTOR_H diff --git a/plugins/widgetinspector/widgetinspector_export_actions.cpp b/plugins/widgetinspector/widgetinspector_export_actions.cpp index 4770b19ac2..ec7ebd6abf 100644 --- a/plugins/widgetinspector/widgetinspector_export_actions.cpp +++ b/plugins/widgetinspector/widgetinspector_export_actions.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ /** diff --git a/plugins/widgetinspector/widgetinspectorclient.cpp b/plugins/widgetinspector/widgetinspectorclient.cpp index ca03ebbc80..b2fa20d55e 100644 --- a/plugins/widgetinspector/widgetinspectorclient.cpp +++ b/plugins/widgetinspector/widgetinspectorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetinspectorclient.h" diff --git a/plugins/widgetinspector/widgetinspectorclient.h b/plugins/widgetinspector/widgetinspectorclient.h index ea1cafc991..468f99e453 100644 --- a/plugins/widgetinspector/widgetinspectorclient.h +++ b/plugins/widgetinspector/widgetinspectorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETINSPECTORCLIENT_H diff --git a/plugins/widgetinspector/widgetinspectorinterface.cpp b/plugins/widgetinspector/widgetinspectorinterface.cpp index e316b657fb..33488aeffb 100644 --- a/plugins/widgetinspector/widgetinspectorinterface.cpp +++ b/plugins/widgetinspector/widgetinspectorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetinspectorinterface.h" diff --git a/plugins/widgetinspector/widgetinspectorinterface.h b/plugins/widgetinspector/widgetinspectorinterface.h index a4e6eaca90..fbf414a15f 100644 --- a/plugins/widgetinspector/widgetinspectorinterface.h +++ b/plugins/widgetinspector/widgetinspectorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETINSPECTORINTERFACE_H diff --git a/plugins/widgetinspector/widgetinspectorserver.cpp b/plugins/widgetinspector/widgetinspectorserver.cpp index db3270d2d7..61b9374482 100644 --- a/plugins/widgetinspector/widgetinspectorserver.cpp +++ b/plugins/widgetinspector/widgetinspectorserver.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include @@ -44,8 +41,7 @@ #include "common/paths.h" #include #include - -#include <3rdparty/kde/krecursivefilterproxymodel.h> +#include #include #include @@ -115,7 +111,7 @@ WidgetInspectorServer::WidgetInspectorServer(Probe *probe, QObject *parent) auto *widgetFilterProxy = new WidgetTreeModel(this); widgetFilterProxy->setSourceModel(probe->objectTreeModel()); - auto widgetSearchProxy = new ServerProxyModel(this); + auto widgetSearchProxy = new ServerProxyModel(this); widgetSearchProxy->setSourceModel(widgetFilterProxy); widgetSearchProxy->addRole(ObjectModel::ObjectIdRole); diff --git a/plugins/widgetinspector/widgetinspectorserver.h b/plugins/widgetinspector/widgetinspectorserver.h index 9dc5f29d26..82c72f785f 100644 --- a/plugins/widgetinspector/widgetinspectorserver.h +++ b/plugins/widgetinspector/widgetinspectorserver.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETINSPECTORSERVER_H diff --git a/plugins/widgetinspector/widgetinspectorwidget.cpp b/plugins/widgetinspector/widgetinspectorwidget.cpp index f3e62cb768..1bce2da630 100644 --- a/plugins/widgetinspector/widgetinspectorwidget.cpp +++ b/plugins/widgetinspector/widgetinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/plugins/widgetinspector/widgetinspectorwidget.h b/plugins/widgetinspector/widgetinspectorwidget.h index 31310b3098..e1a1d67f18 100644 --- a/plugins/widgetinspector/widgetinspectorwidget.h +++ b/plugins/widgetinspector/widgetinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETINSPECTORWIDGET_H diff --git a/plugins/widgetinspector/widgetmodelroles.h b/plugins/widgetinspector/widgetmodelroles.h index 47483b5234..37b87bb1b7 100644 --- a/plugins/widgetinspector/widgetmodelroles.h +++ b/plugins/widgetinspector/widgetmodelroles.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETMODELROLES_H diff --git a/plugins/widgetinspector/widgetpaintanalyzerextension.cpp b/plugins/widgetinspector/widgetpaintanalyzerextension.cpp index 8f13b50c5c..40b74eb38c 100644 --- a/plugins/widgetinspector/widgetpaintanalyzerextension.cpp +++ b/plugins/widgetinspector/widgetpaintanalyzerextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetpaintanalyzerextension.h" diff --git a/plugins/widgetinspector/widgetpaintanalyzerextension.h b/plugins/widgetinspector/widgetpaintanalyzerextension.h index 4209afde4c..f313abeda9 100644 --- a/plugins/widgetinspector/widgetpaintanalyzerextension.h +++ b/plugins/widgetinspector/widgetpaintanalyzerextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETPAINTANALYZEREXTENSION_H diff --git a/plugins/widgetinspector/widgetremoteview.cpp b/plugins/widgetinspector/widgetremoteview.cpp index d3f2c14f26..28956d538c 100644 --- a/plugins/widgetinspector/widgetremoteview.cpp +++ b/plugins/widgetinspector/widgetremoteview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgetremoteview.h" diff --git a/plugins/widgetinspector/widgetremoteview.h b/plugins/widgetinspector/widgetremoteview.h index 741a22b723..b2f488e094 100644 --- a/plugins/widgetinspector/widgetremoteview.h +++ b/plugins/widgetinspector/widgetremoteview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETREMOTEVIEW_H diff --git a/plugins/widgetinspector/widgettreemodel.cpp b/plugins/widgetinspector/widgettreemodel.cpp index 10a4fa5d1e..0ae51712f7 100644 --- a/plugins/widgetinspector/widgettreemodel.cpp +++ b/plugins/widgetinspector/widgettreemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "widgettreemodel.h" diff --git a/plugins/widgetinspector/widgettreemodel.h b/plugins/widgetinspector/widgettreemodel.h index aa0d4a1abf..7574b68e23 100644 --- a/plugins/widgetinspector/widgettreemodel.h +++ b/plugins/widgetinspector/widgettreemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_WIDGETTREEMODEL_H diff --git a/plugins/wlcompositorinspector/CMakeLists.txt b/plugins/wlcompositorinspector/CMakeLists.txt index 9c883936ae..9d8c0e5dea 100644 --- a/plugins/wlcompositorinspector/CMakeLists.txt +++ b/plugins/wlcompositorinspector/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # probe plugin if(NOT GAMMARAY_CLIENT_ONLY_BUILD) diff --git a/plugins/wlcompositorinspector/clientsmodel.cpp b/plugins/wlcompositorinspector/clientsmodel.cpp index 2b7b9c851e..17acd44121 100644 --- a/plugins/wlcompositorinspector/clientsmodel.cpp +++ b/plugins/wlcompositorinspector/clientsmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientsmodel.h" diff --git a/plugins/wlcompositorinspector/clientsmodel.h b/plugins/wlcompositorinspector/clientsmodel.h index decec0ddef..5b58d3938b 100644 --- a/plugins/wlcompositorinspector/clientsmodel.h +++ b/plugins/wlcompositorinspector/clientsmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTSMODEL_H diff --git a/plugins/wlcompositorinspector/inspectorwidget.cpp b/plugins/wlcompositorinspector/inspectorwidget.cpp index 8de2ad5528..f0e198b8e7 100644 --- a/plugins/wlcompositorinspector/inspectorwidget.cpp +++ b/plugins/wlcompositorinspector/inspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "inspectorwidget.h" diff --git a/plugins/wlcompositorinspector/inspectorwidget.h b/plugins/wlcompositorinspector/inspectorwidget.h index 13b1308414..0e202b9812 100644 --- a/plugins/wlcompositorinspector/inspectorwidget.h +++ b/plugins/wlcompositorinspector/inspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WLCOMPOSITORINSPECTOR_WIDGET_H diff --git a/plugins/wlcompositorinspector/logview.cpp b/plugins/wlcompositorinspector/logview.cpp index 441642f479..4d3ebbf3d4 100644 --- a/plugins/wlcompositorinspector/logview.cpp +++ b/plugins/wlcompositorinspector/logview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "logview.h" diff --git a/plugins/wlcompositorinspector/logview.h b/plugins/wlcompositorinspector/logview.h index 4716b12c70..4e443d32b8 100644 --- a/plugins/wlcompositorinspector/logview.h +++ b/plugins/wlcompositorinspector/logview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_LOGVIEW_H diff --git a/plugins/wlcompositorinspector/resourceinfo.cpp b/plugins/wlcompositorinspector/resourceinfo.cpp index f55eeb66e3..d71b0e36df 100644 --- a/plugins/wlcompositorinspector/resourceinfo.cpp +++ b/plugins/wlcompositorinspector/resourceinfo.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "resourceinfo.h" diff --git a/plugins/wlcompositorinspector/resourceinfo.h b/plugins/wlcompositorinspector/resourceinfo.h index e9d2dfc8db..34298a9c6d 100644 --- a/plugins/wlcompositorinspector/resourceinfo.h +++ b/plugins/wlcompositorinspector/resourceinfo.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_RESOURCEINFO_H diff --git a/plugins/wlcompositorinspector/ringbuffer.h b/plugins/wlcompositorinspector/ringbuffer.h index 5eb1abe35f..bb4c852162 100644 --- a/plugins/wlcompositorinspector/ringbuffer.h +++ b/plugins/wlcompositorinspector/ringbuffer.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_RINGBUFFER_H diff --git a/plugins/wlcompositorinspector/wlcompositorclient.cpp b/plugins/wlcompositorinspector/wlcompositorclient.cpp index 881ca4d533..4a8599e0ba 100644 --- a/plugins/wlcompositorinspector/wlcompositorclient.cpp +++ b/plugins/wlcompositorinspector/wlcompositorclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "wlcompositorclient.h" diff --git a/plugins/wlcompositorinspector/wlcompositorclient.h b/plugins/wlcompositorinspector/wlcompositorclient.h index 3c85b366b8..0c35156c58 100644 --- a/plugins/wlcompositorinspector/wlcompositorclient.h +++ b/plugins/wlcompositorinspector/wlcompositorclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef WLCOMPOSITORCLIENT_H diff --git a/plugins/wlcompositorinspector/wlcompositorinspector.cpp b/plugins/wlcompositorinspector/wlcompositorinspector.cpp index 4f41c7a828..c623185085 100644 --- a/plugins/wlcompositorinspector/wlcompositorinspector.cpp +++ b/plugins/wlcompositorinspector/wlcompositorinspector.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "wlcompositorinspector.h" @@ -38,7 +35,6 @@ #include #include #include -#include <3rdparty/kde/krecursivefilterproxymodel.h> #include #include diff --git a/plugins/wlcompositorinspector/wlcompositorinspector.h b/plugins/wlcompositorinspector/wlcompositorinspector.h index f95afcea74..c3b83371ff 100644 --- a/plugins/wlcompositorinspector/wlcompositorinspector.h +++ b/plugins/wlcompositorinspector/wlcompositorinspector.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WLCOMPOSITORINSPECTOR_WLCOMPOSITORINSPECTOR_H diff --git a/plugins/wlcompositorinspector/wlcompositorinterface.cpp b/plugins/wlcompositorinspector/wlcompositorinterface.cpp index ba27d78ae1..426f02962e 100644 --- a/plugins/wlcompositorinspector/wlcompositorinterface.cpp +++ b/plugins/wlcompositorinspector/wlcompositorinterface.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "wlcompositorinterface.h" diff --git a/plugins/wlcompositorinspector/wlcompositorinterface.h b/plugins/wlcompositorinspector/wlcompositorinterface.h index ad862599aa..449f47b9f8 100644 --- a/plugins/wlcompositorinspector/wlcompositorinterface.h +++ b/plugins/wlcompositorinspector/wlcompositorinterface.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef WLCOMPOSITORINTERFACE_H diff --git a/probe/CMakeLists.txt b/probe/CMakeLists.txt index 9a5ed09335..eb76aec460 100644 --- a/probe/CMakeLists.txt +++ b/probe/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(NOT GAMMARAY_CLIENT_ONLY_BUILD) set(gammaray_probe_srcs probecreator.cpp hooks.cpp) diff --git a/probe/entry_unix.cpp b/probe/entry_unix.cpp index 095fc3eae6..e866083d40 100644 --- a/probe/entry_unix.cpp +++ b/probe/entry_unix.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "hooks.h" diff --git a/probe/entry_win.cpp b/probe/entry_win.cpp index c4f1700c53..5b06850a5c 100644 --- a/probe/entry_win.cpp +++ b/probe/entry_win.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/probe/hooks.cpp b/probe/hooks.cpp index 04eb78f1ea..965071374f 100644 --- a/probe/hooks.cpp +++ b/probe/hooks.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // krazy:excludeall=cpp due to low-level stuff in here diff --git a/probe/hooks.h b/probe/hooks.h index 1307c0b735..442a0a460d 100644 --- a/probe/hooks.h +++ b/probe/hooks.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_HOOKS_H diff --git a/probe/probecreator.cpp b/probe/probecreator.cpp index 1024319807..f1a078df10 100644 --- a/probe/probecreator.cpp +++ b/probe/probecreator.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/probe/probecreator.h b/probe/probecreator.h index 1751a044eb..01038bfe63 100644 --- a/probe/probecreator.h +++ b/probe/probecreator.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBECREATOR_H diff --git a/qt-ci-wrapper/qt-ci-wrapper.pro b/qt-ci-wrapper/qt-ci-wrapper.pro index 1406d4914f..0e71596ea2 100644 --- a/qt-ci-wrapper/qt-ci-wrapper.pro +++ b/qt-ci-wrapper/qt-ci-wrapper.pro @@ -2,16 +2,10 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. +# Contact KDAB at for commercial licensing options. # -# Contact info@kdab.com if any conditions of this licensing are not clear to you. -# -# implementation detail of the qmake -> cmake wrapper for the Qt CI system -# -# DO NOT USE THIS DIRECTLY! TEMPLATE = aux diff --git a/resources/update_authors.sh b/resources/update_authors.sh index a7c982dd34..2ec9d24c21 100644 --- a/resources/update_authors.sh +++ b/resources/update_authors.sh @@ -2,13 +2,9 @@ # # SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. +# Contact KDAB at for commercial licensing options. # -# Contact info@kdab.com if any conditions of this licensing are not clear to you. -# -#!/bin/sh git log --pretty=format:"%an <%ae>" | sort | uniq > gammaray/authors diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b7e50cffb5..161a3062cb 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # keep test output locally, in the multibuild case set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/${BIN_INSTALL_DIR}) diff --git a/tests/actiontest.cpp b/tests/actiontest.cpp index 2df52ec163..4b26f19a66 100644 --- a/tests/actiontest.cpp +++ b/tests/actiontest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/attachhelper.cpp b/tests/attachhelper.cpp index 42beea8234..c6f53abe4b 100644 --- a/tests/attachhelper.cpp +++ b/tests/attachhelper.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "attachhelper.h" diff --git a/tests/attachhelper.h b/tests/attachhelper.h index f262939e5f..e2348f0a32 100644 --- a/tests/attachhelper.h +++ b/tests/attachhelper.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TEST_GAMMARAY_ATTACHHELPER_H diff --git a/tests/baseprobetest.h b/tests/baseprobetest.h index 023d16bfe3..f19669bda5 100644 --- a/tests/baseprobetest.h +++ b/tests/baseprobetest.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef BASEPROBETEST_H diff --git a/tests/basequicktest.h b/tests/basequicktest.h index f076589b79..3d503a263b 100644 --- a/tests/basequicktest.h +++ b/tests/basequicktest.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef BASEQUICKTEST_H diff --git a/tests/benchsuite.cpp b/tests/benchsuite.cpp index 1e1722add6..303f977086 100644 --- a/tests/benchsuite.cpp +++ b/tests/benchsuite.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "benchsuite.h" diff --git a/tests/benchsuite.h b/tests/benchsuite.h index 3a82605994..4625e2203c 100644 --- a/tests/benchsuite.h +++ b/tests/benchsuite.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BENCHSUITE_H diff --git a/tests/bindinginspectortest.cpp b/tests/bindinginspectortest.cpp index 37a7ae3434..535b85b7e2 100644 --- a/tests/bindinginspectortest.cpp +++ b/tests/bindinginspectortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/clientconnectiontest.cpp b/tests/clientconnectiontest.cpp index 0ecfa7ffb0..d507beaca1 100644 --- a/tests/clientconnectiontest.cpp +++ b/tests/clientconnectiontest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/codecmodeltest.cpp b/tests/codecmodeltest.cpp index 564e6c08fa..81933a7a50 100644 --- a/tests/codecmodeltest.cpp +++ b/tests/codecmodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/earlyexittest.cpp b/tests/earlyexittest.cpp index 99f3696ca5..14ca6153f4 100644 --- a/tests/earlyexittest.cpp +++ b/tests/earlyexittest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Giulio Camuffo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/enumpropertytest.cpp b/tests/enumpropertytest.cpp index e3772777d3..1173195070 100644 --- a/tests/enumpropertytest.cpp +++ b/tests/enumpropertytest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/executiontest.cpp b/tests/executiontest.cpp index 60b6e2b4c1..c13bb59982 100644 --- a/tests/executiontest.cpp +++ b/tests/executiontest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/fontdatabasemodeltest.cpp b/tests/fontdatabasemodeltest.cpp index 6d0fb31fe1..2d84ab4df4 100644 --- a/tests/fontdatabasemodeltest.cpp +++ b/tests/fontdatabasemodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/gammaray-test-config.h.in b/tests/gammaray-test-config.h.in index 9a6f2d106b..fabe6a3290 100644 --- a/tests/gammaray-test-config.h.in +++ b/tests/gammaray-test-config.h.in @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEST_CONFIG_H diff --git a/tests/hooktest/hooktest.pro b/tests/hooktest/hooktest.pro index e368c52534..d2495fdc1d 100644 --- a/tests/hooktest/hooktest.pro +++ b/tests/hooktest/hooktest.pro @@ -1,14 +1,10 @@ -#------------------------------------------------- # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # QT += core gui diff --git a/tests/hooktest/main.cpp b/tests/hooktest/main.cpp index 22b02d4fe3..367ffa04cc 100644 --- a/tests/hooktest/main.cpp +++ b/tests/hooktest/main.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Andreas Holzammer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/hooktest/mainwindow.cpp b/tests/hooktest/mainwindow.cpp index 29e2e750fc..92fd7898fb 100644 --- a/tests/hooktest/mainwindow.cpp +++ b/tests/hooktest/mainwindow.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Andreas Holzammer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "mainwindow.h" diff --git a/tests/hooktest/mainwindow.h b/tests/hooktest/mainwindow.h index 3da01c656e..9b31734d97 100644 --- a/tests/hooktest/mainwindow.h +++ b/tests/hooktest/mainwindow.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Andreas Holzammer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TEST_GAMMARAY_MAINWINDOW_H diff --git a/tests/integrationtest.cpp b/tests/integrationtest.cpp index 7b16e2b775..a34a6e7f48 100644 --- a/tests/integrationtest.cpp +++ b/tests/integrationtest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/launchertest.cpp b/tests/launchertest.cpp index b5da8914f1..6a79fe42e3 100644 --- a/tests/launchertest.cpp +++ b/tests/launchertest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/launcheruiiptest.cpp b/tests/launcheruiiptest.cpp index 65a51d1ede..89bdd3adc6 100644 --- a/tests/launcheruiiptest.cpp +++ b/tests/launcheruiiptest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph Sterz - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/CMakeLists.txt b/tests/manual/CMakeLists.txt index ba9a82cd80..dfbb2e172e 100644 --- a/tests/manual/CMakeLists.txt +++ b/tests/manual/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # if(TARGET Qt::Widgets) set(gammaray_messagemodeltest_srcs messagemodeltest.cpp) diff --git a/tests/manual/anchorspropertyfiltertest.qml b/tests/manual/anchorspropertyfiltertest.qml index e2fd934b2b..9f42e9a013 100644 --- a/tests/manual/anchorspropertyfiltertest.qml +++ b/tests/manual/anchorspropertyfiltertest.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/bindingLoopTest.qml b/tests/manual/bindingLoopTest.qml index 96530eb79c..201aea2d0e 100644 --- a/tests/manual/bindingLoopTest.qml +++ b/tests/manual/bindingLoopTest.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/connectionstest.cpp b/tests/manual/connectionstest.cpp index e6bf8596c0..7a68e92435 100644 --- a/tests/manual/connectionstest.cpp +++ b/tests/manual/connectionstest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/keyhandlingtest.qml b/tests/manual/keyhandlingtest.qml index 16b9596eb3..b7d9dd7b36 100644 --- a/tests/manual/keyhandlingtest.qml +++ b/tests/manual/keyhandlingtest.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/listmodeltest.qml b/tests/manual/listmodeltest.qml index bd7b9d2f7f..28e192e380 100644 --- a/tests/manual/listmodeltest.qml +++ b/tests/manual/listmodeltest.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/messagemodeltest.cpp b/tests/manual/messagemodeltest.cpp index e6cf9993e8..3012c3dc90 100644 --- a/tests/manual/messagemodeltest.cpp +++ b/tests/manual/messagemodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagemodeltest.h" diff --git a/tests/manual/messagemodeltest.h b/tests/manual/messagemodeltest.h index 0d56b13a46..75e89d7642 100644 --- a/tests/manual/messagemodeltest.h +++ b/tests/manual/messagemodeltest.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEMODELTEST_H diff --git a/tests/manual/modelstest.cpp b/tests/manual/modelstest.cpp index cb78884218..5a500035bb 100644 --- a/tests/manual/modelstest.cpp +++ b/tests/manual/modelstest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: David Faure - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/objectreparenttest.cpp b/tests/manual/objectreparenttest.cpp index 3541e4c6ac..4840c28215 100644 --- a/tests/manual/objectreparenttest.cpp +++ b/tests/manual/objectreparenttest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/picking/invisibleoverlay.qml b/tests/manual/picking/invisibleoverlay.qml index 883a551725..e1e5dea8c6 100644 --- a/tests/manual/picking/invisibleoverlay.qml +++ b/tests/manual/picking/invisibleoverlay.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/picking/loader.qml b/tests/manual/picking/loader.qml index 2d9666b0bc..c6deaf2bfc 100644 --- a/tests/manual/picking/loader.qml +++ b/tests/manual/picking/loader.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/picking/negativezordering.qml b/tests/manual/picking/negativezordering.qml index 20e26e77b9..3fea9ea842 100644 --- a/tests/manual/picking/negativezordering.qml +++ b/tests/manual/picking/negativezordering.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/picking/opacityzerooverlay.qml b/tests/manual/picking/opacityzerooverlay.qml index 3646effb28..3e8f98263e 100644 --- a/tests/manual/picking/opacityzerooverlay.qml +++ b/tests/manual/picking/opacityzerooverlay.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/picking/outsideofparent.qml b/tests/manual/picking/outsideofparent.qml index c54d8a7a23..7a3bb008d6 100644 --- a/tests/manual/picking/outsideofparent.qml +++ b/tests/manual/picking/outsideofparent.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/picking/stackedrects.qml b/tests/manual/picking/stackedrects.qml index d4ceb302c0..94713ca3f7 100644 --- a/tests/manual/picking/stackedrects.qml +++ b/tests/manual/picking/stackedrects.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/propertytest.cpp b/tests/manual/propertytest.cpp index 9ad7351855..2a8c1454e6 100644 --- a/tests/manual/propertytest.cpp +++ b/tests/manual/propertytest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/quickitemcreatedestroytest.qml b/tests/manual/quickitemcreatedestroytest.qml index f64058d8a9..2e2e2c1034 100644 --- a/tests/manual/quickitemcreatedestroytest.qml +++ b/tests/manual/quickitemcreatedestroytest.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/quickwidgettest.cpp b/tests/manual/quickwidgettest.cpp index 3f1c313a0e..ead80a8f83 100644 --- a/tests/manual/quickwidgettest.cpp +++ b/tests/manual/quickwidgettest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/reparenttest.qml b/tests/manual/reparenttest.qml index 07be294e19..e06a408fb1 100644 --- a/tests/manual/reparenttest.qml +++ b/tests/manual/reparenttest.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/rotationinvariant.qml b/tests/manual/rotationinvariant.qml index 45b06d5071..f7df297be1 100644 --- a/tests/manual/rotationinvariant.qml +++ b/tests/manual/rotationinvariant.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/shadereffect.qml b/tests/manual/shadereffect.qml index 9e40d04fac..2c09adfda4 100644 --- a/tests/manual/shadereffect.qml +++ b/tests/manual/shadereffect.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/signalmonitortest.cpp b/tests/manual/signalmonitortest.cpp index a4a3059a4a..2058b1a2d3 100644 --- a/tests/manual/signalmonitortest.cpp +++ b/tests/manual/signalmonitortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "signalmonitortest.h" diff --git a/tests/manual/signalmonitortest.h b/tests/manual/signalmonitortest.h index 3fe88a31c2..10df12cb28 100644 --- a/tests/manual/signalmonitortest.h +++ b/tests/manual/signalmonitortest.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Mathias Hasselmann - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIGNALMONITORTEST_H diff --git a/tests/manual/staticinjectiontest.cpp b/tests/manual/staticinjectiontest.cpp index 70587b101b..16b0bb5070 100644 --- a/tests/manual/staticinjectiontest.cpp +++ b/tests/manual/staticinjectiontest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/textures.qml b/tests/manual/textures.qml index d69f7b63d2..2ce793116f 100644 --- a/tests/manual/textures.qml +++ b/tests/manual/textures.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/manual/translator_test.cpp b/tests/manual/translator_test.cpp index 79bf95c34e..6befc84640 100644 --- a/tests/manual/translator_test.cpp +++ b/tests/manual/translator_test.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Jan Dalheimer - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/wk1application.cpp b/tests/manual/wk1application.cpp index 7d35ac8b4e..bd2b331071 100644 --- a/tests/manual/wk1application.cpp +++ b/tests/manual/wk1application.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/wk2application.cpp b/tests/manual/wk2application.cpp index 851e2bf090..496725fa32 100644 --- a/tests/manual/wk2application.cpp +++ b/tests/manual/wk2application.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/manual/wk2application.qml b/tests/manual/wk2application.qml index c81d8ba433..3b2873533e 100644 --- a/tests/manual/wk2application.qml +++ b/tests/manual/wk2application.qml @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ import QtQuick 2.0 diff --git a/tests/metaobjecttest.cpp b/tests/metaobjecttest.cpp index f891956286..f564d8ca0c 100644 --- a/tests/metaobjecttest.cpp +++ b/tests/metaobjecttest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/metaobjecttreemodeltest.cpp b/tests/metaobjecttreemodeltest.cpp index d1ec46b6c0..77274fa207 100644 --- a/tests/metaobjecttreemodeltest.cpp +++ b/tests/metaobjecttreemodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/metatypemodeltest.cpp b/tests/metatypemodeltest.cpp index eb8c57fbd6..235bf1cd10 100644 --- a/tests/metatypemodeltest.cpp +++ b/tests/metatypemodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "testhelpers.h" diff --git a/tests/methodmodeltest.cpp b/tests/methodmodeltest.cpp index 57d75919e4..eaf1da4163 100644 --- a/tests/methodmodeltest.cpp +++ b/tests/methodmodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/modelinspectortest.cpp b/tests/modelinspectortest.cpp index 4dff570756..9c0fbdd06e 100644 --- a/tests/modelinspectortest.cpp +++ b/tests/modelinspectortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/multisignalmappertest.cpp b/tests/multisignalmappertest.cpp index cc41a30224..d28da1fa8d 100644 --- a/tests/multisignalmappertest.cpp +++ b/tests/multisignalmappertest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/multithreadingtest.cpp b/tests/multithreadingtest.cpp index 3efe8322a3..ad1be1c32d 100644 --- a/tests/multithreadingtest.cpp +++ b/tests/multithreadingtest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/networkselectionmodeltest.cpp b/tests/networkselectionmodeltest.cpp index 9b6d112e45..8d33a5dd1c 100644 --- a/tests/networkselectionmodeltest.cpp +++ b/tests/networkselectionmodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include <3rdparty/qt/modeltest.h> diff --git a/tests/objectinstancetest.cpp b/tests/objectinstancetest.cpp index 2dd81a3ee8..ce8bb24640 100644 --- a/tests/objectinstancetest.cpp +++ b/tests/objectinstancetest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/probeabidetectortest.cpp b/tests/probeabidetectortest.cpp index cd236b5f0a..f9ef01eedb 100644 --- a/tests/probeabidetectortest.cpp +++ b/tests/probeabidetectortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/probeabitest.cpp b/tests/probeabitest.cpp index 6e6d31ed43..98058376d4 100644 --- a/tests/probeabitest.cpp +++ b/tests/probeabitest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/probesettingsclient.cpp b/tests/probesettingsclient.cpp index 777cb524f1..01757494b8 100644 --- a/tests/probesettingsclient.cpp +++ b/tests/probesettingsclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/probesettingstest.cpp b/tests/probesettingstest.cpp index 3f788fd215..90c0638151 100644 --- a/tests/probesettingstest.cpp +++ b/tests/probesettingstest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/problemreportertest.cpp b/tests/problemreportertest.cpp index 917fa9525b..ea48aacdca 100644 --- a/tests/problemreportertest.cpp +++ b/tests/problemreportertest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/propertyadaptortest.cpp b/tests/propertyadaptortest.cpp index 4cc75cca8e..92170b18da 100644 --- a/tests/propertyadaptortest.cpp +++ b/tests/propertyadaptortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/propertybindertest.cpp b/tests/propertybindertest.cpp index ac0905efc3..ba17bca0b7 100644 --- a/tests/propertybindertest.cpp +++ b/tests/propertybindertest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/propertymodeltest.cpp b/tests/propertymodeltest.cpp index dd3031ec1d..4295a67ae1 100644 --- a/tests/propertymodeltest.cpp +++ b/tests/propertymodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "testhelpers.h" diff --git a/tests/propertysyncertest.cpp b/tests/propertysyncertest.cpp index 81d8984980..387d4efa73 100644 --- a/tests/propertysyncertest.cpp +++ b/tests/propertysyncertest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/qmetaobjectvalidatortest.cpp b/tests/qmetaobjectvalidatortest.cpp index e3f25ca309..bf76a80828 100644 --- a/tests/qmetaobjectvalidatortest.cpp +++ b/tests/qmetaobjectvalidatortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/qmlsupporttest.cpp b/tests/qmlsupporttest.cpp index d49cc0bcb9..ca5589ebe4 100644 --- a/tests/qmlsupporttest.cpp +++ b/tests/qmlsupporttest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/qtivipropertymodeltest.cpp b/tests/qtivipropertymodeltest.cpp index 7c49ae02dd..be85475f40 100644 --- a/tests/qtivipropertymodeltest.cpp +++ b/tests/qtivipropertymodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/quickinspectorbench.cpp b/tests/quickinspectorbench.cpp index 62f9a52b9c..a423c74174 100644 --- a/tests/quickinspectorbench.cpp +++ b/tests/quickinspectorbench.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/quickinspectorpickingtest.cpp b/tests/quickinspectorpickingtest.cpp index 1b88f18b90..3740835a51 100644 --- a/tests/quickinspectorpickingtest.cpp +++ b/tests/quickinspectorpickingtest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph Sterz - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/quickinspectortest.cpp b/tests/quickinspectortest.cpp index 9b0d5e44dc..5826e15581 100644 --- a/tests/quickinspectortest.cpp +++ b/tests/quickinspectortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "basequicktest.h" diff --git a/tests/quickinspectortest2.cpp b/tests/quickinspectortest2.cpp index 0430bffb37..e4b2e46fa9 100644 --- a/tests/quickinspectortest2.cpp +++ b/tests/quickinspectortest2.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "basequicktest.h" diff --git a/tests/quickmaterialtest.cpp b/tests/quickmaterialtest.cpp index bff8dce42e..b3e0c9fc54 100644 --- a/tests/quickmaterialtest.cpp +++ b/tests/quickmaterialtest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "basequicktest.h" diff --git a/tests/quicktexturetest.cpp b/tests/quicktexturetest.cpp index 654e24f32f..b758034913 100644 --- a/tests/quicktexturetest.cpp +++ b/tests/quicktexturetest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "basequicktest.h" diff --git a/tests/remotemodeltest.cpp b/tests/remotemodeltest.cpp index 52540cccdb..fa1120857a 100644 --- a/tests/remotemodeltest.cpp +++ b/tests/remotemodeltest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include <3rdparty/qt/modeltest.h> diff --git a/tests/selflocatortest.cpp b/tests/selflocatortest.cpp index 47cf558df6..3962e49a8c 100644 --- a/tests/selflocatortest.cpp +++ b/tests/selflocatortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/selftesttest.cpp b/tests/selftesttest.cpp index 24ce8ca901..98004bdc8d 100644 --- a/tests/selftesttest.cpp +++ b/tests/selftesttest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/shared/CMakeLists.txt b/tests/shared/CMakeLists.txt index 48b6078fbd..785d60a896 100644 --- a/tests/shared/CMakeLists.txt +++ b/tests/shared/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # #changingpropertyobject doesn't have any symbols. Quiet MSVC warnings. if(MSVC) diff --git a/tests/shared/changingpropertyobject.cpp b/tests/shared/changingpropertyobject.cpp index c261447725..34443d7ab3 100644 --- a/tests/shared/changingpropertyobject.cpp +++ b/tests/shared/changingpropertyobject.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "changingpropertyobject.h" diff --git a/tests/shared/changingpropertyobject.h b/tests/shared/changingpropertyobject.h index f05fec6227..7208e4a7a8 100644 --- a/tests/shared/changingpropertyobject.h +++ b/tests/shared/changingpropertyobject.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef CHANGINGPROPERTYOBJECT_H diff --git a/tests/shared/propertytestobject.cpp b/tests/shared/propertytestobject.cpp index 898a3562e2..da10dc2115 100644 --- a/tests/shared/propertytestobject.cpp +++ b/tests/shared/propertytestobject.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertytestobject.h" diff --git a/tests/shared/propertytestobject.h b/tests/shared/propertytestobject.h index cad1736b56..b680650f0a 100644 --- a/tests/shared/propertytestobject.h +++ b/tests/shared/propertytestobject.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef PROPERTYTESTOBJECT_H diff --git a/tests/shared/variantpropertyobject.cpp b/tests/shared/variantpropertyobject.cpp index 996181f9f7..079c702ec1 100644 --- a/tests/shared/variantpropertyobject.cpp +++ b/tests/shared/variantpropertyobject.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "variantpropertyobject.h" diff --git a/tests/shared/variantpropertyobject.h b/tests/shared/variantpropertyobject.h index dee3011556..3e1a26dc08 100644 --- a/tests/shared/variantpropertyobject.h +++ b/tests/shared/variantpropertyobject.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef VARIANTPROPERTYOBJECT_H diff --git a/tests/signalspycallbacktest.cpp b/tests/signalspycallbacktest.cpp index 44df3173cc..ce0f0fc009 100644 --- a/tests/signalspycallbacktest.cpp +++ b/tests/signalspycallbacktest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/sleep.cpp b/tests/sleep.cpp index f59d9110b6..1186f87b27 100644 --- a/tests/sleep.cpp +++ b/tests/sleep.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/sourcelocationtest.cpp b/tests/sourcelocationtest.cpp index 2e33040d32..b98de72c63 100644 --- a/tests/sourcelocationtest.cpp +++ b/tests/sourcelocationtest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/targets/CMakeLists.txt b/tests/targets/CMakeLists.txt index 32025df288..ecd7ae8831 100644 --- a/tests/targets/CMakeLists.txt +++ b/tests/targets/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # put targets in their own prefix, so we can test if GammaRay is properly loaded when installed elsewhere set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/testbin) diff --git a/tests/targets/minimalcoreapplication.cpp b/tests/targets/minimalcoreapplication.cpp index e0ee3538e9..dbe164e470 100644 --- a/tests/targets/minimalcoreapplication.cpp +++ b/tests/targets/minimalcoreapplication.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/targets/minimalwidgetapplication.cpp b/tests/targets/minimalwidgetapplication.cpp index e08a4977c5..182d5ce5ef 100644 --- a/tests/targets/minimalwidgetapplication.cpp +++ b/tests/targets/minimalwidgetapplication.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/tests/test_connections.cpp b/tests/test_connections.cpp index cb1f552f9a..5067b5eca3 100644 --- a/tests/test_connections.cpp +++ b/tests/test_connections.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "test_connections.h" diff --git a/tests/test_connections.h b/tests/test_connections.h index 0ea1151f4b..9e9dc17133 100644 --- a/tests/test_connections.h +++ b/tests/test_connections.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TEST_CONNECTIONS_H diff --git a/tests/testhelpers.cpp b/tests/testhelpers.cpp index 1fd1b6abc6..d886eb3b5e 100644 --- a/tests/testhelpers.cpp +++ b/tests/testhelpers.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "testhelpers.h" diff --git a/tests/testhelpers.h b/tests/testhelpers.h index cf9ea9b7b8..c422978ace 100644 --- a/tests/testhelpers.h +++ b/tests/testhelpers.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TESTHELPERS_H diff --git a/tests/tests-qt-ci-only.pro b/tests/tests-qt-ci-only.pro index babd8d5403..cdcd77f776 100644 --- a/tests/tests-qt-ci-only.pro +++ b/tests/tests-qt-ci-only.pro @@ -1,14 +1,10 @@ -# described in Install. txt # This file is part of GammaRay, the Qt application inspection and manipulation tool. # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # empty dummy file to make the CI not choke here diff --git a/tests/timertoptest.cpp b/tests/timertoptest.cpp index e57dbf198e..ec5fcf4628 100644 --- a/tests/timertoptest.cpp +++ b/tests/timertoptest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/toolmanagertest.cpp b/tests/toolmanagertest.cpp index 5ee89562e6..4f966a6eeb 100644 --- a/tests/toolmanagertest.cpp +++ b/tests/toolmanagertest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/translatortest.cpp b/tests/translatortest.cpp index ad8657dd46..f804be61a2 100644 --- a/tests/translatortest.cpp +++ b/tests/translatortest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/tests/widgettest.cpp b/tests/widgettest.cpp index a7e70ebb99..709f982c6f 100644 --- a/tests/widgettest.cpp +++ b/tests/widgettest.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "baseprobetest.h" diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt index 3069b9ac4d..1439bb3f4f 100644 --- a/translations/CMakeLists.txt +++ b/translations/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # set(LANGUAGES en de) diff --git a/translations/ljsonupdate.cpp b/translations/ljsonupdate.cpp index 50f5f21200..b0a30db2e9 100644 --- a/translations/ljsonupdate.cpp +++ b/translations/ljsonupdate.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "config-gammaray-version.h" diff --git a/ui/CMakeLists.txt b/ui/CMakeLists.txt index 9991163591..c4cdc73dd5 100644 --- a/ui/CMakeLists.txt +++ b/ui/CMakeLists.txt @@ -2,13 +2,9 @@ # # SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay -# -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# SPDX-License-Identifier: GPL-2.0-or-later # +# Contact KDAB at for commercial licensing options. # # Shared code between in-process and out-of-process UI # diff --git a/ui/aboutdata.cpp b/ui/aboutdata.cpp index 3a5ae0bfeb..4d28b0b311 100644 --- a/ui/aboutdata.cpp +++ b/ui/aboutdata.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "aboutdata.h" diff --git a/ui/aboutdata.h b/ui/aboutdata.h index b7ef0a417e..4a0ef897fc 100644 --- a/ui/aboutdata.h +++ b/ui/aboutdata.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ABOUTDATA_H diff --git a/ui/aboutdialog.cpp b/ui/aboutdialog.cpp index f17bee1a71..bc01f1a2be 100644 --- a/ui/aboutdialog.cpp +++ b/ui/aboutdialog.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "aboutdialog.h" diff --git a/ui/aboutdialog.h b/ui/aboutdialog.h index 859569a770..04274ce4d6 100644 --- a/ui/aboutdialog.h +++ b/ui/aboutdialog.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ABOUTDIALOG_H diff --git a/ui/aboutpluginsdialog.cpp b/ui/aboutpluginsdialog.cpp index f4268147f3..7b983269da 100644 --- a/ui/aboutpluginsdialog.cpp +++ b/ui/aboutpluginsdialog.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "aboutpluginsdialog.h" diff --git a/ui/aboutpluginsdialog.h b/ui/aboutpluginsdialog.h index 1c6625b271..fc7e8f8a57 100644 --- a/ui/aboutpluginsdialog.h +++ b/ui/aboutpluginsdialog.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ABOUTPLUGINSDIALOG_H diff --git a/ui/aboutwidget.cpp b/ui/aboutwidget.cpp index 557f23d388..7a6953c885 100644 --- a/ui/aboutwidget.cpp +++ b/ui/aboutwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "aboutwidget.h" diff --git a/ui/aboutwidget.h b/ui/aboutwidget.h index 0ca3a117ba..32e57dfdd2 100644 --- a/ui/aboutwidget.h +++ b/ui/aboutwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ABOUTWIDGET_H diff --git a/ui/clientdecorationidentityproxymodel.cpp b/ui/clientdecorationidentityproxymodel.cpp index 812c591b4c..34e3389c24 100644 --- a/ui/clientdecorationidentityproxymodel.cpp +++ b/ui/clientdecorationidentityproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientdecorationidentityproxymodel.h" diff --git a/ui/clientdecorationidentityproxymodel.h b/ui/clientdecorationidentityproxymodel.h index 7fe71cfee8..e5d4b29ece 100644 --- a/ui/clientdecorationidentityproxymodel.h +++ b/ui/clientdecorationidentityproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTDECORATIONIDENTITYPROXYMODEL_H diff --git a/ui/clientpropertymodel.cpp b/ui/clientpropertymodel.cpp index 98c9796453..582368d176 100644 --- a/ui/clientpropertymodel.cpp +++ b/ui/clientpropertymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientpropertymodel.h" diff --git a/ui/clientpropertymodel.h b/ui/clientpropertymodel.h index 10921a34c9..9d8c860e0b 100644 --- a/ui/clientpropertymodel.h +++ b/ui/clientpropertymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTPROPERTYMODEL_H diff --git a/ui/clienttoolfilterproxymodel.cpp b/ui/clienttoolfilterproxymodel.cpp index 16dc096fc1..e9ca283558 100644 --- a/ui/clienttoolfilterproxymodel.cpp +++ b/ui/clienttoolfilterproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clienttoolfilterproxymodel.h" diff --git a/ui/clienttoolfilterproxymodel.h b/ui/clienttoolfilterproxymodel.h index 8bae98a04a..24d7421cd7 100644 --- a/ui/clienttoolfilterproxymodel.h +++ b/ui/clienttoolfilterproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTTOOLFILTERPROXYMODEL_H diff --git a/ui/clienttoolmanager.cpp b/ui/clienttoolmanager.cpp index 7690046506..dafdac4d6f 100644 --- a/ui/clienttoolmanager.cpp +++ b/ui/clienttoolmanager.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clienttoolmanager.h" diff --git a/ui/clienttoolmanager.h b/ui/clienttoolmanager.h index dfca29fac0..80032c2f9b 100644 --- a/ui/clienttoolmanager.h +++ b/ui/clienttoolmanager.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTTOOLMANAGER_H diff --git a/ui/clienttoolmodel.cpp b/ui/clienttoolmodel.cpp index 65a250ce2d..aa3b24ce08 100644 --- a/ui/clienttoolmodel.cpp +++ b/ui/clienttoolmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clienttoolmodel.h" diff --git a/ui/clienttoolmodel.h b/ui/clienttoolmodel.h index 61e46a76cd..d86c0ae205 100644 --- a/ui/clienttoolmodel.h +++ b/ui/clienttoolmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTTOOLMODEL_H diff --git a/ui/codeeditor/codeeditor.cpp b/ui/codeeditor/codeeditor.cpp index d3c335d942..dd930111c2 100644 --- a/ui/codeeditor/codeeditor.cpp +++ b/ui/codeeditor/codeeditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "codeeditor.h" diff --git a/ui/codeeditor/codeeditor.h b/ui/codeeditor/codeeditor.h index 6b61d0c0f8..55b20f77bc 100644 --- a/ui/codeeditor/codeeditor.h +++ b/ui/codeeditor/codeeditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CODEEDITOR_H diff --git a/ui/codeeditor/codeeditorsidebar.cpp b/ui/codeeditor/codeeditorsidebar.cpp index 578bde3df8..194ddc2766 100644 --- a/ui/codeeditor/codeeditorsidebar.cpp +++ b/ui/codeeditor/codeeditorsidebar.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "codeeditorsidebar.h" diff --git a/ui/codeeditor/codeeditorsidebar.h b/ui/codeeditor/codeeditorsidebar.h index 837352a1e4..0564493f47 100644 --- a/ui/codeeditor/codeeditorsidebar.h +++ b/ui/codeeditor/codeeditorsidebar.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CODEEDITORSIDEBAR_H diff --git a/ui/contextmenuextension.cpp b/ui/contextmenuextension.cpp index d8bf98ba75..04eec61b4b 100644 --- a/ui/contextmenuextension.cpp +++ b/ui/contextmenuextension.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "contextmenuextension.h" diff --git a/ui/contextmenuextension.h b/ui/contextmenuextension.h index 60c5fd5e60..20ad3b594f 100644 --- a/ui/contextmenuextension.h +++ b/ui/contextmenuextension.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CONTEXTMENUEXTENSION_H diff --git a/ui/deferredtreeview.cpp b/ui/deferredtreeview.cpp index 824566e2ee..ebfa32ba2b 100644 --- a/ui/deferredtreeview.cpp +++ b/ui/deferredtreeview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/ui/deferredtreeview.h b/ui/deferredtreeview.h index 748ae21bb1..76e3728b22 100644 --- a/ui/deferredtreeview.h +++ b/ui/deferredtreeview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef DEFERREDTREEVIEW_H diff --git a/ui/deferredtreeview_p.h b/ui/deferredtreeview_p.h index 5bdd42b8c9..1259a5fa1b 100644 --- a/ui/deferredtreeview_p.h +++ b/ui/deferredtreeview_p.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_DEFERREDTREEVIEW_P_H diff --git a/ui/editabletypesmodel.cpp b/ui/editabletypesmodel.cpp index dbd33cb1d4..7b5062e003 100644 --- a/ui/editabletypesmodel.cpp +++ b/ui/editabletypesmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "editabletypesmodel.h" diff --git a/ui/editabletypesmodel.h b/ui/editabletypesmodel.h index 2e7c31db02..ab92f42345 100644 --- a/ui/editabletypesmodel.h +++ b/ui/editabletypesmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_EDITABLETYPESMODEL_H diff --git a/ui/favoritesitemview.cpp b/ui/favoritesitemview.cpp index 88aab85ee8..7061f9ec1b 100644 --- a/ui/favoritesitemview.cpp +++ b/ui/favoritesitemview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "favoritesitemview.h" #include "kde/kdescendantsproxymodel.h" diff --git a/ui/favoritesitemview.h b/ui/favoritesitemview.h index e59b08c578..07f60d9fe1 100644 --- a/ui/favoritesitemview.h +++ b/ui/favoritesitemview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_FAVORITESITEMVIEW_H #define GAMMARAY_FAVORITESITEMVIEW_H diff --git a/ui/helpcontroller.cpp b/ui/helpcontroller.cpp index 668401b34f..c9981fd4fc 100644 --- a/ui/helpcontroller.cpp +++ b/ui/helpcontroller.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/ui/helpcontroller.h b/ui/helpcontroller.h index 319bd62d27..e643a05b70 100644 --- a/ui/helpcontroller.h +++ b/ui/helpcontroller.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_HELPCONTROLLER_H diff --git a/ui/itemdelegate.cpp b/ui/itemdelegate.cpp index c9a527b3f1..cd3863ccd6 100644 --- a/ui/itemdelegate.cpp +++ b/ui/itemdelegate.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "itemdelegate.h" diff --git a/ui/itemdelegate.h b/ui/itemdelegate.h index 493b9ab8f9..aaf6abfcdc 100644 --- a/ui/itemdelegate.h +++ b/ui/itemdelegate.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_ITEMDELEGATE_H diff --git a/ui/mainwindow.cpp b/ui/mainwindow.cpp index 67683c885a..75948208f7 100644 --- a/ui/mainwindow.cpp +++ b/ui/mainwindow.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include diff --git a/ui/mainwindow.h b/ui/mainwindow.h index f1188276f7..209f1f545f 100644 --- a/ui/mainwindow.h +++ b/ui/mainwindow.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MAINWINDOW_H diff --git a/ui/methodinvocationdialog.cpp b/ui/methodinvocationdialog.cpp index a98e9951ec..697d686e41 100644 --- a/ui/methodinvocationdialog.cpp +++ b/ui/methodinvocationdialog.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "methodinvocationdialog.h" diff --git a/ui/methodinvocationdialog.h b/ui/methodinvocationdialog.h index 6d2c8120ff..0dd5fb5fc5 100644 --- a/ui/methodinvocationdialog.h +++ b/ui/methodinvocationdialog.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METHODINVOCATIONDIALOG_H diff --git a/ui/modelpickerdialog.cpp b/ui/modelpickerdialog.cpp index a98e8cf96d..07637c8920 100644 --- a/ui/modelpickerdialog.cpp +++ b/ui/modelpickerdialog.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "modelpickerdialog.h" diff --git a/ui/modelpickerdialog.h b/ui/modelpickerdialog.h index 44ccb20d70..400a5700fc 100644 --- a/ui/modelpickerdialog.h +++ b/ui/modelpickerdialog.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MODELPICKERDIALOG_H diff --git a/ui/paintanalyzerreplayview.cpp b/ui/paintanalyzerreplayview.cpp index 25c5022aca..df9abc7a81 100644 --- a/ui/paintanalyzerreplayview.cpp +++ b/ui/paintanalyzerreplayview.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintanalyzerreplayview.h" diff --git a/ui/paintanalyzerreplayview.h b/ui/paintanalyzerreplayview.h index d01eab2000..d5054a36fd 100644 --- a/ui/paintanalyzerreplayview.h +++ b/ui/paintanalyzerreplayview.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTANALYZERREPLAYVIEW_H diff --git a/ui/paintanalyzerwidget.cpp b/ui/paintanalyzerwidget.cpp index 675b6e1161..bfa91fc6cc 100644 --- a/ui/paintanalyzerwidget.cpp +++ b/ui/paintanalyzerwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintanalyzerwidget.h" diff --git a/ui/paintanalyzerwidget.h b/ui/paintanalyzerwidget.h index ced16cc161..2ee75fb58e 100644 --- a/ui/paintanalyzerwidget.h +++ b/ui/paintanalyzerwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_PAINTANALYZERWIDGET_H diff --git a/ui/paintbufferclientmodel.cpp b/ui/paintbufferclientmodel.cpp index e2bc380f9f..1afd964dd3 100644 --- a/ui/paintbufferclientmodel.cpp +++ b/ui/paintbufferclientmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintbufferclientmodel.h" diff --git a/ui/paintbufferclientmodel.h b/ui/paintbufferclientmodel.h index 0b98cf5609..08fa4e53dc 100644 --- a/ui/paintbufferclientmodel.h +++ b/ui/paintbufferclientmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PAINTBUFFERCLIENTMODEL_H diff --git a/ui/paintbufferviewer.cpp b/ui/paintbufferviewer.cpp index 7364a4b4a7..6353c2ba0a 100644 --- a/ui/paintbufferviewer.cpp +++ b/ui/paintbufferviewer.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "paintbufferviewer.h" diff --git a/ui/paintbufferviewer.h b/ui/paintbufferviewer.h index bc6a892bc2..79c6a32129 100644 --- a/ui/paintbufferviewer.h +++ b/ui/paintbufferviewer.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_WIDGETINSPECTOR_PAINTBUFFERVIEWER_H diff --git a/ui/palettemodel.cpp b/ui/palettemodel.cpp index 1adb707166..9e406514c9 100644 --- a/ui/palettemodel.cpp +++ b/ui/palettemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "palettemodel.h" diff --git a/ui/palettemodel.h b/ui/palettemodel.h index 4b4937b530..6c75e44aea 100644 --- a/ui/palettemodel.h +++ b/ui/palettemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PALETTEMODEL_H diff --git a/ui/propertybinder.cpp b/ui/propertybinder.cpp index 8c378aa4e8..a0ac7dbb9c 100644 --- a/ui/propertybinder.cpp +++ b/ui/propertybinder.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertybinder.h" diff --git a/ui/propertybinder.h b/ui/propertybinder.h index 98787e9b45..8f7e758ca2 100644 --- a/ui/propertybinder.h +++ b/ui/propertybinder.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYBINDER_H diff --git a/ui/propertyeditor/palettedialog.cpp b/ui/propertyeditor/palettedialog.cpp index 35037ccb5d..ab55d6deda 100644 --- a/ui/propertyeditor/palettedialog.cpp +++ b/ui/propertyeditor/palettedialog.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "palettedialog.h" diff --git a/ui/propertyeditor/palettedialog.h b/ui/propertyeditor/palettedialog.h index 465d5cd66e..f326541dd3 100644 --- a/ui/propertyeditor/palettedialog.h +++ b/ui/propertyeditor/palettedialog.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PALETTEDIALOG_H diff --git a/ui/propertyeditor/propertycoloreditor.cpp b/ui/propertyeditor/propertycoloreditor.cpp index 3191c99552..f38a15a194 100644 --- a/ui/propertyeditor/propertycoloreditor.cpp +++ b/ui/propertyeditor/propertycoloreditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertycoloreditor.h" diff --git a/ui/propertyeditor/propertycoloreditor.h b/ui/propertyeditor/propertycoloreditor.h index 4d5319ff1d..69aee17b40 100644 --- a/ui/propertyeditor/propertycoloreditor.h +++ b/ui/propertyeditor/propertycoloreditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYCOLOREDITOR_H diff --git a/ui/propertyeditor/propertydoublepaireditor.cpp b/ui/propertyeditor/propertydoublepaireditor.cpp index 90c6d62b4d..615c98349e 100644 --- a/ui/propertyeditor/propertydoublepaireditor.cpp +++ b/ui/propertyeditor/propertydoublepaireditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertydoublepaireditor.h" diff --git a/ui/propertyeditor/propertydoublepaireditor.h b/ui/propertyeditor/propertydoublepaireditor.h index 8626c618c9..13ad58a012 100644 --- a/ui/propertyeditor/propertydoublepaireditor.h +++ b/ui/propertyeditor/propertydoublepaireditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYDOUBLEPAIREDITOR_H diff --git a/ui/propertyeditor/propertyeditordelegate.cpp b/ui/propertyeditor/propertyeditordelegate.cpp index 344be265d7..2a1f408bd4 100644 --- a/ui/propertyeditor/propertyeditordelegate.cpp +++ b/ui/propertyeditor/propertyeditordelegate.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyeditordelegate.h" diff --git a/ui/propertyeditor/propertyeditordelegate.h b/ui/propertyeditor/propertyeditordelegate.h index 601fb47bce..a4048273bc 100644 --- a/ui/propertyeditor/propertyeditordelegate.h +++ b/ui/propertyeditor/propertyeditordelegate.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYEDITORDELEGATE_H diff --git a/ui/propertyeditor/propertyeditorfactory.cpp b/ui/propertyeditor/propertyeditorfactory.cpp index 79fe715efe..f859396691 100644 --- a/ui/propertyeditor/propertyeditorfactory.cpp +++ b/ui/propertyeditor/propertyeditorfactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyeditorfactory.h" diff --git a/ui/propertyeditor/propertyeditorfactory.h b/ui/propertyeditor/propertyeditorfactory.h index 84b0a2724e..1b7f8c0272 100644 --- a/ui/propertyeditor/propertyeditorfactory.h +++ b/ui/propertyeditor/propertyeditorfactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYEDITORFACTORY_H diff --git a/ui/propertyeditor/propertyenumeditor.cpp b/ui/propertyeditor/propertyenumeditor.cpp index 0aaa5711c0..cd337f54fe 100644 --- a/ui/propertyeditor/propertyenumeditor.cpp +++ b/ui/propertyeditor/propertyenumeditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyenumeditor.h" diff --git a/ui/propertyeditor/propertyenumeditor.h b/ui/propertyeditor/propertyenumeditor.h index ed39b3c9a4..73ceba3354 100644 --- a/ui/propertyeditor/propertyenumeditor.h +++ b/ui/propertyeditor/propertyenumeditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYENUMEDITOR_H diff --git a/ui/propertyeditor/propertyextendededitor.cpp b/ui/propertyeditor/propertyextendededitor.cpp index f506ff0938..3a69c9c962 100644 --- a/ui/propertyeditor/propertyextendededitor.cpp +++ b/ui/propertyeditor/propertyextendededitor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyextendededitor.h" diff --git a/ui/propertyeditor/propertyextendededitor.h b/ui/propertyeditor/propertyextendededitor.h index fe35ff366d..5c24aab092 100644 --- a/ui/propertyeditor/propertyextendededitor.h +++ b/ui/propertyeditor/propertyextendededitor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYEXTENDEDEDITOR_H diff --git a/ui/propertyeditor/propertyfonteditor.cpp b/ui/propertyeditor/propertyfonteditor.cpp index 0b12d43ae5..037f1a3318 100644 --- a/ui/propertyeditor/propertyfonteditor.cpp +++ b/ui/propertyeditor/propertyfonteditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyfonteditor.h" diff --git a/ui/propertyeditor/propertyfonteditor.h b/ui/propertyeditor/propertyfonteditor.h index 90fbd9d18e..7965a7fff9 100644 --- a/ui/propertyeditor/propertyfonteditor.h +++ b/ui/propertyeditor/propertyfonteditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYFONTEDITOR_H diff --git a/ui/propertyeditor/propertyintpaireditor.cpp b/ui/propertyeditor/propertyintpaireditor.cpp index d02bd9237a..c0b5283c93 100644 --- a/ui/propertyeditor/propertyintpaireditor.cpp +++ b/ui/propertyeditor/propertyintpaireditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyintpaireditor.h" diff --git a/ui/propertyeditor/propertyintpaireditor.h b/ui/propertyeditor/propertyintpaireditor.h index 56b2ff4071..dad9ec428d 100644 --- a/ui/propertyeditor/propertyintpaireditor.h +++ b/ui/propertyeditor/propertyintpaireditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYINTPAIREDITOR_H diff --git a/ui/propertyeditor/propertymargineditor.cpp b/ui/propertyeditor/propertymargineditor.cpp index a0e796ae3e..7f6a3c78a5 100644 --- a/ui/propertyeditor/propertymargineditor.cpp +++ b/ui/propertyeditor/propertymargineditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertymargineditor.h" diff --git a/ui/propertyeditor/propertymargineditor.h b/ui/propertyeditor/propertymargineditor.h index e7a5618d73..e5785d4a9a 100644 --- a/ui/propertyeditor/propertymargineditor.h +++ b/ui/propertyeditor/propertymargineditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Waqar Ahmed - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyeditor/propertyextendededitor.h" diff --git a/ui/propertyeditor/propertymatrixdialog.cpp b/ui/propertyeditor/propertymatrixdialog.cpp index 2cd99e0183..3106a7ab0b 100644 --- a/ui/propertyeditor/propertymatrixdialog.cpp +++ b/ui/propertyeditor/propertymatrixdialog.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertymatrixdialog.h" diff --git a/ui/propertyeditor/propertymatrixdialog.h b/ui/propertyeditor/propertymatrixdialog.h index bd7eee556a..331ccd8c01 100644 --- a/ui/propertyeditor/propertymatrixdialog.h +++ b/ui/propertyeditor/propertymatrixdialog.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYMATRIXDIALOG_H diff --git a/ui/propertyeditor/propertymatrixeditor.cpp b/ui/propertyeditor/propertymatrixeditor.cpp index 01d80bb5d6..898b5ccc3a 100644 --- a/ui/propertyeditor/propertymatrixeditor.cpp +++ b/ui/propertyeditor/propertymatrixeditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertymatrixeditor.h" diff --git a/ui/propertyeditor/propertymatrixeditor.h b/ui/propertyeditor/propertymatrixeditor.h index 4f43ce7a3e..dc02ea1b97 100644 --- a/ui/propertyeditor/propertymatrixeditor.h +++ b/ui/propertyeditor/propertymatrixeditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYMATRIXEDITOR_H diff --git a/ui/propertyeditor/propertymatrixmodel.cpp b/ui/propertyeditor/propertymatrixmodel.cpp index c5d41de908..a9a380610e 100644 --- a/ui/propertyeditor/propertymatrixmodel.cpp +++ b/ui/propertyeditor/propertymatrixmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertymatrixmodel.h" diff --git a/ui/propertyeditor/propertymatrixmodel.h b/ui/propertyeditor/propertymatrixmodel.h index 015ce0d49c..abd6a1844d 100644 --- a/ui/propertyeditor/propertymatrixmodel.h +++ b/ui/propertyeditor/propertymatrixmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Tobias Koenig - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYMATRIXMODEL_H diff --git a/ui/propertyeditor/propertypaletteeditor.cpp b/ui/propertyeditor/propertypaletteeditor.cpp index 70949f4848..40537cbf43 100644 --- a/ui/propertyeditor/propertypaletteeditor.cpp +++ b/ui/propertyeditor/propertypaletteeditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertypaletteeditor.h" diff --git a/ui/propertyeditor/propertypaletteeditor.h b/ui/propertyeditor/propertypaletteeditor.h index 8f672281f0..c60047b9cf 100644 --- a/ui/propertyeditor/propertypaletteeditor.h +++ b/ui/propertyeditor/propertypaletteeditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2012-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYPALETTEEDITOR_H diff --git a/ui/propertyeditor/propertyrecteditor.cpp b/ui/propertyeditor/propertyrecteditor.cpp index 175c539f49..3f6adec452 100644 --- a/ui/propertyeditor/propertyrecteditor.cpp +++ b/ui/propertyeditor/propertyrecteditor.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertyrecteditor.h" diff --git a/ui/propertyeditor/propertyrecteditor.h b/ui/propertyeditor/propertyrecteditor.h index 959203ec40..7b851405b6 100644 --- a/ui/propertyeditor/propertyrecteditor.h +++ b/ui/propertyeditor/propertyrecteditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Hannah von Reth - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef PROPERTYRECTEDITOR_H diff --git a/ui/propertyeditor/propertytexteditor.cpp b/ui/propertyeditor/propertytexteditor.cpp index cad6a5be6f..92df419853 100644 --- a/ui/propertyeditor/propertytexteditor.cpp +++ b/ui/propertyeditor/propertytexteditor.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertytexteditor.h" diff --git a/ui/propertyeditor/propertytexteditor.h b/ui/propertyeditor/propertytexteditor.h index e78a065442..6a8a602572 100644 --- a/ui/propertyeditor/propertytexteditor.h +++ b/ui/propertyeditor/propertytexteditor.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYTEXTEDITOR_H diff --git a/ui/propertywidget.cpp b/ui/propertywidget.cpp index 0f8e0cc909..cd00b0cc31 100644 --- a/ui/propertywidget.cpp +++ b/ui/propertywidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertywidget.h" diff --git a/ui/propertywidget.h b/ui/propertywidget.h index 6abf1b76d2..1e11eb1fb3 100644 --- a/ui/propertywidget.h +++ b/ui/propertywidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTYWIDGET_H diff --git a/ui/propertywidgettab.cpp b/ui/propertywidgettab.cpp index 2370a94240..dc86436f75 100644 --- a/ui/propertywidgettab.cpp +++ b/ui/propertywidgettab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertywidgettab.h" diff --git a/ui/propertywidgettab.h b/ui/propertywidgettab.h index d77d1c7791..4e1bcc4c60 100644 --- a/ui/propertywidgettab.h +++ b/ui/propertywidgettab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef PROPERTYWIDGETTAB_H diff --git a/ui/proxytooluifactory.cpp b/ui/proxytooluifactory.cpp index 717f1019ad..51bf39b804 100644 --- a/ui/proxytooluifactory.cpp +++ b/ui/proxytooluifactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "proxytooluifactory.h" diff --git a/ui/proxytooluifactory.h b/ui/proxytooluifactory.h index 0ee16406e9..6c2867d5bd 100644 --- a/ui/proxytooluifactory.h +++ b/ui/proxytooluifactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2011-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROXYTOOLUIFACTORY_H diff --git a/ui/remoteviewwidget.cpp b/ui/remoteviewwidget.cpp index dc27bca086..60c433e919 100644 --- a/ui/remoteviewwidget.cpp +++ b/ui/remoteviewwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "remoteviewwidget.h" diff --git a/ui/remoteviewwidget.h b/ui/remoteviewwidget.h index 9fb6977543..f4f2b8e1dd 100644 --- a/ui/remoteviewwidget.h +++ b/ui/remoteviewwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_REMOTEVIEWWIDGET_H diff --git a/ui/resources/CMakeLists.txt b/ui/resources/CMakeLists.txt index 8b5f08dc7a..3a91e9a040 100644 --- a/ui/resources/CMakeLists.txt +++ b/ui/resources/CMakeLists.txt @@ -2,12 +2,9 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. -# -# Contact info@kdab.com if any conditions of this licensing are not clear to you. +# Contact KDAB at for commercial licensing options. # # See https://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html if(UNIX diff --git a/ui/resources/gammaray/ui/light/pixmaps/GammaRay-logo-small.png b/ui/resources/gammaray/ui/light/pixmaps/GammaRay-logo-small.png new file mode 100644 index 0000000000..a6fd26ce8a Binary files /dev/null and b/ui/resources/gammaray/ui/light/pixmaps/GammaRay-logo-small.png differ diff --git a/ui/resources/gammaray/update_icon_sets.sh b/ui/resources/gammaray/update_icon_sets.sh index e3846292d6..170641c3d7 100644 --- a/ui/resources/gammaray/update_icon_sets.sh +++ b/ui/resources/gammaray/update_icon_sets.sh @@ -2,14 +2,10 @@ # # SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company # -# SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay +# SPDX-License-Identifier: GPL-2.0-or-later # -# Licensees holding valid commercial KDAB GammaRay licenses may use this file in -# accordance with GammaRay Commercial License Agreement provided with the Software. +# Contact KDAB at for commercial licensing options. # -# Contact info@kdab.com if any conditions of this licensing are not clear to you. -# -#!/bin/bash -e # This script will create or update icon sets for macOS (icns) and windows (ico) at the same time (if possible). # This script can be run anywhere bash/imagemagick is installed on (Windows with linux subsystem, unix...) but diff --git a/ui/searchlinecontroller.cpp b/ui/searchlinecontroller.cpp index d02b190e8d..febc4e41a9 100644 --- a/ui/searchlinecontroller.cpp +++ b/ui/searchlinecontroller.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "searchlinecontroller.h" diff --git a/ui/searchlinecontroller.h b/ui/searchlinecontroller.h index d3356bf59e..2b7208554f 100644 --- a/ui/searchlinecontroller.h +++ b/ui/searchlinecontroller.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SEARCHLINECONTROLLER_H diff --git a/ui/sidepane.cpp b/ui/sidepane.cpp index 5e93b07d29..b5de4d3617 100644 --- a/ui/sidepane.cpp +++ b/ui/sidepane.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "sidepane.h" diff --git a/ui/sidepane.h b/ui/sidepane.h index d125ab0b93..e394b7d99a 100644 --- a/ui/sidepane.h +++ b/ui/sidepane.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SIDEPANE_H diff --git a/ui/splashscreen.cpp b/ui/splashscreen.cpp index 221c96be63..d977ced3fa 100644 --- a/ui/splashscreen.cpp +++ b/ui/splashscreen.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "splashscreen.h" diff --git a/ui/splashscreen.h b/ui/splashscreen.h index f2962e42dc..23596034f4 100644 --- a/ui/splashscreen.h +++ b/ui/splashscreen.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_SPLASHSCREEN_H diff --git a/ui/themedimagelabel.cpp b/ui/themedimagelabel.cpp index d41eb210e8..66f3cf279d 100644 --- a/ui/themedimagelabel.cpp +++ b/ui/themedimagelabel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "themedimagelabel.h" diff --git a/ui/themedimagelabel.h b/ui/themedimagelabel.h index cc3f515630..9391f4ee9b 100644 --- a/ui/themedimagelabel.h +++ b/ui/themedimagelabel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_THEMEDIMAGELABEL_H diff --git a/ui/tools/messagehandler/messagedisplaymodel.cpp b/ui/tools/messagehandler/messagedisplaymodel.cpp index 83b1e13b03..dab4025d2e 100644 --- a/ui/tools/messagehandler/messagedisplaymodel.cpp +++ b/ui/tools/messagehandler/messagedisplaymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagedisplaymodel.h" diff --git a/ui/tools/messagehandler/messagedisplaymodel.h b/ui/tools/messagehandler/messagedisplaymodel.h index 57bb550c3f..1fac14f369 100644 --- a/ui/tools/messagehandler/messagedisplaymodel.h +++ b/ui/tools/messagehandler/messagedisplaymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEDISPLAYMODEL_H diff --git a/ui/tools/messagehandler/messagehandlerclient.cpp b/ui/tools/messagehandler/messagehandlerclient.cpp index 8c95874412..275f40136f 100644 --- a/ui/tools/messagehandler/messagehandlerclient.cpp +++ b/ui/tools/messagehandler/messagehandlerclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagehandlerclient.h" diff --git a/ui/tools/messagehandler/messagehandlerclient.h b/ui/tools/messagehandler/messagehandlerclient.h index 7ec93e7f0a..7c0fe753a0 100644 --- a/ui/tools/messagehandler/messagehandlerclient.h +++ b/ui/tools/messagehandler/messagehandlerclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEHANDLERCLIENT_H diff --git a/ui/tools/messagehandler/messagehandlerwidget.cpp b/ui/tools/messagehandler/messagehandlerwidget.cpp index fc592e4ce7..12b5629bcb 100644 --- a/ui/tools/messagehandler/messagehandlerwidget.cpp +++ b/ui/tools/messagehandler/messagehandlerwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "messagehandlerwidget.h" diff --git a/ui/tools/messagehandler/messagehandlerwidget.h b/ui/tools/messagehandler/messagehandlerwidget.h index a9cd4ddb9d..b4aad723ba 100644 --- a/ui/tools/messagehandler/messagehandlerwidget.h +++ b/ui/tools/messagehandler/messagehandlerwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_MESSAGEHANDLERWIDGET_H #define GAMMARAY_MESSAGEHANDLERWIDGET_H diff --git a/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.cpp b/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.cpp index 549cd20ddc..8f3efe43fc 100644 --- a/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.cpp +++ b/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaobjectbrowserwidget.h" diff --git a/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.h b/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.h index 2f24665861..d94e621a86 100644 --- a/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.h +++ b/ui/tools/metaobjectbrowser/metaobjectbrowserwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Kevin Funk - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECTBROWSERWIDGET_H diff --git a/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.cpp b/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.cpp index 2bf67b0060..f011e87054 100644 --- a/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.cpp +++ b/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metaobjecttreeclientproxymodel.h" diff --git a/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.h b/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.h index 14e83963c1..d81c04e514 100644 --- a/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.h +++ b/ui/tools/metaobjectbrowser/metaobjecttreeclientproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METAOBJECTTREECLIENTPROXYMODEL_H diff --git a/ui/tools/metatypebrowser/metatypebrowserclient.cpp b/ui/tools/metatypebrowser/metatypebrowserclient.cpp index 44dfaad300..7f24cea5a3 100644 --- a/ui/tools/metatypebrowser/metatypebrowserclient.cpp +++ b/ui/tools/metatypebrowser/metatypebrowserclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metatypebrowserclient.h" diff --git a/ui/tools/metatypebrowser/metatypebrowserclient.h b/ui/tools/metatypebrowser/metatypebrowserclient.h index 8e70b423a4..fd3ced261b 100644 --- a/ui/tools/metatypebrowser/metatypebrowserclient.h +++ b/ui/tools/metatypebrowser/metatypebrowserclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METATYPEBROWSERCLIENT_H diff --git a/ui/tools/metatypebrowser/metatypebrowserwidget.cpp b/ui/tools/metatypebrowser/metatypebrowserwidget.cpp index 8371d6d0ec..77096484e7 100644 --- a/ui/tools/metatypebrowser/metatypebrowserwidget.cpp +++ b/ui/tools/metatypebrowser/metatypebrowserwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metatypebrowserwidget.h" diff --git a/ui/tools/metatypebrowser/metatypebrowserwidget.h b/ui/tools/metatypebrowser/metatypebrowserwidget.h index 7345be0aed..7d7d65e115 100644 --- a/ui/tools/metatypebrowser/metatypebrowserwidget.h +++ b/ui/tools/metatypebrowser/metatypebrowserwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METATYPEBROWSERWIDGET_H diff --git a/ui/tools/metatypebrowser/metatypesclientmodel.cpp b/ui/tools/metatypebrowser/metatypesclientmodel.cpp index 88b4408f4f..b42ed9816d 100644 --- a/ui/tools/metatypebrowser/metatypesclientmodel.cpp +++ b/ui/tools/metatypebrowser/metatypesclientmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "metatypesclientmodel.h" diff --git a/ui/tools/metatypebrowser/metatypesclientmodel.h b/ui/tools/metatypebrowser/metatypesclientmodel.h index 6c116c3002..f0c3fc8600 100644 --- a/ui/tools/metatypebrowser/metatypesclientmodel.h +++ b/ui/tools/metatypebrowser/metatypesclientmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METATYPESCLIENTMODEL_H diff --git a/ui/tools/objectinspector/applicationattributetab.cpp b/ui/tools/objectinspector/applicationattributetab.cpp index 8a421966e4..81c87ab8f6 100644 --- a/ui/tools/objectinspector/applicationattributetab.cpp +++ b/ui/tools/objectinspector/applicationattributetab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "applicationattributetab.h" diff --git a/ui/tools/objectinspector/applicationattributetab.h b/ui/tools/objectinspector/applicationattributetab.h index e82568f5e5..95075689e0 100644 --- a/ui/tools/objectinspector/applicationattributetab.h +++ b/ui/tools/objectinspector/applicationattributetab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_APPLICATIONATTRIBUTETAB_H diff --git a/ui/tools/objectinspector/bindingtab.cpp b/ui/tools/objectinspector/bindingtab.cpp index eeb12551ee..8d166dafe6 100644 --- a/ui/tools/objectinspector/bindingtab.cpp +++ b/ui/tools/objectinspector/bindingtab.cpp @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ // Own diff --git a/ui/tools/objectinspector/bindingtab.h b/ui/tools/objectinspector/bindingtab.h index e7007e694a..b6b11a0c42 100644 --- a/ui/tools/objectinspector/bindingtab.h +++ b/ui/tools/objectinspector/bindingtab.h @@ -5,12 +5,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_BINDINGTAB_H diff --git a/ui/tools/objectinspector/classinfotab.cpp b/ui/tools/objectinspector/classinfotab.cpp index 1d47c4d67a..732777d8bf 100644 --- a/ui/tools/objectinspector/classinfotab.cpp +++ b/ui/tools/objectinspector/classinfotab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "classinfotab.h" diff --git a/ui/tools/objectinspector/classinfotab.h b/ui/tools/objectinspector/classinfotab.h index 661222120a..bc26f35930 100644 --- a/ui/tools/objectinspector/classinfotab.h +++ b/ui/tools/objectinspector/classinfotab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef CLASSINFOTAB_H diff --git a/ui/tools/objectinspector/clientmethodmodel.cpp b/ui/tools/objectinspector/clientmethodmodel.cpp index fa4d22d2bf..90d85d8e1a 100644 --- a/ui/tools/objectinspector/clientmethodmodel.cpp +++ b/ui/tools/objectinspector/clientmethodmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientmethodmodel.h" diff --git a/ui/tools/objectinspector/clientmethodmodel.h b/ui/tools/objectinspector/clientmethodmodel.h index c05f4164c0..6ea986031a 100644 --- a/ui/tools/objectinspector/clientmethodmodel.h +++ b/ui/tools/objectinspector/clientmethodmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTMETHODMODEL_H diff --git a/ui/tools/objectinspector/connectionsclientproxymodel.cpp b/ui/tools/objectinspector/connectionsclientproxymodel.cpp index 1c202097a6..94a89bf60f 100644 --- a/ui/tools/objectinspector/connectionsclientproxymodel.cpp +++ b/ui/tools/objectinspector/connectionsclientproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "connectionsclientproxymodel.h" diff --git a/ui/tools/objectinspector/connectionsclientproxymodel.h b/ui/tools/objectinspector/connectionsclientproxymodel.h index e23d3bf779..ae3387a480 100644 --- a/ui/tools/objectinspector/connectionsclientproxymodel.h +++ b/ui/tools/objectinspector/connectionsclientproxymodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CONNECTIONSCLIENTPROXYMODEL_H diff --git a/ui/tools/objectinspector/connectionsextensionclient.cpp b/ui/tools/objectinspector/connectionsextensionclient.cpp index 6c005cf0af..5599d38849 100644 --- a/ui/tools/objectinspector/connectionsextensionclient.cpp +++ b/ui/tools/objectinspector/connectionsextensionclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "connectionsextensionclient.h" diff --git a/ui/tools/objectinspector/connectionsextensionclient.h b/ui/tools/objectinspector/connectionsextensionclient.h index dda757c13c..85318369ff 100644 --- a/ui/tools/objectinspector/connectionsextensionclient.h +++ b/ui/tools/objectinspector/connectionsextensionclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CONNECTIONSEXTENSIONCLIENT_H diff --git a/ui/tools/objectinspector/connectionstab.cpp b/ui/tools/objectinspector/connectionstab.cpp index 669ef29fd0..c9b794bfcd 100644 --- a/ui/tools/objectinspector/connectionstab.cpp +++ b/ui/tools/objectinspector/connectionstab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "connectionstab.h" diff --git a/ui/tools/objectinspector/connectionstab.h b/ui/tools/objectinspector/connectionstab.h index 60c918903d..f043fb745b 100644 --- a/ui/tools/objectinspector/connectionstab.h +++ b/ui/tools/objectinspector/connectionstab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CONNECTIONSTAB_H diff --git a/ui/tools/objectinspector/enumstab.cpp b/ui/tools/objectinspector/enumstab.cpp index 70dcd700f6..a7c46b7684 100644 --- a/ui/tools/objectinspector/enumstab.cpp +++ b/ui/tools/objectinspector/enumstab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "enumstab.h" @@ -20,8 +17,7 @@ #include #include - -#include "kde/krecursivefilterproxymodel.h" +#include #include @@ -40,7 +36,7 @@ EnumsTab::~EnumsTab() = default; void EnumsTab::setObjectBaseName(const QString &baseName) { - QSortFilterProxyModel *proxy = new KRecursiveFilterProxyModel(this); + QSortFilterProxyModel *proxy = new RecursiveProxyModelBase(this); proxy->setDynamicSortFilter(true); proxy->setSourceModel(ObjectBroker::model(baseName + '.' + "enums")); m_ui->enumView->setModel(proxy); diff --git a/ui/tools/objectinspector/enumstab.h b/ui/tools/objectinspector/enumstab.h index 741309beb1..2f43543699 100644 --- a/ui/tools/objectinspector/enumstab.h +++ b/ui/tools/objectinspector/enumstab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef ENUMSTAB_H diff --git a/ui/tools/objectinspector/methodsextensionclient.cpp b/ui/tools/objectinspector/methodsextensionclient.cpp index 2cae584b8b..b776d9369d 100644 --- a/ui/tools/objectinspector/methodsextensionclient.cpp +++ b/ui/tools/objectinspector/methodsextensionclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "methodsextensionclient.h" diff --git a/ui/tools/objectinspector/methodsextensionclient.h b/ui/tools/objectinspector/methodsextensionclient.h index b8a82ab995..6dadf621d9 100644 --- a/ui/tools/objectinspector/methodsextensionclient.h +++ b/ui/tools/objectinspector/methodsextensionclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_METHODSEXTENSIONCLIENT_H diff --git a/ui/tools/objectinspector/methodstab.cpp b/ui/tools/objectinspector/methodstab.cpp index 1d2caec809..3a110c56b7 100644 --- a/ui/tools/objectinspector/methodstab.cpp +++ b/ui/tools/objectinspector/methodstab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "methodstab.h" diff --git a/ui/tools/objectinspector/methodstab.h b/ui/tools/objectinspector/methodstab.h index bb3dcc05b9..62513aa7e4 100644 --- a/ui/tools/objectinspector/methodstab.h +++ b/ui/tools/objectinspector/methodstab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef METHODSTAB_H diff --git a/ui/tools/objectinspector/objectinspectorwidget.cpp b/ui/tools/objectinspector/objectinspectorwidget.cpp index 9e9d66d433..43f9936edc 100644 --- a/ui/tools/objectinspector/objectinspectorwidget.cpp +++ b/ui/tools/objectinspector/objectinspectorwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "objectinspectorwidget.h" diff --git a/ui/tools/objectinspector/objectinspectorwidget.h b/ui/tools/objectinspector/objectinspectorwidget.h index 258c29781a..2d0d6dd12e 100644 --- a/ui/tools/objectinspector/objectinspectorwidget.h +++ b/ui/tools/objectinspector/objectinspectorwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_OBJECTINSPECTOR_OBJECTINSPECTORWIDGET_H diff --git a/ui/tools/objectinspector/propertiesextensionclient.cpp b/ui/tools/objectinspector/propertiesextensionclient.cpp index 7f49a0eb80..88add69818 100644 --- a/ui/tools/objectinspector/propertiesextensionclient.cpp +++ b/ui/tools/objectinspector/propertiesextensionclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertiesextensionclient.h" diff --git a/ui/tools/objectinspector/propertiesextensionclient.h b/ui/tools/objectinspector/propertiesextensionclient.h index e50feb5091..75d867964e 100644 --- a/ui/tools/objectinspector/propertiesextensionclient.h +++ b/ui/tools/objectinspector/propertiesextensionclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROPERTIESEXTENSIONCLIENT_H diff --git a/ui/tools/objectinspector/propertiestab.cpp b/ui/tools/objectinspector/propertiestab.cpp index a5d5ffaa5f..5ed5184613 100644 --- a/ui/tools/objectinspector/propertiestab.cpp +++ b/ui/tools/objectinspector/propertiestab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "propertiestab.h" diff --git a/ui/tools/objectinspector/propertiestab.h b/ui/tools/objectinspector/propertiestab.h index 884fc3d0f7..ab62ca1784 100644 --- a/ui/tools/objectinspector/propertiestab.h +++ b/ui/tools/objectinspector/propertiestab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef PROPERTIESTAB_H diff --git a/ui/tools/objectinspector/stacktracetab.cpp b/ui/tools/objectinspector/stacktracetab.cpp index 478de4ec6a..18b0b928d4 100644 --- a/ui/tools/objectinspector/stacktracetab.cpp +++ b/ui/tools/objectinspector/stacktracetab.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "stacktracetab.h" diff --git a/ui/tools/objectinspector/stacktracetab.h b/ui/tools/objectinspector/stacktracetab.h index f235212f3b..5993dd9695 100644 --- a/ui/tools/objectinspector/stacktracetab.h +++ b/ui/tools/objectinspector/stacktracetab.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_STACKTRACETAB_H diff --git a/ui/tools/problemreporter/problemclientmodel.cpp b/ui/tools/problemreporter/problemclientmodel.cpp index 6a66071e36..b63d4b001e 100644 --- a/ui/tools/problemreporter/problemclientmodel.cpp +++ b/ui/tools/problemreporter/problemclientmodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "problemclientmodel.h" diff --git a/ui/tools/problemreporter/problemclientmodel.h b/ui/tools/problemreporter/problemclientmodel.h index 26abed805e..ddc1c6ceb1 100644 --- a/ui/tools/problemreporter/problemclientmodel.h +++ b/ui/tools/problemreporter/problemclientmodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMCLIENTMODEL_H diff --git a/ui/tools/problemreporter/problemreporterclient.cpp b/ui/tools/problemreporter/problemreporterclient.cpp index 253e34e320..345ce559a4 100644 --- a/ui/tools/problemreporter/problemreporterclient.cpp +++ b/ui/tools/problemreporter/problemreporterclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "problemreporterclient.h" diff --git a/ui/tools/problemreporter/problemreporterclient.h b/ui/tools/problemreporter/problemreporterclient.h index 2432619ecf..1416397462 100644 --- a/ui/tools/problemreporter/problemreporterclient.h +++ b/ui/tools/problemreporter/problemreporterclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMREPORTERCLIENT_H diff --git a/ui/tools/problemreporter/problemreporterwidget.cpp b/ui/tools/problemreporter/problemreporterwidget.cpp index 7560c335a0..d9e20e79e0 100644 --- a/ui/tools/problemreporter/problemreporterwidget.cpp +++ b/ui/tools/problemreporter/problemreporterwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "problemreporterwidget.h" diff --git a/ui/tools/problemreporter/problemreporterwidget.h b/ui/tools/problemreporter/problemreporterwidget.h index c850754c77..72feadb21c 100644 --- a/ui/tools/problemreporter/problemreporterwidget.h +++ b/ui/tools/problemreporter/problemreporterwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2018-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_PROBLEMREPORTERWIDGET_H diff --git a/ui/tools/resourcebrowser/clientresourcemodel.cpp b/ui/tools/resourcebrowser/clientresourcemodel.cpp index b241bf458e..9b6d9a6c29 100644 --- a/ui/tools/resourcebrowser/clientresourcemodel.cpp +++ b/ui/tools/resourcebrowser/clientresourcemodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "clientresourcemodel.h" diff --git a/ui/tools/resourcebrowser/clientresourcemodel.h b/ui/tools/resourcebrowser/clientresourcemodel.h index 620208b556..da91d837f3 100644 --- a/ui/tools/resourcebrowser/clientresourcemodel.h +++ b/ui/tools/resourcebrowser/clientresourcemodel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_CLIENTRESOURCEMODEL_H diff --git a/ui/tools/resourcebrowser/resourcebrowserclient.cpp b/ui/tools/resourcebrowser/resourcebrowserclient.cpp index 9c1aadfe54..17a2e6f0ce 100644 --- a/ui/tools/resourcebrowser/resourcebrowserclient.cpp +++ b/ui/tools/resourcebrowser/resourcebrowserclient.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "resourcebrowserclient.h" diff --git a/ui/tools/resourcebrowser/resourcebrowserclient.h b/ui/tools/resourcebrowser/resourcebrowserclient.h index f82a307bf2..1971aeeb88 100644 --- a/ui/tools/resourcebrowser/resourcebrowserclient.h +++ b/ui/tools/resourcebrowser/resourcebrowserclient.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2013-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Milian Wolff - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef RESOURCEBROWSERCLIENT_H diff --git a/ui/tools/resourcebrowser/resourcebrowserwidget.cpp b/ui/tools/resourcebrowser/resourcebrowserwidget.cpp index a490efa149..1922268868 100644 --- a/ui/tools/resourcebrowser/resourcebrowserwidget.cpp +++ b/ui/tools/resourcebrowser/resourcebrowserwidget.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "resourcebrowserwidget.h" diff --git a/ui/tools/resourcebrowser/resourcebrowserwidget.h b/ui/tools/resourcebrowser/resourcebrowserwidget.h index 5ab07a570d..eceebe8139 100644 --- a/ui/tools/resourcebrowser/resourcebrowserwidget.h +++ b/ui/tools/resourcebrowser/resourcebrowserwidget.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Stephen Kelly - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_RESOURCEBROWSER_RESOURCEBROWSERWIDGET_H diff --git a/ui/tooluifactory.cpp b/ui/tooluifactory.cpp index 9adc9fa9d3..2cc5479eda 100644 --- a/ui/tooluifactory.cpp +++ b/ui/tooluifactory.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "tooluifactory.h" diff --git a/ui/tooluifactory.h b/ui/tooluifactory.h index 1f26718fd7..10efb2f968 100644 --- a/ui/tooluifactory.h +++ b/ui/tooluifactory.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Volker Krause - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_TOOLUIFACTORY_H diff --git a/ui/trailingcolorlabel.cpp b/ui/trailingcolorlabel.cpp index 5c31b54229..50c7423c5a 100644 --- a/ui/trailingcolorlabel.cpp +++ b/ui/trailingcolorlabel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph Sterz - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "trailingcolorlabel.h" diff --git a/ui/trailingcolorlabel.h b/ui/trailingcolorlabel.h index 51d2cc8a23..618285cc9e 100644 --- a/ui/trailingcolorlabel.h +++ b/ui/trailingcolorlabel.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2017-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Christoph Sterz - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef TRAILINGCOLORLABEL_H diff --git a/ui/uiintegration.cpp b/ui/uiintegration.cpp index 250cd36c12..d1fd384694 100644 --- a/ui/uiintegration.cpp +++ b/ui/uiintegration.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "uiintegration.h" diff --git a/ui/uiintegration.h b/ui/uiintegration.h index be507563ed..7d53508c33 100644 --- a/ui/uiintegration.h +++ b/ui/uiintegration.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2015-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Anton Kreuzkamp - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef UIINTEGRATION_H diff --git a/ui/uiresources.cpp b/ui/uiresources.cpp index ec5ab632df..4f1bd9b301 100644 --- a/ui/uiresources.cpp +++ b/ui/uiresources.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "uiresources.h" diff --git a/ui/uiresources.h b/ui/uiresources.h index dfb2e4bdb9..2f14e5b635 100644 --- a/ui/uiresources.h +++ b/ui/uiresources.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2014-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_UIRESOURCES_H diff --git a/ui/uistatemanager.cpp b/ui/uistatemanager.cpp index 45d4b783bf..07c12ae917 100644 --- a/ui/uistatemanager.cpp +++ b/ui/uistatemanager.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include "uistatemanager.h" diff --git a/ui/uistatemanager.h b/ui/uistatemanager.h index 87100b480e..267dc2f815 100644 --- a/ui/uistatemanager.h +++ b/ui/uistatemanager.h @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2016-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Filipe Azevedo - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef UISTATEMANAGER_H diff --git a/ui/visibilityfilterproxymodel.cpp b/ui/visibilityfilterproxymodel.cpp index 8f5947c616..9bd2f6a901 100644 --- a/ui/visibilityfilterproxymodel.cpp +++ b/ui/visibilityfilterproxymodel.cpp @@ -6,12 +6,9 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Manfred Tonch - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #include @@ -22,7 +19,7 @@ using namespace GammaRay; VisibilityFilterProxyModel::VisibilityFilterProxyModel(QObject *parent) - : KRecursiveFilterProxyModel(parent) + : RecursiveProxyModelBase(parent) , m_hideItems(true) , m_flagRole(0) , m_invisibleMask(0) @@ -48,7 +45,7 @@ bool VisibilityFilterProxyModel::acceptRow(int source_row, const QModelIndex &so return false; } - return KRecursiveFilterProxyModel::acceptRow(source_row, source_parent); + return RecursiveProxyModelBase::acceptRow(source_row, source_parent); } void VisibilityFilterProxyModel::setHideItems(bool hideItems) diff --git a/ui/visibilityfilterproxymodel.h b/ui/visibilityfilterproxymodel.h index ede6a76e7b..df0de6a322 100644 --- a/ui/visibilityfilterproxymodel.h +++ b/ui/visibilityfilterproxymodel.h @@ -6,28 +6,25 @@ SPDX-FileCopyrightText: 2010-2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Manfred Tonch - SPDX-License-Identifier: GPL-2.0-or-later OR LicenseRef-KDAB-GammaRay + SPDX-License-Identifier: GPL-2.0-or-later - Licensees holding valid commercial KDAB GammaRay licenses may use this file in - accordance with GammaRay Commercial License Agreement provided with the Software. - - Contact info@kdab.com if any conditions of this licensing are not clear to you. + Contact KDAB at for commercial licensing options. */ #ifndef GAMMARAY_VISIBILITYFILTERPROXYMODEL_H #define GAMMARAY_VISIBILITYFILTERPROXYMODEL_H #include "gammaray_common_export.h" -#include "3rdparty/kde/krecursivefilterproxymodel.h" +#include "common/recursiveproxymodelbase.h" namespace GammaRay { /** - * @brief A KRecursiveFilterProxyModel for ObjectIds. + * @brief A RecursiveFilterProxyModel for ObjectIds. * * Filter in and sort according to the objects list. */ -class VisibilityFilterProxyModel : public KRecursiveFilterProxyModel +class VisibilityFilterProxyModel : public RecursiveProxyModelBase { Q_OBJECT