diff --git a/buildscripts/packaging/Linux+BSD/SetupAppImagePackaging.cmake b/buildscripts/packaging/Linux+BSD/SetupAppImagePackaging.cmake index 51e1da4504..b81c1b7ac5 100644 --- a/buildscripts/packaging/Linux+BSD/SetupAppImagePackaging.cmake +++ b/buildscripts/packaging/Linux+BSD/SetupAppImagePackaging.cmake @@ -15,7 +15,7 @@ if(MUSE_APP_UNSTABLE) set(DESKTOP_LAUNCHER_NAME "MU ${MUSE_APP_VERSION_MAJ_MIN}") # Muse X.Y else(MUSE_APP_UNSTABLE) # Use full name for stable releases - set(DESKTOP_LAUNCHER_NAME "${MUSE_APP_TITLE} ${MUSE_APP_VERSION_MAJ_MIN}") # Muse X.Y + set(DESKTOP_LAUNCHER_NAME "${MUSE_APP_NAME_HUMAN_READABLE} ${MUSE_APP_VERSION_MAJ_MIN}") # Muse X.Y endif(MUSE_APP_UNSTABLE) if(${MUSE_APP_INSTALL_SUFFIX} MATCHES "dev") @@ -62,9 +62,9 @@ endif(${MUSE_APP_INSTALL_SUFFIX} MATCHES "portable") # and icon in the OS dock / taskbar. Run `xprop WM_CLASS` and click on # App's main window to find out what string to use here. if(MUSE_APP_UNSTABLE) - set(WINDOW_MANAGER_CLASS "${MUSE_APP_NAME_MACHINE_READABLE_COMPAT}${MUSE_APP_VERSION_MAJOR}Development") + set(WINDOW_MANAGER_CLASS "${MUSE_APP_NAME_MACHINE_READABLE}${MUSE_APP_VERSION_MAJOR}Development") else() - set(WINDOW_MANAGER_CLASS "${MUSE_APP_NAME_MACHINE_READABLE_COMPAT}${MUSE_APP_VERSION_MAJOR}") + set(WINDOW_MANAGER_CLASS "${MUSE_APP_NAME_MACHINE_READABLE}${MUSE_APP_VERSION_MAJOR}") endif() # Install desktop file (perform variable substitution first) diff --git a/buildscripts/packaging/Windows/PortableApps/appinfo.ini.in b/buildscripts/packaging/Windows/PortableApps/appinfo.ini.in index 2bb9c1c994..b303b6bb5f 100644 --- a/buildscripts/packaging/Windows/PortableApps/appinfo.ini.in +++ b/buildscripts/packaging/Windows/PortableApps/appinfo.ini.in @@ -9,7 +9,7 @@ Publisher=MuseScore Limited and Others Homepage=PortableApps.com/MuseScorePortable Donate=musescore.org/donate Category=Music & Video -Description=MuseScore Portable is the free MuseScore music composition & notation program packaged with a PortableApps.com Launcher as a portable app. +Description=MuseScore Portable is the free MuseScore Studio music composition & notation program packaged with a PortableApps.com Launcher as a portable app. Language=Multilingual [License] diff --git a/buildscripts/packaging/Windows/SetupWindowsPackaging.cmake b/buildscripts/packaging/Windows/SetupWindowsPackaging.cmake index eb2db4d64b..26cf8235cb 100644 --- a/buildscripts/packaging/Windows/SetupWindowsPackaging.cmake +++ b/buildscripts/packaging/Windows/SetupWindowsPackaging.cmake @@ -6,7 +6,7 @@ endif() include(InstallRequiredSystemLibraries) -set(CPACK_PACKAGE_NAME ${MUSE_APP_NAME}) +set(CPACK_PACKAGE_NAME ${MUSE_APP_NAME_MACHINE_READABLE}) set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MuseScore is a full featured WYSIWYG score editor") set(CPACK_PACKAGE_VENDOR "MuseScore Limited") set(CPACK_PACKAGE_CONTACT "https://musescore.org") @@ -38,12 +38,13 @@ if(MUSE_APP_UNSTABLE) endif() endif(MUSE_APP_UNSTABLE) -set(CPACK_PACKAGE_FILE_NAME "${MUSE_APP_NAME}-${MUSE_APP_VERSION}${git_date_string}") -set(CPACK_PACKAGE_INSTALL_DIRECTORY ${MUSE_APP_NAME_VERSION}) +set(MUSESCORE_EXECUTABLE_NAME ${MUSE_APP_NAME_MACHINE_READABLE}${MUSE_APP_VERSION_MAJOR}) -set(MUSESCORE_EXECUTABLE_NAME ${MUSE_APP_NAME}${MUSE_APP_VERSION_MAJOR}) -set(CPACK_PACKAGE_EXECUTABLES "${MUSESCORE_EXECUTABLE_NAME}" "${MUSE_APP_TITLE_VERSION}") # exe name, label -set(CPACK_CREATE_DESKTOP_LINKS "${MUSESCORE_EXECUTABLE_NAME}" "${MUSE_APP_TITLE_VERSION}") # exe name, label +set(CPACK_PACKAGE_FILE_NAME "${MUSE_APP_NAME_MACHINE_READABLE}-${MUSE_APP_VERSION}${git_date_string}") +set(CPACK_PACKAGE_INSTALL_DIRECTORY ${MUSESCORE_EXECUTABLE_NAME}) + +set(CPACK_PACKAGE_EXECUTABLES "${MUSESCORE_EXECUTABLE_NAME}" "${MUSE_APP_NAME_HUMAN_READABLE} ${MUSE_APP_VERSION_MAJOR}") # exe name, label +set(CPACK_CREATE_DESKTOP_LINKS "${MUSESCORE_EXECUTABLE_NAME}" "${MUSE_APP_NAME_HUMAN_READABLE} ${MUSE_APP_VERSION_MAJOR}") # exe name, label # Wix-specific options set(CPACK_GENERATOR "WIX") @@ -70,13 +71,13 @@ set(CPACK_WIX_LICENSE_RTF "${PROJECT_SOURCE_DIR}/buildscripts/packaging/Windows/ set(CPACK_WIX_PRODUCT_ICON "${PROJECT_SOURCE_DIR}/share/icons/AppIcon/MS4_AppIcon.ico") set(CPACK_WIX_UI_BANNER "${PROJECT_SOURCE_DIR}/buildscripts/packaging/Windows/Installer/installer_banner_wix.png") set(CPACK_WIX_UI_DIALOG "${PROJECT_SOURCE_DIR}/buildscripts/packaging/Windows/Installer/installer_background_wix.png") -set(CPACK_WIX_PROGRAM_MENU_FOLDER "${MUSE_APP_TITLE_VERSION}") +set(CPACK_WIX_PROGRAM_MENU_FOLDER "${MUSE_APP_NAME_HUMAN_READABLE} ${MUSE_APP_VERSION_MAJOR}") set(CPACK_WIX_EXTENSIONS "WixUtilExtension") # Extra CPack variables list(APPEND CPACK_WIX_CANDLE_EXTRA_FLAGS - "-dMUSE_APP_TITLE_VERSION=${MUSE_APP_TITLE_VERSION}" - "-dMUSE_APP_TITLE=${MUSE_APP_TITLE}" + "-dMUSE_APP_TITLE_VERSION=${MUSE_APP_NAME_HUMAN_READABLE} ${MUSE_APP_VERSION_MAJOR}" + "-dMUSE_APP_TITLE=${MUSE_APP_NAME_HUMAN_READABLE}" "-dMUSESCORE_EXECUTABLE_NAME=${MUSESCORE_EXECUTABLE_NAME}" "-dMUSE_APP_RELEASE_CHANNEL=${MUSE_APP_RELEASE_CHANNEL}" "-dCPACK_PACKAGE_VERSION_MAJOR=${CPACK_PACKAGE_VERSION_MAJOR}" diff --git a/framework/CMakeLists.txt b/framework/CMakeLists.txt index 6291b10b79..d5ba783f90 100644 --- a/framework/CMakeLists.txt +++ b/framework/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/accessibilitymodule.cpp b/framework/accessibility/accessibilitymodule.cpp index 9089f812f5..820ae54fa2 100644 --- a/framework/accessibility/accessibilitymodule.cpp +++ b/framework/accessibility/accessibilitymodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/accessibilitymodule.h b/framework/accessibility/accessibilitymodule.h index 7fdf743b1b..639b596b3c 100644 --- a/framework/accessibility/accessibilitymodule.h +++ b/framework/accessibility/accessibilitymodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/api/accessibilityapi.cpp b/framework/accessibility/api/accessibilityapi.cpp index 1bd23ff3e6..453a8e4ed8 100644 --- a/framework/accessibility/api/accessibilityapi.cpp +++ b/framework/accessibility/api/accessibilityapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/api/accessibilityapi.h b/framework/accessibility/api/accessibilityapi.h index 3cb4180a54..fa54e2e41b 100644 --- a/framework/accessibility/api/accessibilityapi.h +++ b/framework/accessibility/api/accessibilityapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/iaccessibilitycontroller.h b/framework/accessibility/iaccessibilitycontroller.h index 9fff404685..8eda661d45 100644 --- a/framework/accessibility/iaccessibilitycontroller.h +++ b/framework/accessibility/iaccessibilitycontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/iaccessible.h b/framework/accessibility/iaccessible.h index d3c04e8b14..fba8f80261 100644 --- a/framework/accessibility/iaccessible.h +++ b/framework/accessibility/iaccessible.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessibilitycontroller.cpp b/framework/accessibility/internal/accessibilitycontroller.cpp index bfa1c32834..78a32a0da0 100644 --- a/framework/accessibility/internal/accessibilitycontroller.cpp +++ b/framework/accessibility/internal/accessibilitycontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessibilitycontroller.h b/framework/accessibility/internal/accessibilitycontroller.h index 56c1873e77..c483b0a889 100644 --- a/framework/accessibility/internal/accessibilitycontroller.h +++ b/framework/accessibility/internal/accessibilitycontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessibleiteminterface.cpp b/framework/accessibility/internal/accessibleiteminterface.cpp index 561898a14a..53f85fcb31 100644 --- a/framework/accessibility/internal/accessibleiteminterface.cpp +++ b/framework/accessibility/internal/accessibleiteminterface.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessibleiteminterface.h b/framework/accessibility/internal/accessibleiteminterface.h index d81971e16f..829a11be80 100644 --- a/framework/accessibility/internal/accessibleiteminterface.h +++ b/framework/accessibility/internal/accessibleiteminterface.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessibleobject.cpp b/framework/accessibility/internal/accessibleobject.cpp index 47de119817..31f74fc26b 100644 --- a/framework/accessibility/internal/accessibleobject.cpp +++ b/framework/accessibility/internal/accessibleobject.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessibleobject.h b/framework/accessibility/internal/accessibleobject.h index cec628ffea..a4f513d517 100644 --- a/framework/accessibility/internal/accessibleobject.h +++ b/framework/accessibility/internal/accessibleobject.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessiblestub.cpp b/framework/accessibility/internal/accessiblestub.cpp index c414dbcc91..5040d49724 100644 --- a/framework/accessibility/internal/accessiblestub.cpp +++ b/framework/accessibility/internal/accessiblestub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/accessiblestub.h b/framework/accessibility/internal/accessiblestub.h index 7e92591f36..565f00ce5e 100644 --- a/framework/accessibility/internal/accessiblestub.h +++ b/framework/accessibility/internal/accessiblestub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/qaccessibleinterfaceregister.cpp b/framework/accessibility/internal/qaccessibleinterfaceregister.cpp index dc996688ce..5ad151f8e7 100644 --- a/framework/accessibility/internal/qaccessibleinterfaceregister.cpp +++ b/framework/accessibility/internal/qaccessibleinterfaceregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/internal/qaccessibleinterfaceregister.h b/framework/accessibility/internal/qaccessibleinterfaceregister.h index dafd172346..5a1121ce9d 100644 --- a/framework/accessibility/internal/qaccessibleinterfaceregister.h +++ b/framework/accessibility/internal/qaccessibleinterfaceregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/iqaccessibleinterfaceregister.h b/framework/accessibility/iqaccessibleinterfaceregister.h index 1e5584d227..b8fc295842 100644 --- a/framework/accessibility/iqaccessibleinterfaceregister.h +++ b/framework/accessibility/iqaccessibleinterfaceregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/tests/CMakeLists.txt b/framework/accessibility/tests/CMakeLists.txt index 5c1a637421..87568852d4 100644 --- a/framework/accessibility/tests/CMakeLists.txt +++ b/framework/accessibility/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/tests/accessibilitycontroller_tests.cpp b/framework/accessibility/tests/accessibilitycontroller_tests.cpp index db7e6fd425..a15677a438 100644 --- a/framework/accessibility/tests/accessibilitycontroller_tests.cpp +++ b/framework/accessibility/tests/accessibilitycontroller_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/accessibility/tests/environment.cpp b/framework/accessibility/tests/environment.cpp index 309a5e4625..5c793d1543 100644 --- a/framework/accessibility/tests/environment.cpp +++ b/framework/accessibility/tests/environment.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/actionable.h b/framework/actions/actionable.h index 55c2defacf..5eb3dc001a 100644 --- a/framework/actions/actionable.h +++ b/framework/actions/actionable.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/actionsmodule.cpp b/framework/actions/actionsmodule.cpp index db5c25d7f8..318e01e5c4 100644 --- a/framework/actions/actionsmodule.cpp +++ b/framework/actions/actionsmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/actionsmodule.h b/framework/actions/actionsmodule.h index 0288fbc102..052d56d1ae 100644 --- a/framework/actions/actionsmodule.h +++ b/framework/actions/actionsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/actiontypes.h b/framework/actions/actiontypes.h index 2d4211da3b..1d68b96c2b 100644 --- a/framework/actions/actiontypes.h +++ b/framework/actions/actiontypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/api/dispatcherapi.cpp b/framework/actions/api/dispatcherapi.cpp index e0c80408d6..ccb315a1ec 100644 --- a/framework/actions/api/dispatcherapi.cpp +++ b/framework/actions/api/dispatcherapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/api/dispatcherapi.h b/framework/actions/api/dispatcherapi.h index 411bd157d5..5bc62327e2 100644 --- a/framework/actions/api/dispatcherapi.h +++ b/framework/actions/api/dispatcherapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/iactionsdispatcher.h b/framework/actions/iactionsdispatcher.h index 2989a41028..ba5b7d735f 100644 --- a/framework/actions/iactionsdispatcher.h +++ b/framework/actions/iactionsdispatcher.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/internal/actionsdispatcher.cpp b/framework/actions/internal/actionsdispatcher.cpp index acc6d8bd77..f9d3e43282 100644 --- a/framework/actions/internal/actionsdispatcher.cpp +++ b/framework/actions/internal/actionsdispatcher.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/internal/actionsdispatcher.h b/framework/actions/internal/actionsdispatcher.h index 3007d7b711..0433fda562 100644 --- a/framework/actions/internal/actionsdispatcher.h +++ b/framework/actions/internal/actionsdispatcher.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/tests/CMakeLists.txt b/framework/actions/tests/CMakeLists.txt index 54dc2bfb43..da9d0a9f24 100644 --- a/framework/actions/tests/CMakeLists.txt +++ b/framework/actions/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/actions/tests/mocks/actionsdispatchermock.h b/framework/actions/tests/mocks/actionsdispatchermock.h index 7e41b3688c..43470e6aa4 100644 --- a/framework/actions/tests/mocks/actionsdispatchermock.h +++ b/framework/actions/tests/mocks/actionsdispatchermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/alignmentbuffer.h b/framework/audio/common/alignmentbuffer.h index 15c30db5da..aec9d11504 100644 --- a/framework/audio/common/alignmentbuffer.h +++ b/framework/audio/common/alignmentbuffer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/audioerrors.h b/framework/audio/common/audioerrors.h index 01b910748b..750d235b89 100644 --- a/framework/audio/common/audioerrors.h +++ b/framework/audio/common/audioerrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/audiosanitizer.cpp b/framework/audio/common/audiosanitizer.cpp index 6360507ece..137252ad55 100644 --- a/framework/audio/common/audiosanitizer.cpp +++ b/framework/audio/common/audiosanitizer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/audiosanitizer.h b/framework/audio/common/audiosanitizer.h index ff623fdc48..890b469b58 100644 --- a/framework/audio/common/audiosanitizer.h +++ b/framework/audio/common/audiosanitizer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/audiothreadsecurer.cpp b/framework/audio/common/audiothreadsecurer.cpp index f9221ddc85..6683c6b416 100644 --- a/framework/audio/common/audiothreadsecurer.cpp +++ b/framework/audio/common/audiothreadsecurer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/audiothreadsecurer.h b/framework/audio/common/audiothreadsecurer.h index 84c185b725..2f89a8706a 100644 --- a/framework/audio/common/audiothreadsecurer.h +++ b/framework/audio/common/audiothreadsecurer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/audiotypes.h b/framework/audio/common/audiotypes.h index 3e92303386..1bb125e8e1 100644 --- a/framework/audio/common/audiotypes.h +++ b/framework/audio/common/audiotypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/audioutils.h b/framework/audio/common/audioutils.h index abe2b6758e..21129a0dab 100644 --- a/framework/audio/common/audioutils.h +++ b/framework/audio/common/audioutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/common/iaudiothreadsecurer.h b/framework/audio/common/iaudiothreadsecurer.h index 8a31ead4b0..4b334a3d37 100644 --- a/framework/audio/common/iaudiothreadsecurer.h +++ b/framework/audio/common/iaudiothreadsecurer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/common/rpc/irpcchannel.h b/framework/audio/common/rpc/irpcchannel.h index dbe234da01..8f5f3f33ae 100644 --- a/framework/audio/common/rpc/irpcchannel.h +++ b/framework/audio/common/rpc/irpcchannel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/rpc/platform/general/generalrpcchannel.cpp b/framework/audio/common/rpc/platform/general/generalrpcchannel.cpp index b9284a942b..09dc0b91bb 100644 --- a/framework/audio/common/rpc/platform/general/generalrpcchannel.cpp +++ b/framework/audio/common/rpc/platform/general/generalrpcchannel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/rpc/platform/general/generalrpcchannel.h b/framework/audio/common/rpc/platform/general/generalrpcchannel.h index cd7094047d..fd5d46ada1 100644 --- a/framework/audio/common/rpc/platform/general/generalrpcchannel.h +++ b/framework/audio/common/rpc/platform/general/generalrpcchannel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/rpc/platform/web/webrpcchannel.cpp b/framework/audio/common/rpc/platform/web/webrpcchannel.cpp index c677ce274f..e662949b54 100644 --- a/framework/audio/common/rpc/platform/web/webrpcchannel.cpp +++ b/framework/audio/common/rpc/platform/web/webrpcchannel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/rpc/platform/web/webrpcchannel.h b/framework/audio/common/rpc/platform/web/webrpcchannel.h index e008e529f3..f91d069235 100644 --- a/framework/audio/common/rpc/platform/web/webrpcchannel.h +++ b/framework/audio/common/rpc/platform/web/webrpcchannel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/rpc/rpcpacker.h b/framework/audio/common/rpc/rpcpacker.h index f02a13e23b..5878508827 100644 --- a/framework/audio/common/rpc/rpcpacker.h +++ b/framework/audio/common/rpc/rpcpacker.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/soundfonttypes.h b/framework/audio/common/soundfonttypes.h index 1b3b09a556..7e4cf97a6f 100644 --- a/framework/audio/common/soundfonttypes.h +++ b/framework/audio/common/soundfonttypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/common/timeposition.h b/framework/audio/common/timeposition.h index 3239996196..4722ac424c 100644 --- a/framework/audio/common/timeposition.h +++ b/framework/audio/common/timeposition.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/common/workmode.cpp b/framework/audio/common/workmode.cpp index 5961b66418..558fb4f95a 100644 --- a/framework/audio/common/workmode.cpp +++ b/framework/audio/common/workmode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/common/workmode.h b/framework/audio/common/workmode.h index e189835aa7..73787c3bb1 100644 --- a/framework/audio/common/workmode.h +++ b/framework/audio/common/workmode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/devtools/inputlag.h b/framework/audio/devtools/inputlag.h index adf5ea3e9a..2b78de7cb2 100644 --- a/framework/audio/devtools/inputlag.h +++ b/framework/audio/devtools/inputlag.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/audio/driver/platform/jack/audiodeviceslistener.cpp b/framework/audio/driver/platform/jack/audiodeviceslistener.cpp index e683fd8ee2..859970ebe1 100644 --- a/framework/audio/driver/platform/jack/audiodeviceslistener.cpp +++ b/framework/audio/driver/platform/jack/audiodeviceslistener.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/jack/audiodeviceslistener.h b/framework/audio/driver/platform/jack/audiodeviceslistener.h index 401e5b4e28..4c81d58fcd 100644 --- a/framework/audio/driver/platform/jack/audiodeviceslistener.h +++ b/framework/audio/driver/platform/jack/audiodeviceslistener.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/jack/jackaudiodriver.cpp b/framework/audio/driver/platform/jack/jackaudiodriver.cpp index eaf4fa3991..e99806ef72 100644 --- a/framework/audio/driver/platform/jack/jackaudiodriver.cpp +++ b/framework/audio/driver/platform/jack/jackaudiodriver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/jack/jackaudiodriver.h b/framework/audio/driver/platform/jack/jackaudiodriver.h index faa46e214f..0b14f354bb 100644 --- a/framework/audio/driver/platform/jack/jackaudiodriver.h +++ b/framework/audio/driver/platform/jack/jackaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/lin/alsaaudiodriver.cpp b/framework/audio/driver/platform/lin/alsaaudiodriver.cpp index 2471b19af6..056e4ba0e5 100644 --- a/framework/audio/driver/platform/lin/alsaaudiodriver.cpp +++ b/framework/audio/driver/platform/lin/alsaaudiodriver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/lin/alsaaudiodriver.h b/framework/audio/driver/platform/lin/alsaaudiodriver.h index ae753db98e..e0777cf319 100644 --- a/framework/audio/driver/platform/lin/alsaaudiodriver.h +++ b/framework/audio/driver/platform/lin/alsaaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/lin/audiodeviceslistener.cpp b/framework/audio/driver/platform/lin/audiodeviceslistener.cpp index 94bc3a732c..2e9192eaf1 100644 --- a/framework/audio/driver/platform/lin/audiodeviceslistener.cpp +++ b/framework/audio/driver/platform/lin/audiodeviceslistener.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/lin/audiodeviceslistener.h b/framework/audio/driver/platform/lin/audiodeviceslistener.h index 401e5b4e28..4c81d58fcd 100644 --- a/framework/audio/driver/platform/lin/audiodeviceslistener.h +++ b/framework/audio/driver/platform/lin/audiodeviceslistener.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/lin/pwaudiodriver.cpp b/framework/audio/driver/platform/lin/pwaudiodriver.cpp index 014658f62e..d01b321e2c 100644 --- a/framework/audio/driver/platform/lin/pwaudiodriver.cpp +++ b/framework/audio/driver/platform/lin/pwaudiodriver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/lin/pwaudiodriver.h b/framework/audio/driver/platform/lin/pwaudiodriver.h index bdc65699f9..4c801fe06a 100644 --- a/framework/audio/driver/platform/lin/pwaudiodriver.h +++ b/framework/audio/driver/platform/lin/pwaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/osx/osxaudiodriver.h b/framework/audio/driver/platform/osx/osxaudiodriver.h index d62e64aaa7..74f27aedfe 100644 --- a/framework/audio/driver/platform/osx/osxaudiodriver.h +++ b/framework/audio/driver/platform/osx/osxaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/osx/osxaudiodriver.mm b/framework/audio/driver/platform/osx/osxaudiodriver.mm index 3d60ed5e6e..79eae85c12 100644 --- a/framework/audio/driver/platform/osx/osxaudiodriver.mm +++ b/framework/audio/driver/platform/osx/osxaudiodriver.mm @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/driver/platform/web/webaudiodriver.cpp b/framework/audio/driver/platform/web/webaudiodriver.cpp index be6fc8db66..7fe345c427 100644 --- a/framework/audio/driver/platform/web/webaudiodriver.cpp +++ b/framework/audio/driver/platform/web/webaudiodriver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/web/webaudiodriver.h b/framework/audio/driver/platform/web/webaudiodriver.h index e05cfa2255..d751697825 100644 --- a/framework/audio/driver/platform/web/webaudiodriver.h +++ b/framework/audio/driver/platform/web/webaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/win/asio/asioaudiodriver.cpp b/framework/audio/driver/platform/win/asio/asioaudiodriver.cpp index 00a9ff468d..3458389031 100644 --- a/framework/audio/driver/platform/win/asio/asioaudiodriver.cpp +++ b/framework/audio/driver/platform/win/asio/asioaudiodriver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/win/asio/asioaudiodriver.h b/framework/audio/driver/platform/win/asio/asioaudiodriver.h index e5831f9a0b..dace786233 100644 --- a/framework/audio/driver/platform/win/asio/asioaudiodriver.h +++ b/framework/audio/driver/platform/win/asio/asioaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asio.cpp b/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asio.cpp index 31f53b13b7..5ef34f9560 100644 --- a/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asio.cpp +++ b/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asio.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiodrivers.cpp b/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiodrivers.cpp index e7db31b89a..adef0ed8a8 100644 --- a/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiodrivers.cpp +++ b/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiodrivers.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiolist.cpp b/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiolist.cpp index ca0373cd04..08b12e0713 100644 --- a/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiolist.cpp +++ b/framework/audio/driver/platform/win/asio/asiosdk/asiosdk_asiolist.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/win/wasapiaudiodriver.cpp b/framework/audio/driver/platform/win/wasapiaudiodriver.cpp index 498a373d88..e40bd00ddf 100644 --- a/framework/audio/driver/platform/win/wasapiaudiodriver.cpp +++ b/framework/audio/driver/platform/win/wasapiaudiodriver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/driver/platform/win/wasapiaudiodriver.h b/framework/audio/driver/platform/win/wasapiaudiodriver.h index d98408ccfd..c6781fd350 100644 --- a/framework/audio/driver/platform/win/wasapiaudiodriver.h +++ b/framework/audio/driver/platform/win/wasapiaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/enginesetup.cpp b/framework/audio/engine/enginesetup.cpp index 52fbc6ff83..6c89f4714e 100644 --- a/framework/audio/engine/enginesetup.cpp +++ b/framework/audio/engine/enginesetup.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/enginesetup.h b/framework/audio/engine/enginesetup.h index 68216e3d94..149dfbfa92 100644 --- a/framework/audio/engine/enginesetup.h +++ b/framework/audio/engine/enginesetup.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/iaudioengineconfiguration.h b/framework/audio/engine/iaudioengineconfiguration.h index f526580f8a..d7a96e64c3 100644 --- a/framework/audio/engine/iaudioengineconfiguration.h +++ b/framework/audio/engine/iaudioengineconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/iaudiosource.h b/framework/audio/engine/iaudiosource.h index a417e1095e..99091895c9 100644 --- a/framework/audio/engine/iaudiosource.h +++ b/framework/audio/engine/iaudiosource.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/ienginecontroller.h b/framework/audio/engine/ienginecontroller.h index 1f81d2db17..cf73a2794a 100644 --- a/framework/audio/engine/ienginecontroller.h +++ b/framework/audio/engine/ienginecontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/iengineplayer.h b/framework/audio/engine/iengineplayer.h index 9992c31c1d..772f73bbab 100644 --- a/framework/audio/engine/iengineplayer.h +++ b/framework/audio/engine/iengineplayer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/ifxprocessor.h b/framework/audio/engine/ifxprocessor.h index c66b82435a..cb5e78beb3 100644 --- a/framework/audio/engine/ifxprocessor.h +++ b/framework/audio/engine/ifxprocessor.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/ifxresolver.h b/framework/audio/engine/ifxresolver.h index 889ec85bf9..cc3fdc263c 100644 --- a/framework/audio/engine/ifxresolver.h +++ b/framework/audio/engine/ifxresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/abstractaudiosource.cpp b/framework/audio/engine/internal/abstractaudiosource.cpp index 4593639907..15f1808406 100644 --- a/framework/audio/engine/internal/abstractaudiosource.cpp +++ b/framework/audio/engine/internal/abstractaudiosource.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/abstractaudiosource.h b/framework/audio/engine/internal/abstractaudiosource.h index bb0b472924..4dc2790934 100644 --- a/framework/audio/engine/internal/abstractaudiosource.h +++ b/framework/audio/engine/internal/abstractaudiosource.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/abstracteventsequencer.h b/framework/audio/engine/internal/abstracteventsequencer.h index 1a5ae1c52f..d3262f330e 100644 --- a/framework/audio/engine/internal/abstracteventsequencer.h +++ b/framework/audio/engine/internal/abstracteventsequencer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audiocontext.cpp b/framework/audio/engine/internal/audiocontext.cpp index 8ee0549005..b28e4be495 100644 --- a/framework/audio/engine/internal/audiocontext.cpp +++ b/framework/audio/engine/internal/audiocontext.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audiocontext.h b/framework/audio/engine/internal/audiocontext.h index 8d5b3ca48e..9b6a7aad38 100644 --- a/framework/audio/engine/internal/audiocontext.h +++ b/framework/audio/engine/internal/audiocontext.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audioengine.cpp b/framework/audio/engine/internal/audioengine.cpp index f445b96f1f..d62048224b 100644 --- a/framework/audio/engine/internal/audioengine.cpp +++ b/framework/audio/engine/internal/audioengine.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audioengine.h b/framework/audio/engine/internal/audioengine.h index 9ef8a747cb..604f51cc8d 100644 --- a/framework/audio/engine/internal/audioengine.h +++ b/framework/audio/engine/internal/audioengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audioengineconfiguration.cpp b/framework/audio/engine/internal/audioengineconfiguration.cpp index 7906bc4316..d0240f14c9 100644 --- a/framework/audio/engine/internal/audioengineconfiguration.cpp +++ b/framework/audio/engine/internal/audioengineconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audioengineconfiguration.h b/framework/audio/engine/internal/audioengineconfiguration.h index 9c81e9cf65..42353de82e 100644 --- a/framework/audio/engine/internal/audioengineconfiguration.h +++ b/framework/audio/engine/internal/audioengineconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audiofactory.cpp b/framework/audio/engine/internal/audiofactory.cpp index f354fcf478..5081057ddf 100644 --- a/framework/audio/engine/internal/audiofactory.cpp +++ b/framework/audio/engine/internal/audiofactory.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/audiofactory.h b/framework/audio/engine/internal/audiofactory.h index b751ae2507..44f3cedb94 100644 --- a/framework/audio/engine/internal/audiofactory.h +++ b/framework/audio/engine/internal/audiofactory.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/codecs/vorbisdecoder.cpp b/framework/audio/engine/internal/codecs/vorbisdecoder.cpp index 105bd97ae5..375972f0d3 100644 --- a/framework/audio/engine/internal/codecs/vorbisdecoder.cpp +++ b/framework/audio/engine/internal/codecs/vorbisdecoder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/audio/engine/internal/codecs/vorbisdecoder.h b/framework/audio/engine/internal/codecs/vorbisdecoder.h index 8786a87df9..d44b6621a3 100644 --- a/framework/audio/engine/internal/codecs/vorbisdecoder.h +++ b/framework/audio/engine/internal/codecs/vorbisdecoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/contextplayer.cpp b/framework/audio/engine/internal/contextplayer.cpp index fe5420b215..907d4ed06b 100644 --- a/framework/audio/engine/internal/contextplayer.cpp +++ b/framework/audio/engine/internal/contextplayer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/contextplayer.h b/framework/audio/engine/internal/contextplayer.h index 1d22f91dc3..a7b55e1083 100644 --- a/framework/audio/engine/internal/contextplayer.h +++ b/framework/audio/engine/internal/contextplayer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/dsp/audiomathutils.h b/framework/audio/engine/internal/dsp/audiomathutils.h index c124696a9b..3b72028d22 100644 --- a/framework/audio/engine/internal/dsp/audiomathutils.h +++ b/framework/audio/engine/internal/dsp/audiomathutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/dsp/compressor.cpp b/framework/audio/engine/internal/dsp/compressor.cpp index 8ca2cc27be..4fcc0635ef 100644 --- a/framework/audio/engine/internal/dsp/compressor.cpp +++ b/framework/audio/engine/internal/dsp/compressor.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/dsp/compressor.h b/framework/audio/engine/internal/dsp/compressor.h index 6e3232df6e..8cdfcfbf18 100644 --- a/framework/audio/engine/internal/dsp/compressor.h +++ b/framework/audio/engine/internal/dsp/compressor.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/dsp/envelopefilterconfig.h b/framework/audio/engine/internal/dsp/envelopefilterconfig.h index a8559c213f..b0ee61a9dd 100644 --- a/framework/audio/engine/internal/dsp/envelopefilterconfig.h +++ b/framework/audio/engine/internal/dsp/envelopefilterconfig.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/dsp/limiter.cpp b/framework/audio/engine/internal/dsp/limiter.cpp index a853a6020a..cd38c45c7d 100644 --- a/framework/audio/engine/internal/dsp/limiter.cpp +++ b/framework/audio/engine/internal/dsp/limiter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/dsp/limiter.h b/framework/audio/engine/internal/dsp/limiter.h index e07049a7f6..992b07ab8e 100644 --- a/framework/audio/engine/internal/dsp/limiter.h +++ b/framework/audio/engine/internal/dsp/limiter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/enginecontroller.cpp b/framework/audio/engine/internal/enginecontroller.cpp index 76521e3f3b..16af496624 100644 --- a/framework/audio/engine/internal/enginecontroller.cpp +++ b/framework/audio/engine/internal/enginecontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/enginecontroller.h b/framework/audio/engine/internal/enginecontroller.h index e1e2622fa4..c2d3c6ecbe 100644 --- a/framework/audio/engine/internal/enginecontroller.h +++ b/framework/audio/engine/internal/enginecontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/enginerpccontroller.cpp b/framework/audio/engine/internal/enginerpccontroller.cpp index b86fe8c184..468a1c26b6 100644 --- a/framework/audio/engine/internal/enginerpccontroller.cpp +++ b/framework/audio/engine/internal/enginerpccontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/enginerpccontroller.h b/framework/audio/engine/internal/enginerpccontroller.h index 8a0b9620b7..c7fd71ba72 100644 --- a/framework/audio/engine/internal/enginerpccontroller.h +++ b/framework/audio/engine/internal/enginerpccontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/aacencoder.cpp b/framework/audio/engine/internal/export/aacencoder.cpp index 1ec34c6b46..48a3b32d6c 100644 --- a/framework/audio/engine/internal/export/aacencoder.cpp +++ b/framework/audio/engine/internal/export/aacencoder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/aacencoder.h b/framework/audio/engine/internal/export/aacencoder.h index d36562d7c9..842a0cf145 100644 --- a/framework/audio/engine/internal/export/aacencoder.h +++ b/framework/audio/engine/internal/export/aacencoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/abstractaudioencoder.h b/framework/audio/engine/internal/export/abstractaudioencoder.h index 61c3070f14..f99dfd5460 100644 --- a/framework/audio/engine/internal/export/abstractaudioencoder.h +++ b/framework/audio/engine/internal/export/abstractaudioencoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/flacencoder.cpp b/framework/audio/engine/internal/export/flacencoder.cpp index f24066b10f..1c3fc435c0 100644 --- a/framework/audio/engine/internal/export/flacencoder.cpp +++ b/framework/audio/engine/internal/export/flacencoder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/flacencoder.h b/framework/audio/engine/internal/export/flacencoder.h index bf2e8d86b9..f3a7ccb55b 100644 --- a/framework/audio/engine/internal/export/flacencoder.h +++ b/framework/audio/engine/internal/export/flacencoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/mp3encoder.cpp b/framework/audio/engine/internal/export/mp3encoder.cpp index abfc5e6acc..33a5082125 100644 --- a/framework/audio/engine/internal/export/mp3encoder.cpp +++ b/framework/audio/engine/internal/export/mp3encoder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/mp3encoder.h b/framework/audio/engine/internal/export/mp3encoder.h index dc4a71ebf1..01f22edb1c 100644 --- a/framework/audio/engine/internal/export/mp3encoder.h +++ b/framework/audio/engine/internal/export/mp3encoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/oggencoder.cpp b/framework/audio/engine/internal/export/oggencoder.cpp index d382d4bbc3..6b77b3beef 100644 --- a/framework/audio/engine/internal/export/oggencoder.cpp +++ b/framework/audio/engine/internal/export/oggencoder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/oggencoder.h b/framework/audio/engine/internal/export/oggencoder.h index bb9525962d..e3d3a9a81f 100644 --- a/framework/audio/engine/internal/export/oggencoder.h +++ b/framework/audio/engine/internal/export/oggencoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/soundtrackwriter.cpp b/framework/audio/engine/internal/export/soundtrackwriter.cpp index a3aa477d23..1ba4e8c699 100644 --- a/framework/audio/engine/internal/export/soundtrackwriter.cpp +++ b/framework/audio/engine/internal/export/soundtrackwriter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/soundtrackwriter.h b/framework/audio/engine/internal/export/soundtrackwriter.h index 2fc476cf9a..2b2c1eb473 100644 --- a/framework/audio/engine/internal/export/soundtrackwriter.h +++ b/framework/audio/engine/internal/export/soundtrackwriter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/wavencoder.cpp b/framework/audio/engine/internal/export/wavencoder.cpp index b6bf94847c..7c8754c395 100644 --- a/framework/audio/engine/internal/export/wavencoder.cpp +++ b/framework/audio/engine/internal/export/wavencoder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/export/wavencoder.h b/framework/audio/engine/internal/export/wavencoder.h index 51846987d9..5b3546697c 100644 --- a/framework/audio/engine/internal/export/wavencoder.h +++ b/framework/audio/engine/internal/export/wavencoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/abstractfxresolver.cpp b/framework/audio/engine/internal/fx/abstractfxresolver.cpp index e3d4fa2072..ef192d956f 100644 --- a/framework/audio/engine/internal/fx/abstractfxresolver.cpp +++ b/framework/audio/engine/internal/fx/abstractfxresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/abstractfxresolver.h b/framework/audio/engine/internal/fx/abstractfxresolver.h index 9e031536f4..f128c650f8 100644 --- a/framework/audio/engine/internal/fx/abstractfxresolver.h +++ b/framework/audio/engine/internal/fx/abstractfxresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/equaliser.cpp b/framework/audio/engine/internal/fx/equaliser.cpp index 97608e2ce8..337d9ad246 100644 --- a/framework/audio/engine/internal/fx/equaliser.cpp +++ b/framework/audio/engine/internal/fx/equaliser.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/equaliser.h b/framework/audio/engine/internal/fx/equaliser.h index 7d0705d850..c220a03250 100644 --- a/framework/audio/engine/internal/fx/equaliser.h +++ b/framework/audio/engine/internal/fx/equaliser.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/fxresolver.cpp b/framework/audio/engine/internal/fx/fxresolver.cpp index f207da854c..9e5ef24982 100644 --- a/framework/audio/engine/internal/fx/fxresolver.cpp +++ b/framework/audio/engine/internal/fx/fxresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/fxresolver.h b/framework/audio/engine/internal/fx/fxresolver.h index 921637350e..04fb422425 100644 --- a/framework/audio/engine/internal/fx/fxresolver.h +++ b/framework/audio/engine/internal/fx/fxresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/musefxresolver.cpp b/framework/audio/engine/internal/fx/musefxresolver.cpp index e49834a75f..a656bd9eb0 100644 --- a/framework/audio/engine/internal/fx/musefxresolver.cpp +++ b/framework/audio/engine/internal/fx/musefxresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/musefxresolver.h b/framework/audio/engine/internal/fx/musefxresolver.h index 4273a93ed8..b3c008afc6 100644 --- a/framework/audio/engine/internal/fx/musefxresolver.h +++ b/framework/audio/engine/internal/fx/musefxresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/allpassdispersion.h b/framework/audio/engine/internal/fx/reverb/allpassdispersion.h index 6759551533..e71ea69ba3 100644 --- a/framework/audio/engine/internal/fx/reverb/allpassdispersion.h +++ b/framework/audio/engine/internal/fx/reverb/allpassdispersion.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/allpassmodulateddelay.h b/framework/audio/engine/internal/fx/reverb/allpassmodulateddelay.h index 0324edf608..ebae2ce847 100644 --- a/framework/audio/engine/internal/fx/reverb/allpassmodulateddelay.h +++ b/framework/audio/engine/internal/fx/reverb/allpassmodulateddelay.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/circularsamplebuffer.h b/framework/audio/engine/internal/fx/reverb/circularsamplebuffer.h index d74ad7c1dd..c9c04687a6 100644 --- a/framework/audio/engine/internal/fx/reverb/circularsamplebuffer.h +++ b/framework/audio/engine/internal/fx/reverb/circularsamplebuffer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/iirbiquadfilter.h b/framework/audio/engine/internal/fx/reverb/iirbiquadfilter.h index d2cbfd0971..e8e5d8204a 100644 --- a/framework/audio/engine/internal/fx/reverb/iirbiquadfilter.h +++ b/framework/audio/engine/internal/fx/reverb/iirbiquadfilter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/ivndecorrelation.cpp b/framework/audio/engine/internal/fx/reverb/ivndecorrelation.cpp index 6c26467911..d79f9f401d 100644 --- a/framework/audio/engine/internal/fx/reverb/ivndecorrelation.cpp +++ b/framework/audio/engine/internal/fx/reverb/ivndecorrelation.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/ivndecorrelation.h b/framework/audio/engine/internal/fx/reverb/ivndecorrelation.h index f982d2932c..098d19af23 100644 --- a/framework/audio/engine/internal/fx/reverb/ivndecorrelation.h +++ b/framework/audio/engine/internal/fx/reverb/ivndecorrelation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/reverbfilters.h b/framework/audio/engine/internal/fx/reverb/reverbfilters.h index ac0da3a889..c52a4ac06b 100644 --- a/framework/audio/engine/internal/fx/reverb/reverbfilters.h +++ b/framework/audio/engine/internal/fx/reverb/reverbfilters.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/reverbmatrices.h b/framework/audio/engine/internal/fx/reverb/reverbmatrices.h index 04433c7262..aea0b3e046 100644 --- a/framework/audio/engine/internal/fx/reverb/reverbmatrices.h +++ b/framework/audio/engine/internal/fx/reverb/reverbmatrices.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/reverbprocessor.cpp b/framework/audio/engine/internal/fx/reverb/reverbprocessor.cpp index 7635e1b5cf..2e00242089 100644 --- a/framework/audio/engine/internal/fx/reverb/reverbprocessor.cpp +++ b/framework/audio/engine/internal/fx/reverb/reverbprocessor.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/reverbprocessor.h b/framework/audio/engine/internal/fx/reverb/reverbprocessor.h index 635b492093..b1f1053643 100644 --- a/framework/audio/engine/internal/fx/reverb/reverbprocessor.h +++ b/framework/audio/engine/internal/fx/reverb/reverbprocessor.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/sampledelay.h b/framework/audio/engine/internal/fx/reverb/sampledelay.h index 75c214be24..5ae013ee69 100644 --- a/framework/audio/engine/internal/fx/reverb/sampledelay.h +++ b/framework/audio/engine/internal/fx/reverb/sampledelay.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/simdtypes.h b/framework/audio/engine/internal/fx/reverb/simdtypes.h index 521d4ce3ad..d39b6d9b60 100644 --- a/framework/audio/engine/internal/fx/reverb/simdtypes.h +++ b/framework/audio/engine/internal/fx/reverb/simdtypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/simdtypes_neon.h b/framework/audio/engine/internal/fx/reverb/simdtypes_neon.h index 8723369c69..f2943e5b69 100644 --- a/framework/audio/engine/internal/fx/reverb/simdtypes_neon.h +++ b/framework/audio/engine/internal/fx/reverb/simdtypes_neon.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/simdtypes_scalar.h b/framework/audio/engine/internal/fx/reverb/simdtypes_scalar.h index be278b63e9..ae8a945a7e 100644 --- a/framework/audio/engine/internal/fx/reverb/simdtypes_scalar.h +++ b/framework/audio/engine/internal/fx/reverb/simdtypes_scalar.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/simdtypes_sse2.h b/framework/audio/engine/internal/fx/reverb/simdtypes_sse2.h index b5efe57ef2..b29ec2d35e 100644 --- a/framework/audio/engine/internal/fx/reverb/simdtypes_sse2.h +++ b/framework/audio/engine/internal/fx/reverb/simdtypes_sse2.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/smoothlinearvalue.h b/framework/audio/engine/internal/fx/reverb/smoothlinearvalue.h index 7ce2757891..8b5c9c111a 100644 --- a/framework/audio/engine/internal/fx/reverb/smoothlinearvalue.h +++ b/framework/audio/engine/internal/fx/reverb/smoothlinearvalue.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/sparsefirfilter.h b/framework/audio/engine/internal/fx/reverb/sparsefirfilter.h index 1dc51a733a..fb10a5e9a3 100644 --- a/framework/audio/engine/internal/fx/reverb/sparsefirfilter.h +++ b/framework/audio/engine/internal/fx/reverb/sparsefirfilter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/fx/reverb/vectorops.h b/framework/audio/engine/internal/fx/reverb/vectorops.h index 530aa47bb5..e3964e2b3a 100644 --- a/framework/audio/engine/internal/fx/reverb/vectorops.h +++ b/framework/audio/engine/internal/fx/reverb/vectorops.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/iaudiocontext.h b/framework/audio/engine/internal/iaudiocontext.h index a5b70573a6..d20489914f 100644 --- a/framework/audio/engine/internal/iaudiocontext.h +++ b/framework/audio/engine/internal/iaudiocontext.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/iaudioengine.h b/framework/audio/engine/internal/iaudioengine.h index 4ddd965987..b397038e63 100644 --- a/framework/audio/engine/internal/iaudioengine.h +++ b/framework/audio/engine/internal/iaudioengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/iaudiofactory.h b/framework/audio/engine/internal/iaudiofactory.h index 525c4b76b2..22ec1a1402 100644 --- a/framework/audio/engine/internal/iaudiofactory.h +++ b/framework/audio/engine/internal/iaudiofactory.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/iexecoperation.h b/framework/audio/engine/internal/iexecoperation.h index fade3289ee..6a7eef5bf9 100644 --- a/framework/audio/engine/internal/iexecoperation.h +++ b/framework/audio/engine/internal/iexecoperation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/igettracksource.h b/framework/audio/engine/internal/igettracksource.h index 0d3231149f..1a7873e250 100644 --- a/framework/audio/engine/internal/igettracksource.h +++ b/framework/audio/engine/internal/igettracksource.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/mixer.cpp b/framework/audio/engine/internal/mixer.cpp index 29a2695fea..719a0fc8bd 100644 --- a/framework/audio/engine/internal/mixer.cpp +++ b/framework/audio/engine/internal/mixer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/mixer.h b/framework/audio/engine/internal/mixer.h index 535662df49..c479c0daa7 100644 --- a/framework/audio/engine/internal/mixer.h +++ b/framework/audio/engine/internal/mixer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/audionode.h b/framework/audio/engine/internal/nodes/audionode.h index b84a59c28d..10bdddd8c8 100644 --- a/framework/audio/engine/internal/nodes/audionode.h +++ b/framework/audio/engine/internal/nodes/audionode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/audiosourcenode.h b/framework/audio/engine/internal/nodes/audiosourcenode.h index 81e00f5038..445e29b647 100644 --- a/framework/audio/engine/internal/nodes/audiosourcenode.h +++ b/framework/audio/engine/internal/nodes/audiosourcenode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/chainnode.h b/framework/audio/engine/internal/nodes/chainnode.h index 99d91790b4..83566fe05c 100644 --- a/framework/audio/engine/internal/nodes/chainnode.h +++ b/framework/audio/engine/internal/nodes/chainnode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/controlnode.cpp b/framework/audio/engine/internal/nodes/controlnode.cpp index c6a01b77f7..2ef14c13e1 100644 --- a/framework/audio/engine/internal/nodes/controlnode.cpp +++ b/framework/audio/engine/internal/nodes/controlnode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/controlnode.h b/framework/audio/engine/internal/nodes/controlnode.h index c920351905..dbb1f96454 100644 --- a/framework/audio/engine/internal/nodes/controlnode.h +++ b/framework/audio/engine/internal/nodes/controlnode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/eventaudionode.cpp b/framework/audio/engine/internal/nodes/eventaudionode.cpp index 219df328a1..42c9173a21 100644 --- a/framework/audio/engine/internal/nodes/eventaudionode.cpp +++ b/framework/audio/engine/internal/nodes/eventaudionode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/eventaudionode.h b/framework/audio/engine/internal/nodes/eventaudionode.h index 2ff491c7b7..52022b50f1 100644 --- a/framework/audio/engine/internal/nodes/eventaudionode.h +++ b/framework/audio/engine/internal/nodes/eventaudionode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/fxchain.cpp b/framework/audio/engine/internal/nodes/fxchain.cpp index bf97033138..9aed4eb59a 100644 --- a/framework/audio/engine/internal/nodes/fxchain.cpp +++ b/framework/audio/engine/internal/nodes/fxchain.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/fxchain.h b/framework/audio/engine/internal/nodes/fxchain.h index 1d524970a7..3d89fddc03 100644 --- a/framework/audio/engine/internal/nodes/fxchain.h +++ b/framework/audio/engine/internal/nodes/fxchain.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/fxnode.cpp b/framework/audio/engine/internal/nodes/fxnode.cpp index ea7ad6ece9..e2e7a7e179 100644 --- a/framework/audio/engine/internal/nodes/fxnode.cpp +++ b/framework/audio/engine/internal/nodes/fxnode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/fxnode.h b/framework/audio/engine/internal/nodes/fxnode.h index 6b94af8523..e3a1bd4a70 100644 --- a/framework/audio/engine/internal/nodes/fxnode.h +++ b/framework/audio/engine/internal/nodes/fxnode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/mixernode.cpp b/framework/audio/engine/internal/nodes/mixernode.cpp index 9dd30f648f..1db2dd5d51 100644 --- a/framework/audio/engine/internal/nodes/mixernode.cpp +++ b/framework/audio/engine/internal/nodes/mixernode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/mixernode.h b/framework/audio/engine/internal/nodes/mixernode.h index 9ce79529a1..7038a7448c 100644 --- a/framework/audio/engine/internal/nodes/mixernode.h +++ b/framework/audio/engine/internal/nodes/mixernode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/playheadnode.cpp b/framework/audio/engine/internal/nodes/playheadnode.cpp index 1353938428..6de26b8a06 100644 --- a/framework/audio/engine/internal/nodes/playheadnode.cpp +++ b/framework/audio/engine/internal/nodes/playheadnode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/playheadnode.h b/framework/audio/engine/internal/nodes/playheadnode.h index 0897115306..b14053fc4e 100644 --- a/framework/audio/engine/internal/nodes/playheadnode.h +++ b/framework/audio/engine/internal/nodes/playheadnode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/signalnode.cpp b/framework/audio/engine/internal/nodes/signalnode.cpp index ddcfb26774..0faf9ee145 100644 --- a/framework/audio/engine/internal/nodes/signalnode.cpp +++ b/framework/audio/engine/internal/nodes/signalnode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/signalnode.h b/framework/audio/engine/internal/nodes/signalnode.h index 3dbadb4943..aa6dc73bbc 100644 --- a/framework/audio/engine/internal/nodes/signalnode.h +++ b/framework/audio/engine/internal/nodes/signalnode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/trackchain.cpp b/framework/audio/engine/internal/nodes/trackchain.cpp index a2449aa1e7..502d3f0df3 100644 --- a/framework/audio/engine/internal/nodes/trackchain.cpp +++ b/framework/audio/engine/internal/nodes/trackchain.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/nodes/trackchain.h b/framework/audio/engine/internal/nodes/trackchain.h index 70c6d50c3b..31ff8a7650 100644 --- a/framework/audio/engine/internal/nodes/trackchain.h +++ b/framework/audio/engine/internal/nodes/trackchain.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/engine/internal/noisesource.cpp b/framework/audio/engine/internal/noisesource.cpp index 31a0b325b1..e66850c88b 100644 --- a/framework/audio/engine/internal/noisesource.cpp +++ b/framework/audio/engine/internal/noisesource.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/noisesource.h b/framework/audio/engine/internal/noisesource.h index abc0cd496b..27cb2dffc8 100644 --- a/framework/audio/engine/internal/noisesource.h +++ b/framework/audio/engine/internal/noisesource.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/samplerateconvertor.cpp b/framework/audio/engine/internal/samplerateconvertor.cpp index ec58209dcd..d4e532024e 100644 --- a/framework/audio/engine/internal/samplerateconvertor.cpp +++ b/framework/audio/engine/internal/samplerateconvertor.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/samplerateconvertor.h b/framework/audio/engine/internal/samplerateconvertor.h index 39cc1a067d..22a575823d 100644 --- a/framework/audio/engine/internal/samplerateconvertor.h +++ b/framework/audio/engine/internal/samplerateconvertor.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/sinesource.cpp b/framework/audio/engine/internal/sinesource.cpp index 2f4c33b211..f395a7b762 100644 --- a/framework/audio/engine/internal/sinesource.cpp +++ b/framework/audio/engine/internal/sinesource.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/sinesource.h b/framework/audio/engine/internal/sinesource.h index e67c9ce2fb..a517d152bd 100644 --- a/framework/audio/engine/internal/sinesource.h +++ b/framework/audio/engine/internal/sinesource.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/abstractsynthesizer.cpp b/framework/audio/engine/internal/synthesizers/abstractsynthesizer.cpp index 75e407a658..305eff8e9f 100644 --- a/framework/audio/engine/internal/synthesizers/abstractsynthesizer.cpp +++ b/framework/audio/engine/internal/synthesizers/abstractsynthesizer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/abstractsynthesizer.h b/framework/audio/engine/internal/synthesizers/abstractsynthesizer.h index 655112f9ec..b55a43b2c1 100644 --- a/framework/audio/engine/internal/synthesizers/abstractsynthesizer.h +++ b/framework/audio/engine/internal/synthesizers/abstractsynthesizer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.cpp b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.cpp index e493098df5..42e93214ae 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.cpp +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.h b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.h index eeed2f9ac5..5c7289507b 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.h +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.cpp b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.cpp index 228e7858d6..35c30c1cb2 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.cpp +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.h b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.h index 73f84dae0c..78062eab52 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.h +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsequencer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.cpp b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.cpp index 6993c32eb0..e2e889e901 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.cpp +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.h b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.h index b9af23a831..b82177a2be 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.h +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsoundfontparser.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.cpp b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.cpp index d353197d0c..b56560c12a 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.cpp +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.h b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.h index 167078cc41..400f122c02 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.h +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/fluidsynth.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/sfcachedloader.h b/framework/audio/engine/internal/synthesizers/fluidsynth/sfcachedloader.h index ae6e27a116..c85ff7ff17 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/sfcachedloader.h +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/sfcachedloader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/fluidsynth/soundmapping.h b/framework/audio/engine/internal/synthesizers/fluidsynth/soundmapping.h index f92f4c76ac..2c92ee6577 100644 --- a/framework/audio/engine/internal/synthesizers/fluidsynth/soundmapping.h +++ b/framework/audio/engine/internal/synthesizers/fluidsynth/soundmapping.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/soundfontrepository.cpp b/framework/audio/engine/internal/synthesizers/soundfontrepository.cpp index 6a27131c40..e7352536c7 100644 --- a/framework/audio/engine/internal/synthesizers/soundfontrepository.cpp +++ b/framework/audio/engine/internal/synthesizers/soundfontrepository.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/soundfontrepository.h b/framework/audio/engine/internal/synthesizers/soundfontrepository.h index f228a29c87..4331cadcdc 100644 --- a/framework/audio/engine/internal/synthesizers/soundfontrepository.h +++ b/framework/audio/engine/internal/synthesizers/soundfontrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/synthresolver.cpp b/framework/audio/engine/internal/synthesizers/synthresolver.cpp index 86100a05aa..2263f73ef8 100644 --- a/framework/audio/engine/internal/synthesizers/synthresolver.cpp +++ b/framework/audio/engine/internal/synthesizers/synthresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/synthesizers/synthresolver.h b/framework/audio/engine/internal/synthesizers/synthresolver.h index c6e2c5a968..5c5c478f89 100644 --- a/framework/audio/engine/internal/synthesizers/synthresolver.h +++ b/framework/audio/engine/internal/synthesizers/synthresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/internal/transporteventsdispatcher.cpp b/framework/audio/engine/internal/transporteventsdispatcher.cpp index ed1eafd077..4d27cdd674 100644 --- a/framework/audio/engine/internal/transporteventsdispatcher.cpp +++ b/framework/audio/engine/internal/transporteventsdispatcher.cpp @@ -2,10 +2,10 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * - * Copyright (C) 2026 MuseScore BVBA and others + * Copyright (C) 2026 MuseScore Limited and others * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as diff --git a/framework/audio/engine/internal/transporteventsdispatcher.h b/framework/audio/engine/internal/transporteventsdispatcher.h index 74b5f7a5db..2c7b73fe11 100644 --- a/framework/audio/engine/internal/transporteventsdispatcher.h +++ b/framework/audio/engine/internal/transporteventsdispatcher.h @@ -2,10 +2,10 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * - * Copyright (C) 2026 MuseScore BVBA and others + * Copyright (C) 2026 MuseScore Limited and others * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as diff --git a/framework/audio/engine/iplayhead.h b/framework/audio/engine/iplayhead.h index 05c5860f25..35a800942a 100644 --- a/framework/audio/engine/iplayhead.h +++ b/framework/audio/engine/iplayhead.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/isoundfontrepository.h b/framework/audio/engine/isoundfontrepository.h index 3063c87d37..594d0aba84 100644 --- a/framework/audio/engine/isoundfontrepository.h +++ b/framework/audio/engine/isoundfontrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/isynthesizer.h b/framework/audio/engine/isynthesizer.h index 0ef6604812..bfb81f7b05 100644 --- a/framework/audio/engine/isynthesizer.h +++ b/framework/audio/engine/isynthesizer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/isynthresolver.h b/framework/audio/engine/isynthresolver.h index ed0feb70f1..c768303f31 100644 --- a/framework/audio/engine/isynthresolver.h +++ b/framework/audio/engine/isynthresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/itransporteventsdispatcher.h b/framework/audio/engine/itransporteventsdispatcher.h index 6c212fd119..b7724c6923 100644 --- a/framework/audio/engine/itransporteventsdispatcher.h +++ b/framework/audio/engine/itransporteventsdispatcher.h @@ -2,10 +2,10 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * - * Copyright (C) 2026 MuseScore BVBA and others + * Copyright (C) 2026 MuseScore Limited and others * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as diff --git a/framework/audio/engine/platform/general/generalaudioworker.cpp b/framework/audio/engine/platform/general/generalaudioworker.cpp index d5a48af072..95fcab2132 100644 --- a/framework/audio/engine/platform/general/generalaudioworker.cpp +++ b/framework/audio/engine/platform/general/generalaudioworker.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/platform/general/generalaudioworker.h b/framework/audio/engine/platform/general/generalaudioworker.h index 3c0ebf953c..143605d43b 100644 --- a/framework/audio/engine/platform/general/generalaudioworker.h +++ b/framework/audio/engine/platform/general/generalaudioworker.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/engine/platform/web/networksfloader.cpp b/framework/audio/engine/platform/web/networksfloader.cpp index 642da16475..2c74f0dc5e 100644 --- a/framework/audio/engine/platform/web/networksfloader.cpp +++ b/framework/audio/engine/platform/web/networksfloader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/engine/platform/web/networksfloader.h b/framework/audio/engine/platform/web/networksfloader.h index 4d0c30a017..52b599a826 100644 --- a/framework/audio/engine/platform/web/networksfloader.h +++ b/framework/audio/engine/platform/web/networksfloader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/iaudiodriver.h b/framework/audio/iaudiodriver.h index 8076a9de07..71a8f22348 100644 --- a/framework/audio/iaudiodriver.h +++ b/framework/audio/iaudiodriver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/iaudiodrivercontroller.h b/framework/audio/iaudiodrivercontroller.h index b238cd2565..d3d2f630e1 100644 --- a/framework/audio/iaudiodrivercontroller.h +++ b/framework/audio/iaudiodrivercontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/audiomodule.cpp b/framework/audio/main/audiomodule.cpp index 155e5f2123..47a70eb607 100644 --- a/framework/audio/main/audiomodule.cpp +++ b/framework/audio/main/audiomodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/main/audiomodule.h b/framework/audio/main/audiomodule.h index ccc35b55e8..7293c097fc 100644 --- a/framework/audio/main/audiomodule.h +++ b/framework/audio/main/audiomodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/main/iaudioconfiguration.h b/framework/audio/main/iaudioconfiguration.h index 2ca3d3fd5f..386eb316c0 100644 --- a/framework/audio/main/iaudioconfiguration.h +++ b/framework/audio/main/iaudioconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audioactionscontroller.cpp b/framework/audio/main/internal/audioactionscontroller.cpp index 4a1b4b1128..78a0de0a97 100644 --- a/framework/audio/main/internal/audioactionscontroller.cpp +++ b/framework/audio/main/internal/audioactionscontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audioactionscontroller.h b/framework/audio/main/internal/audioactionscontroller.h index e3d25299c1..7c1c8427b8 100644 --- a/framework/audio/main/internal/audioactionscontroller.h +++ b/framework/audio/main/internal/audioactionscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audioconfiguration.cpp b/framework/audio/main/internal/audioconfiguration.cpp index 982000aa6f..b41106b3d9 100644 --- a/framework/audio/main/internal/audioconfiguration.cpp +++ b/framework/audio/main/internal/audioconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audioconfiguration.h b/framework/audio/main/internal/audioconfiguration.h index 24a27bd99f..7bad84577e 100644 --- a/framework/audio/main/internal/audioconfiguration.h +++ b/framework/audio/main/internal/audioconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audiodrivercontroller.cpp b/framework/audio/main/internal/audiodrivercontroller.cpp index 6a3996eaf2..98a481f140 100644 --- a/framework/audio/main/internal/audiodrivercontroller.cpp +++ b/framework/audio/main/internal/audiodrivercontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audiodrivercontroller.h b/framework/audio/main/internal/audiodrivercontroller.h index f6628bd9c3..34fd8c6ae4 100644 --- a/framework/audio/main/internal/audiodrivercontroller.h +++ b/framework/audio/main/internal/audiodrivercontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audiouiactions.cpp b/framework/audio/main/internal/audiouiactions.cpp index d78ff764e3..59895a255b 100644 --- a/framework/audio/main/internal/audiouiactions.cpp +++ b/framework/audio/main/internal/audiouiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/audiouiactions.h b/framework/audio/main/internal/audiouiactions.h index fb3c4cd984..8023052ce9 100644 --- a/framework/audio/main/internal/audiouiactions.h +++ b/framework/audio/main/internal/audiouiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/playback.cpp b/framework/audio/main/internal/playback.cpp index 721cd0a524..1be3fe0794 100644 --- a/framework/audio/main/internal/playback.cpp +++ b/framework/audio/main/internal/playback.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/main/internal/playback.h b/framework/audio/main/internal/playback.h index c9ee89cf9d..70392070c5 100644 --- a/framework/audio/main/internal/playback.h +++ b/framework/audio/main/internal/playback.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/main/internal/player.cpp b/framework/audio/main/internal/player.cpp index 0f958818c5..afe9ebbe6a 100644 --- a/framework/audio/main/internal/player.cpp +++ b/framework/audio/main/internal/player.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/audio/main/internal/player.h b/framework/audio/main/internal/player.h index f3adc068d9..0ae06a14d3 100644 --- a/framework/audio/main/internal/player.h +++ b/framework/audio/main/internal/player.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/audio/main/internal/startaudiocontroller.cpp b/framework/audio/main/internal/startaudiocontroller.cpp index 93bdff0125..032fd6807a 100644 --- a/framework/audio/main/internal/startaudiocontroller.cpp +++ b/framework/audio/main/internal/startaudiocontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/internal/startaudiocontroller.h b/framework/audio/main/internal/startaudiocontroller.h index 5d0b27f460..f3d6c52689 100644 --- a/framework/audio/main/internal/startaudiocontroller.h +++ b/framework/audio/main/internal/startaudiocontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/iplayback.h b/framework/audio/main/iplayback.h index af70186675..496ff9f629 100644 --- a/framework/audio/main/iplayback.h +++ b/framework/audio/main/iplayback.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audio/main/iplayer.h b/framework/audio/main/iplayer.h index ef5ae710c9..55c4a6dd95 100644 --- a/framework/audio/main/iplayer.h +++ b/framework/audio/main/iplayer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/isoundfontcontroller.h b/framework/audio/main/isoundfontcontroller.h index d39753f97d..ba108de456 100644 --- a/framework/audio/main/isoundfontcontroller.h +++ b/framework/audio/main/isoundfontcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/isoundfontinstallscenario.h b/framework/audio/main/isoundfontinstallscenario.h index d8b0e849c2..bb4477a7e4 100644 --- a/framework/audio/main/isoundfontinstallscenario.h +++ b/framework/audio/main/isoundfontinstallscenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/main/istartaudiocontroller.h b/framework/audio/main/istartaudiocontroller.h index 46fb7ef92a..148fa41d47 100644 --- a/framework/audio/main/istartaudiocontroller.h +++ b/framework/audio/main/istartaudiocontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/platform/general/generalsoundfontcontroller.cpp b/framework/audio/main/platform/general/generalsoundfontcontroller.cpp index 3d24613f4d..cb83ee0b56 100644 --- a/framework/audio/main/platform/general/generalsoundfontcontroller.cpp +++ b/framework/audio/main/platform/general/generalsoundfontcontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/platform/general/generalsoundfontcontroller.h b/framework/audio/main/platform/general/generalsoundfontcontroller.h index a888882959..9b41f3978b 100644 --- a/framework/audio/main/platform/general/generalsoundfontcontroller.h +++ b/framework/audio/main/platform/general/generalsoundfontcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/platform/general/generalsoundfontinstallscenario.cpp b/framework/audio/main/platform/general/generalsoundfontinstallscenario.cpp index 3295181041..887af6c4f0 100644 --- a/framework/audio/main/platform/general/generalsoundfontinstallscenario.cpp +++ b/framework/audio/main/platform/general/generalsoundfontinstallscenario.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/main/platform/general/generalsoundfontinstallscenario.h b/framework/audio/main/platform/general/generalsoundfontinstallscenario.h index cff7c82878..1f87ae5c2b 100644 --- a/framework/audio/main/platform/general/generalsoundfontinstallscenario.h +++ b/framework/audio/main/platform/general/generalsoundfontinstallscenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/audio/main/platform/web/websoundfontcontroller.cpp b/framework/audio/main/platform/web/websoundfontcontroller.cpp index f8692e34c0..bd5e03f9ef 100644 --- a/framework/audio/main/platform/web/websoundfontcontroller.cpp +++ b/framework/audio/main/platform/web/websoundfontcontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/main/platform/web/websoundfontcontroller.h b/framework/audio/main/platform/web/websoundfontcontroller.h index 6a90a0805d..782a1c3016 100644 --- a/framework/audio/main/platform/web/websoundfontcontroller.h +++ b/framework/audio/main/platform/web/websoundfontcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/tests/CMakeLists.txt b/framework/audio/tests/CMakeLists.txt index 222a0445d9..444acbee33 100644 --- a/framework/audio/tests/CMakeLists.txt +++ b/framework/audio/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/tests/alignbuffer_tests.cpp b/framework/audio/tests/alignbuffer_tests.cpp index fec36a2631..9b3b056e5c 100644 --- a/framework/audio/tests/alignbuffer_tests.cpp +++ b/framework/audio/tests/alignbuffer_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/tests/rpcpacker_tests.cpp b/framework/audio/tests/rpcpacker_tests.cpp index f6e39ccb2d..248aec3276 100644 --- a/framework/audio/tests/rpcpacker_tests.cpp +++ b/framework/audio/tests/rpcpacker_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/thirdparty/fluidsynth/vorbis_decode.cpp b/framework/audio/thirdparty/fluidsynth/vorbis_decode.cpp index 9b8e2014fe..cd9b9c8237 100644 --- a/framework/audio/thirdparty/fluidsynth/vorbis_decode.cpp +++ b/framework/audio/thirdparty/fluidsynth/vorbis_decode.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/thirdparty/fluidsynth/vorbis_decode.h b/framework/audio/thirdparty/fluidsynth/vorbis_decode.h index 46b3811a13..e928ed83b6 100644 --- a/framework/audio/thirdparty/fluidsynth/vorbis_decode.h +++ b/framework/audio/thirdparty/fluidsynth/vorbis_decode.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/audio/thirdparty/opusenc/cmake/SetupOpus.cmake b/framework/audio/thirdparty/opusenc/cmake/SetupOpus.cmake index e56ab4b39c..d7545e1aaf 100644 --- a/framework/audio/thirdparty/opusenc/cmake/SetupOpus.cmake +++ b/framework/audio/thirdparty/opusenc/cmake/SetupOpus.cmake @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audioplugins/audiopluginserrors.h b/framework/audioplugins/audiopluginserrors.h index e45d8e0339..458aa9f901 100644 --- a/framework/audioplugins/audiopluginserrors.h +++ b/framework/audioplugins/audiopluginserrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/audiopluginsmodule.cpp b/framework/audioplugins/audiopluginsmodule.cpp index a91d86ea01..0f758f60f9 100644 --- a/framework/audioplugins/audiopluginsmodule.cpp +++ b/framework/audioplugins/audiopluginsmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/audiopluginsmodule.h b/framework/audioplugins/audiopluginsmodule.h index 93139dd85d..9c242c33b5 100644 --- a/framework/audioplugins/audiopluginsmodule.h +++ b/framework/audioplugins/audiopluginsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/audiopluginstypes.h b/framework/audioplugins/audiopluginstypes.h index e7879403f7..355fde48ed 100644 --- a/framework/audioplugins/audiopluginstypes.h +++ b/framework/audioplugins/audiopluginstypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/iaudiopluginmetareader.h b/framework/audioplugins/iaudiopluginmetareader.h index d4259d8578..ddd212ff6b 100644 --- a/framework/audioplugins/iaudiopluginmetareader.h +++ b/framework/audioplugins/iaudiopluginmetareader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/iaudiopluginmetareaderregister.h b/framework/audioplugins/iaudiopluginmetareaderregister.h index dabd20b3b2..7edd8a8993 100644 --- a/framework/audioplugins/iaudiopluginmetareaderregister.h +++ b/framework/audioplugins/iaudiopluginmetareaderregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/iaudiopluginsconfiguration.h b/framework/audioplugins/iaudiopluginsconfiguration.h index cb3e660def..7c7d83df9a 100644 --- a/framework/audioplugins/iaudiopluginsconfiguration.h +++ b/framework/audioplugins/iaudiopluginsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/iaudiopluginsscanner.h b/framework/audioplugins/iaudiopluginsscanner.h index 6e3ba0d4f5..a76bd55ff3 100644 --- a/framework/audioplugins/iaudiopluginsscanner.h +++ b/framework/audioplugins/iaudiopluginsscanner.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/iaudiopluginsscannerregister.h b/framework/audioplugins/iaudiopluginsscannerregister.h index 59b9a96232..f16eda95fc 100644 --- a/framework/audioplugins/iaudiopluginsscannerregister.h +++ b/framework/audioplugins/iaudiopluginsscannerregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/iknownaudiopluginsregister.h b/framework/audioplugins/iknownaudiopluginsregister.h index 3e27623fe0..ee90080626 100644 --- a/framework/audioplugins/iknownaudiopluginsregister.h +++ b/framework/audioplugins/iknownaudiopluginsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/audiopluginmetareaderregister.cpp b/framework/audioplugins/internal/audiopluginmetareaderregister.cpp index aafc471295..a6ce602db5 100644 --- a/framework/audioplugins/internal/audiopluginmetareaderregister.cpp +++ b/framework/audioplugins/internal/audiopluginmetareaderregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/audiopluginmetareaderregister.h b/framework/audioplugins/internal/audiopluginmetareaderregister.h index 70e09183c6..274b22777e 100644 --- a/framework/audioplugins/internal/audiopluginmetareaderregister.h +++ b/framework/audioplugins/internal/audiopluginmetareaderregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/audiopluginsconfiguration.cpp b/framework/audioplugins/internal/audiopluginsconfiguration.cpp index babfab8e5a..07494234a1 100644 --- a/framework/audioplugins/internal/audiopluginsconfiguration.cpp +++ b/framework/audioplugins/internal/audiopluginsconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/audioplugins/internal/audiopluginsconfiguration.h b/framework/audioplugins/internal/audiopluginsconfiguration.h index 204f63ca07..be721c131e 100644 --- a/framework/audioplugins/internal/audiopluginsconfiguration.h +++ b/framework/audioplugins/internal/audiopluginsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/audioplugins/internal/audiopluginsscannerregister.cpp b/framework/audioplugins/internal/audiopluginsscannerregister.cpp index 1a3fc280de..29fcb412c0 100644 --- a/framework/audioplugins/internal/audiopluginsscannerregister.cpp +++ b/framework/audioplugins/internal/audiopluginsscannerregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/audiopluginsscannerregister.h b/framework/audioplugins/internal/audiopluginsscannerregister.h index b23577ed19..ba01c2a176 100644 --- a/framework/audioplugins/internal/audiopluginsscannerregister.h +++ b/framework/audioplugins/internal/audiopluginsscannerregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/audiopluginsutils.h b/framework/audioplugins/internal/audiopluginsutils.h index d24fd48b26..1defa30cb0 100644 --- a/framework/audioplugins/internal/audiopluginsutils.h +++ b/framework/audioplugins/internal/audiopluginsutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/knownaudiopluginsregister.cpp b/framework/audioplugins/internal/knownaudiopluginsregister.cpp index ce2d250163..d1ee69603a 100644 --- a/framework/audioplugins/internal/knownaudiopluginsregister.cpp +++ b/framework/audioplugins/internal/knownaudiopluginsregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/knownaudiopluginsregister.h b/framework/audioplugins/internal/knownaudiopluginsregister.h index aec9dab529..036fdb9236 100644 --- a/framework/audioplugins/internal/knownaudiopluginsregister.h +++ b/framework/audioplugins/internal/knownaudiopluginsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/registeraudiopluginsscenario.cpp b/framework/audioplugins/internal/registeraudiopluginsscenario.cpp index 5994e8926a..892f1e514a 100644 --- a/framework/audioplugins/internal/registeraudiopluginsscenario.cpp +++ b/framework/audioplugins/internal/registeraudiopluginsscenario.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/internal/registeraudiopluginsscenario.h b/framework/audioplugins/internal/registeraudiopluginsscenario.h index 8f61cede3d..a3c23c3e52 100644 --- a/framework/audioplugins/internal/registeraudiopluginsscenario.h +++ b/framework/audioplugins/internal/registeraudiopluginsscenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/iregisteraudiopluginsscenario.h b/framework/audioplugins/iregisteraudiopluginsscenario.h index 739da2852e..3a2cf19c13 100644 --- a/framework/audioplugins/iregisteraudiopluginsscenario.h +++ b/framework/audioplugins/iregisteraudiopluginsscenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/CMakeLists.txt b/framework/audioplugins/tests/CMakeLists.txt index f5dbba7a48..761af04dc8 100644 --- a/framework/audioplugins/tests/CMakeLists.txt +++ b/framework/audioplugins/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/audiopluginsutilstest.cpp b/framework/audioplugins/tests/audiopluginsutilstest.cpp index b4c880f89c..dcb2d85c5c 100644 --- a/framework/audioplugins/tests/audiopluginsutilstest.cpp +++ b/framework/audioplugins/tests/audiopluginsutilstest.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/audioplugins/tests/knownaudiopluginsregistertest.cpp b/framework/audioplugins/tests/knownaudiopluginsregistertest.cpp index c16adde91e..844b2d29ab 100644 --- a/framework/audioplugins/tests/knownaudiopluginsregistertest.cpp +++ b/framework/audioplugins/tests/knownaudiopluginsregistertest.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/mocks/audiopluginmetareadermock.h b/framework/audioplugins/tests/mocks/audiopluginmetareadermock.h index b2b983d47c..17ff4194ef 100644 --- a/framework/audioplugins/tests/mocks/audiopluginmetareadermock.h +++ b/framework/audioplugins/tests/mocks/audiopluginmetareadermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/mocks/audiopluginmetareaderregistermock.h b/framework/audioplugins/tests/mocks/audiopluginmetareaderregistermock.h index f1067552cf..f36a966889 100644 --- a/framework/audioplugins/tests/mocks/audiopluginmetareaderregistermock.h +++ b/framework/audioplugins/tests/mocks/audiopluginmetareaderregistermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/mocks/audiopluginsconfigurationmock.h b/framework/audioplugins/tests/mocks/audiopluginsconfigurationmock.h index dc05c256f4..f6334cd39e 100644 --- a/framework/audioplugins/tests/mocks/audiopluginsconfigurationmock.h +++ b/framework/audioplugins/tests/mocks/audiopluginsconfigurationmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/mocks/audiopluginsscannermock.h b/framework/audioplugins/tests/mocks/audiopluginsscannermock.h index eaf4880235..2ced6d03b3 100644 --- a/framework/audioplugins/tests/mocks/audiopluginsscannermock.h +++ b/framework/audioplugins/tests/mocks/audiopluginsscannermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/mocks/audiopluginsscannerregistermock.h b/framework/audioplugins/tests/mocks/audiopluginsscannerregistermock.h index 5646618da0..59fc7aa1c1 100644 --- a/framework/audioplugins/tests/mocks/audiopluginsscannerregistermock.h +++ b/framework/audioplugins/tests/mocks/audiopluginsscannerregistermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/mocks/knownaudiopluginsregistermock.h b/framework/audioplugins/tests/mocks/knownaudiopluginsregistermock.h index 86fa8e7f35..515fb01af0 100644 --- a/framework/audioplugins/tests/mocks/knownaudiopluginsregistermock.h +++ b/framework/audioplugins/tests/mocks/knownaudiopluginsregistermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/audioplugins/tests/registeraudiopluginsscenariotest.cpp b/framework/audioplugins/tests/registeraudiopluginsscenariotest.cpp index 1218dbd6b0..d1945ab63f 100644 --- a/framework/audioplugins/tests/registeraudiopluginsscenariotest.cpp +++ b/framework/audioplugins/tests/registeraudiopluginsscenariotest.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/automation/automationmodule.cpp b/framework/automation/automationmodule.cpp index 3294cf075b..44ad882169 100644 --- a/framework/automation/automationmodule.cpp +++ b/framework/automation/automationmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/automation/automationmodule.h b/framework/automation/automationmodule.h index 1b99148a57..012c4e089e 100644 --- a/framework/automation/automationmodule.h +++ b/framework/automation/automationmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/cloud/audiocom/audiocomservice.cpp b/framework/cloud/audiocom/audiocomservice.cpp index 4459027505..d3b41a95c6 100644 --- a/framework/cloud/audiocom/audiocomservice.cpp +++ b/framework/cloud/audiocom/audiocomservice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/audiocom/audiocomservice.h b/framework/cloud/audiocom/audiocomservice.h index b9bcf42b8f..cab11823c4 100644 --- a/framework/cloud/audiocom/audiocomservice.h +++ b/framework/cloud/audiocom/audiocomservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/audiocom/iaudiocomservice.h b/framework/cloud/audiocom/iaudiocomservice.h index 70ea7b2b60..be7e19fcce 100644 --- a/framework/cloud/audiocom/iaudiocomservice.h +++ b/framework/cloud/audiocom/iaudiocomservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/clouderrors.h b/framework/cloud/clouderrors.h index 9ede6f7430..a8b8cd8f90 100644 --- a/framework/cloud/clouderrors.h +++ b/framework/cloud/clouderrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/cloudmodule.cpp b/framework/cloud/cloudmodule.cpp index 38041a4b5a..a7b5fbdbdb 100644 --- a/framework/cloud/cloudmodule.cpp +++ b/framework/cloud/cloudmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/cloudmodule.h b/framework/cloud/cloudmodule.h index cfae26a704..9e825673b8 100644 --- a/framework/cloud/cloudmodule.h +++ b/framework/cloud/cloudmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/cloudtypes.h b/framework/cloud/cloudtypes.h index 61b3079d91..ad3cecd071 100644 --- a/framework/cloud/cloudtypes.h +++ b/framework/cloud/cloudtypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/iauthorizationservice.h b/framework/cloud/iauthorizationservice.h index d0fcee23b7..c0b6960c5f 100644 --- a/framework/cloud/iauthorizationservice.h +++ b/framework/cloud/iauthorizationservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/icloudconfiguration.h b/framework/cloud/icloudconfiguration.h index a516a515bc..b407f09cdb 100644 --- a/framework/cloud/icloudconfiguration.h +++ b/framework/cloud/icloudconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/internal/abstractcloudservice.cpp b/framework/cloud/internal/abstractcloudservice.cpp index baa90c80e2..1d5fdf78da 100644 --- a/framework/cloud/internal/abstractcloudservice.cpp +++ b/framework/cloud/internal/abstractcloudservice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/internal/abstractcloudservice.h b/framework/cloud/internal/abstractcloudservice.h index 865e33c7ba..0e37d6c9f3 100644 --- a/framework/cloud/internal/abstractcloudservice.h +++ b/framework/cloud/internal/abstractcloudservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/internal/cloudconfiguration.cpp b/framework/cloud/internal/cloudconfiguration.cpp index 70f7e50cfb..36f7170007 100644 --- a/framework/cloud/internal/cloudconfiguration.cpp +++ b/framework/cloud/internal/cloudconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/internal/cloudconfiguration.h b/framework/cloud/internal/cloudconfiguration.h index 6ae9b42cc9..476a8b7300 100644 --- a/framework/cloud/internal/cloudconfiguration.h +++ b/framework/cloud/internal/cloudconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/internal/oauthhttpserverreplyhandler.cpp b/framework/cloud/internal/oauthhttpserverreplyhandler.cpp index 899ea36085..27d52245a5 100644 --- a/framework/cloud/internal/oauthhttpserverreplyhandler.cpp +++ b/framework/cloud/internal/oauthhttpserverreplyhandler.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/cloud/internal/oauthhttpserverreplyhandler.h b/framework/cloud/internal/oauthhttpserverreplyhandler.h index a7261a9e54..a67874e163 100644 --- a/framework/cloud/internal/oauthhttpserverreplyhandler.h +++ b/framework/cloud/internal/oauthhttpserverreplyhandler.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/cloud/musescorecom/imusescorecomservice.h b/framework/cloud/musescorecom/imusescorecomservice.h index 1ffbd9f465..900ec46f4b 100644 --- a/framework/cloud/musescorecom/imusescorecomservice.h +++ b/framework/cloud/musescorecom/imusescorecomservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/musescorecom/musescorecomservice.cpp b/framework/cloud/musescorecom/musescorecomservice.cpp index f303a95768..a356778df2 100644 --- a/framework/cloud/musescorecom/musescorecomservice.cpp +++ b/framework/cloud/musescorecom/musescorecomservice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/musescorecom/musescorecomservice.h b/framework/cloud/musescorecom/musescorecomservice.h index 92af0091aa..88e8431ac9 100644 --- a/framework/cloud/musescorecom/musescorecomservice.h +++ b/framework/cloud/musescorecom/musescorecomservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/AccountAvatar.qml b/framework/cloud/qml/Muse/Cloud/AccountAvatar.qml index 0cfb7a4b97..0dbcc4aff4 100644 --- a/framework/cloud/qml/Muse/Cloud/AccountAvatar.qml +++ b/framework/cloud/qml/Muse/Cloud/AccountAvatar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/AccountInfoButton.qml b/framework/cloud/qml/Muse/Cloud/AccountInfoButton.qml index 8dc52d432b..bfc87a28f0 100644 --- a/framework/cloud/qml/Muse/Cloud/AccountInfoButton.qml +++ b/framework/cloud/qml/Muse/Cloud/AccountInfoButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/AccountPage.qml b/framework/cloud/qml/Muse/Cloud/AccountPage.qml index 8ac321f698..5cb4f55985 100644 --- a/framework/cloud/qml/Muse/Cloud/AccountPage.qml +++ b/framework/cloud/qml/Muse/Cloud/AccountPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/RequireAuthorizationDialog.qml b/framework/cloud/qml/Muse/Cloud/RequireAuthorizationDialog.qml index 89f7c5d026..bec2c4dbe6 100644 --- a/framework/cloud/qml/Muse/Cloud/RequireAuthorizationDialog.qml +++ b/framework/cloud/qml/Muse/Cloud/RequireAuthorizationDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/cloudsmodel.cpp b/framework/cloud/qml/Muse/Cloud/cloudsmodel.cpp index 971665c1ce..2bf2bc7ada 100644 --- a/framework/cloud/qml/Muse/Cloud/cloudsmodel.cpp +++ b/framework/cloud/qml/Muse/Cloud/cloudsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/cloudsmodel.h b/framework/cloud/qml/Muse/Cloud/cloudsmodel.h index d151ae9222..b2c491f3c6 100644 --- a/framework/cloud/qml/Muse/Cloud/cloudsmodel.h +++ b/framework/cloud/qml/Muse/Cloud/cloudsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/enums.h b/framework/cloud/qml/Muse/Cloud/enums.h index 5de8a73d41..49b57d935a 100644 --- a/framework/cloud/qml/Muse/Cloud/enums.h +++ b/framework/cloud/qml/Muse/Cloud/enums.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/internal/CloudItem.qml b/framework/cloud/qml/Muse/Cloud/internal/CloudItem.qml index d5dc85a9b3..8b91ad2e15 100644 --- a/framework/cloud/qml/Muse/Cloud/internal/CloudItem.qml +++ b/framework/cloud/qml/Muse/Cloud/internal/CloudItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/internal/CloudsListView.qml b/framework/cloud/qml/Muse/Cloud/internal/CloudsListView.qml index dc2f3caf53..3a6231690c 100644 --- a/framework/cloud/qml/Muse/Cloud/internal/CloudsListView.qml +++ b/framework/cloud/qml/Muse/Cloud/internal/CloudsListView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.cpp b/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.cpp index e57adebf44..8ffda5a0c6 100644 --- a/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.cpp +++ b/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.h b/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.h index 87b16a6419..668896ae60 100644 --- a/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.h +++ b/framework/cloud/qml/Muse/Cloud/musescorecomauthorizationmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/cmake/muse_framework_config.h.in b/framework/cmake/muse_framework_config.h.in index 77e71d1715..356a3a54c0 100644 --- a/framework/cmake/muse_framework_config.h.in +++ b/framework/cmake/muse_framework_config.h.in @@ -5,14 +5,6 @@ #cmakedefine MUSE_APP_NAME_HUMAN_READABLE "${MUSE_APP_NAME_HUMAN_READABLE}" #cmakedefine MUSE_APP_NAME_MACHINE_READABLE "${MUSE_APP_NAME_MACHINE_READABLE}" -#cmakedefine MUSE_APP_NAME_HUMAN_READABLE_COMPAT "${MUSE_APP_NAME_HUMAN_READABLE_COMPAT}" -#cmakedefine MUSE_APP_NAME_MACHINE_READABLE_COMPAT "${MUSE_APP_NAME_MACHINE_READABLE_COMPAT}" - -// TODO: Remove -#cmakedefine MUSE_APP_NAME "${MUSE_APP_NAME}" -#cmakedefine MUSE_APP_TITLE "${MUSE_APP_TITLE}" -// --- - #cmakedefine MUSE_APP_UNSTABLE 1 #cmakedefine MUSE_APP_REVISION "${MUSE_APP_REVISION}" #cmakedefine MUSE_APP_BUILD_NUMBER "${MUSE_APP_BUILD_NUMBER}" diff --git a/framework/diagnostics/diagnosticsmodule.cpp b/framework/diagnostics/diagnosticsmodule.cpp index 4ab214840e..e91bf0915d 100644 --- a/framework/diagnostics/diagnosticsmodule.cpp +++ b/framework/diagnostics/diagnosticsmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/diagnosticsmodule.h b/framework/diagnostics/diagnosticsmodule.h index 76203429ed..deabefc99b 100644 --- a/framework/diagnostics/diagnosticsmodule.h +++ b/framework/diagnostics/diagnosticsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/diagnosticutils.h b/framework/diagnostics/diagnosticutils.h index f036f5117f..97bfb45a7a 100644 --- a/framework/diagnostics/diagnosticutils.h +++ b/framework/diagnostics/diagnosticutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/idiagnosticsconfiguration.h b/framework/diagnostics/idiagnosticsconfiguration.h index 1221885dfa..a2ad677204 100644 --- a/framework/diagnostics/idiagnosticsconfiguration.h +++ b/framework/diagnostics/idiagnosticsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/idiagnosticspathsregister.h b/framework/diagnostics/idiagnosticspathsregister.h index b57b972345..da7aef292e 100644 --- a/framework/diagnostics/idiagnosticspathsregister.h +++ b/framework/diagnostics/idiagnosticspathsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/crashhandler/crashhandler.cpp b/framework/diagnostics/internal/crashhandler/crashhandler.cpp index 4fc3c4a7dd..d6b35bae80 100644 --- a/framework/diagnostics/internal/crashhandler/crashhandler.cpp +++ b/framework/diagnostics/internal/crashhandler/crashhandler.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/crashhandler/crashhandler.h b/framework/diagnostics/internal/crashhandler/crashhandler.h index a78e420ea3..d4b6d24d56 100644 --- a/framework/diagnostics/internal/crashhandler/crashhandler.h +++ b/framework/diagnostics/internal/crashhandler/crashhandler.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticfileswriter.cpp b/framework/diagnostics/internal/diagnosticfileswriter.cpp index 6b49d70bc8..991c5566dd 100644 --- a/framework/diagnostics/internal/diagnosticfileswriter.cpp +++ b/framework/diagnostics/internal/diagnosticfileswriter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticfileswriter.h b/framework/diagnostics/internal/diagnosticfileswriter.h index 476ca0f151..2a2a1c0201 100644 --- a/framework/diagnostics/internal/diagnosticfileswriter.h +++ b/framework/diagnostics/internal/diagnosticfileswriter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticsactions.cpp b/framework/diagnostics/internal/diagnosticsactions.cpp index a71cfb03d8..f05aa44ec9 100644 --- a/framework/diagnostics/internal/diagnosticsactions.cpp +++ b/framework/diagnostics/internal/diagnosticsactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticsactions.h b/framework/diagnostics/internal/diagnosticsactions.h index 6c6b1f7d81..f768a8387b 100644 --- a/framework/diagnostics/internal/diagnosticsactions.h +++ b/framework/diagnostics/internal/diagnosticsactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticsactionscontroller.cpp b/framework/diagnostics/internal/diagnosticsactionscontroller.cpp index dccd450ece..b4c4279a62 100644 --- a/framework/diagnostics/internal/diagnosticsactionscontroller.cpp +++ b/framework/diagnostics/internal/diagnosticsactionscontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticsactionscontroller.h b/framework/diagnostics/internal/diagnosticsactionscontroller.h index 1819b76d01..dc138fac3a 100644 --- a/framework/diagnostics/internal/diagnosticsactionscontroller.h +++ b/framework/diagnostics/internal/diagnosticsactionscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticsconfiguration.cpp b/framework/diagnostics/internal/diagnosticsconfiguration.cpp index e9fa817040..6c1f829825 100644 --- a/framework/diagnostics/internal/diagnosticsconfiguration.cpp +++ b/framework/diagnostics/internal/diagnosticsconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticsconfiguration.h b/framework/diagnostics/internal/diagnosticsconfiguration.h index 7bd4804a9f..c81e4d0f98 100644 --- a/framework/diagnostics/internal/diagnosticsconfiguration.h +++ b/framework/diagnostics/internal/diagnosticsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticspathsregister.cpp b/framework/diagnostics/internal/diagnosticspathsregister.cpp index 1aa5e2061c..d57908a5ff 100644 --- a/framework/diagnostics/internal/diagnosticspathsregister.cpp +++ b/framework/diagnostics/internal/diagnosticspathsregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/diagnosticspathsregister.h b/framework/diagnostics/internal/diagnosticspathsregister.h index da92ada1f4..1b9be56b93 100644 --- a/framework/diagnostics/internal/diagnosticspathsregister.h +++ b/framework/diagnostics/internal/diagnosticspathsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/isavediagnosticfilesscenario.h b/framework/diagnostics/internal/isavediagnosticfilesscenario.h index d98244808e..bea3a498ed 100644 --- a/framework/diagnostics/internal/isavediagnosticfilesscenario.h +++ b/framework/diagnostics/internal/isavediagnosticfilesscenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/savediagnosticfilesscenario.cpp b/framework/diagnostics/internal/savediagnosticfilesscenario.cpp index e1e3a395f5..bece43d3b0 100644 --- a/framework/diagnostics/internal/savediagnosticfilesscenario.cpp +++ b/framework/diagnostics/internal/savediagnosticfilesscenario.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/internal/savediagnosticfilesscenario.h b/framework/diagnostics/internal/savediagnosticfilesscenario.h index 9e659d57e6..ab9ceb232e 100644 --- a/framework/diagnostics/internal/savediagnosticfilesscenario.h +++ b/framework/diagnostics/internal/savediagnosticfilesscenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessibleDialog.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessibleDialog.qml index a84928b97d..f762236617 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessibleDialog.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessibleDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessiblePanel.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessiblePanel.qml index cda5bff1bf..262efde2a3 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessiblePanel.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticAccessiblePanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsDialog.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsDialog.qml index eddadebed3..dc96e0241e 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsDialog.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsPanel.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsPanel.qml index e84ea3f014..ddb35499c3 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsPanel.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticActionsPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoDialog.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoDialog.qml index d280cf26cc..35131b2167 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoDialog.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoPanel.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoPanel.qml index 082a946667..ddaf4bc9b5 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoPanel.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticGraphicsInfoPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationDialog.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationDialog.qml index 687ecb1f85..830db7ea23 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationDialog.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationPanel.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationPanel.qml index e89847e2f6..9f32a8142a 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationPanel.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticNavigationPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsDialog.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsDialog.qml index f168dce5ec..6f0e2cb544 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsDialog.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsPanel.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsPanel.qml index 91c5e2cffe..67b978b363 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsPanel.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticPathsPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerDialog.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerDialog.qml index 59e08660a1..eef1adb25c 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerDialog.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerPanel.qml b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerPanel.qml index ec9ec03af3..474acd8e9f 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerPanel.qml +++ b/framework/diagnostics/qml/Muse/Diagnostics/DiagnosticProfilerPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.cpp b/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.cpp index 1caa1a7fe5..ae64729d47 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.h b/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.h index 45e0ec186b..8f61a16876 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/actionsviewmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.cpp b/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.cpp index 8f31083d91..6b5ed98c88 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.h b/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.h index 1dbb81b7f8..5247724594 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/devtools/crashhandlerdevtoolsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.cpp b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.cpp index e5b429bed3..036189d11b 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.h b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.h index 3effe450c4..e7e2d51f1e 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticaccessiblemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.cpp b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.cpp index 7f82182c09..b4ec19e3fe 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.h b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.h index c8a9c80e95..126e8688ec 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/diagnosticspathsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.cpp b/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.cpp index a32ea6f154..a79919df2c 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.h b/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.h index 37174cfe9c..dcd219e7a5 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/abstractkeynavdevitem.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.cpp b/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.cpp index 6819721162..8bfd20502b 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.h b/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.h index b8419f471a..a77b6c0121 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/diagnosticnavigationmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.cpp b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.cpp index 0c11b55e1b..e24b3d0685 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.h b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.h index c608a9a082..2ad94727e3 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevcontrol.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.cpp b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.cpp index 6b91855f1c..e3bc40415d 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.h b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.h index f68b419949..0a0d49e6da 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsection.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.cpp b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.cpp index 991133d7da..ad952b0665 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.h b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.h index 39274d2fe7..9bc679e6df 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/keynav/keynavdevsubsection.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.cpp b/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.cpp index bcf92cf9c5..35b4665c72 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.h b/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.h index f080cbdb48..f8839794b7 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/system/graphicsinfomodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.cpp b/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.cpp index cfccb5fa96..d680dea645 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.cpp +++ b/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.h b/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.h index 945d30fb9f..a771eda401 100644 --- a/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.h +++ b/framework/diagnostics/qml/Muse/Diagnostics/system/profilerviewmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/tests/CMakeLists.txt b/framework/diagnostics/tests/CMakeLists.txt index f97fc4c25a..63d9b1e1b6 100644 --- a/framework/diagnostics/tests/CMakeLists.txt +++ b/framework/diagnostics/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/diagnostics/tests/environment.cpp b/framework/diagnostics/tests/environment.cpp index c88ef652ac..af790cceaa 100644 --- a/framework/diagnostics/tests/environment.cpp +++ b/framework/diagnostics/tests/environment.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/CMakeLists.txt b/framework/dockwindow/CMakeLists.txt index 2010dcc531..fbb2d21ae7 100644 --- a/framework/dockwindow/CMakeLists.txt +++ b/framework/dockwindow/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/dockmodule.cpp b/framework/dockwindow/dockmodule.cpp index fe26f6900e..da2dffd9fb 100644 --- a/framework/dockwindow/dockmodule.cpp +++ b/framework/dockwindow/dockmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/dockmodule.h b/framework/dockwindow/dockmodule.h index 2984c7c652..13a268c95f 100644 --- a/framework/dockwindow/dockmodule.h +++ b/framework/dockwindow/dockmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/docktypes.h b/framework/dockwindow/docktypes.h index 79b2135687..d3cd815dc1 100644 --- a/framework/dockwindow/docktypes.h +++ b/framework/dockwindow/docktypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/idockwindow.h b/framework/dockwindow/idockwindow.h index 43229c4ca3..a34657bd14 100644 --- a/framework/dockwindow/idockwindow.h +++ b/framework/dockwindow/idockwindow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/idockwindowprovider.h b/framework/dockwindow/idockwindowprovider.h index 23f3ff4c38..1e206eb63c 100644 --- a/framework/dockwindow/idockwindowprovider.h +++ b/framework/dockwindow/idockwindowprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockbase.cpp b/framework/dockwindow/internal/dockbase.cpp index c797ecf050..a25353ec3b 100644 --- a/framework/dockwindow/internal/dockbase.cpp +++ b/framework/dockwindow/internal/dockbase.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockbase.h b/framework/dockwindow/internal/dockbase.h index f2a0a616d5..ab923bbca5 100644 --- a/framework/dockwindow/internal/dockbase.h +++ b/framework/dockwindow/internal/dockbase.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockseparator.cpp b/framework/dockwindow/internal/dockseparator.cpp index f32fdbf806..37d5ccaa29 100644 --- a/framework/dockwindow/internal/dockseparator.cpp +++ b/framework/dockwindow/internal/dockseparator.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockseparator.h b/framework/dockwindow/internal/dockseparator.h index 12571b3514..ed3c327d54 100644 --- a/framework/dockwindow/internal/dockseparator.h +++ b/framework/dockwindow/internal/dockseparator.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/docktabbar.cpp b/framework/dockwindow/internal/docktabbar.cpp index 544f2cae23..6bbe383936 100644 --- a/framework/dockwindow/internal/docktabbar.cpp +++ b/framework/dockwindow/internal/docktabbar.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/docktabbar.h b/framework/dockwindow/internal/docktabbar.h index 0e573b0f64..a059d191ef 100644 --- a/framework/dockwindow/internal/docktabbar.h +++ b/framework/dockwindow/internal/docktabbar.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/docktitlebar.cpp b/framework/dockwindow/internal/docktitlebar.cpp index 6a69306ef3..0fdbd548c5 100644 --- a/framework/dockwindow/internal/docktitlebar.cpp +++ b/framework/dockwindow/internal/docktitlebar.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/docktitlebar.h b/framework/dockwindow/internal/docktitlebar.h index 94429032b7..04dbc004a6 100644 --- a/framework/dockwindow/internal/docktitlebar.h +++ b/framework/dockwindow/internal/docktitlebar.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockwindowactionscontroller.cpp b/framework/dockwindow/internal/dockwindowactionscontroller.cpp index 74cc894214..7d086326df 100644 --- a/framework/dockwindow/internal/dockwindowactionscontroller.cpp +++ b/framework/dockwindow/internal/dockwindowactionscontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockwindowactionscontroller.h b/framework/dockwindow/internal/dockwindowactionscontroller.h index fa66e0187a..06513ae763 100644 --- a/framework/dockwindow/internal/dockwindowactionscontroller.h +++ b/framework/dockwindow/internal/dockwindowactionscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockwindowprovider.cpp b/framework/dockwindow/internal/dockwindowprovider.cpp index 3f9dcbb385..04730e4541 100644 --- a/framework/dockwindow/internal/dockwindowprovider.cpp +++ b/framework/dockwindow/internal/dockwindowprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dockwindowprovider.h b/framework/dockwindow/internal/dockwindowprovider.h index 84c075d3af..be2846e140 100644 --- a/framework/dockwindow/internal/dockwindowprovider.h +++ b/framework/dockwindow/internal/dockwindowprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dropcontroller.cpp b/framework/dockwindow/internal/dropcontroller.cpp index 9cda8b8b99..e6734d91c8 100644 --- a/framework/dockwindow/internal/dropcontroller.cpp +++ b/framework/dockwindow/internal/dropcontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/internal/dropcontroller.h b/framework/dockwindow/internal/dropcontroller.h index 2f0707d2e5..048c6b4f0b 100644 --- a/framework/dockwindow/internal/dropcontroller.h +++ b/framework/dockwindow/internal/dropcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockFloatingWindow.qml b/framework/dockwindow/qml/Muse/Dock/DockFloatingWindow.qml index 4e39720131..a4f1f20135 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockFloatingWindow.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockFloatingWindow.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockFrame.qml b/framework/dockwindow/qml/Muse/Dock/DockFrame.qml index ee8822abfc..f3684be519 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockFrame.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockFrame.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockPage.qml b/framework/dockwindow/qml/Muse/Dock/DockPage.qml index 311bcfc8b0..f149a467ea 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockPage.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockPanel.qml b/framework/dockwindow/qml/Muse/Dock/DockPanel.qml index 299b4bc4ae..65da1679d2 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockPanel.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockPanelTab.qml b/framework/dockwindow/qml/Muse/Dock/DockPanelTab.qml index 51ee471740..86ef90c2b8 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockPanelTab.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockPanelTab.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockSeparator.qml b/framework/dockwindow/qml/Muse/Dock/DockSeparator.qml index 80d35b44bc..f2e476de01 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockSeparator.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockSeparator.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockTabBar.qml b/framework/dockwindow/qml/Muse/Dock/DockTabBar.qml index 24a6cf9713..dab16732cf 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockTabBar.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockTabBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockTitleBar.qml b/framework/dockwindow/qml/Muse/Dock/DockTitleBar.qml index c156c3b312..2dfd8ebcc1 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockTitleBar.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockTitleBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockTitleBarMouseArea.qml b/framework/dockwindow/qml/Muse/Dock/DockTitleBarMouseArea.qml index 3e2e8d25cc..0c1abbfeff 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockTitleBarMouseArea.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockTitleBarMouseArea.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockToolBar.qml b/framework/dockwindow/qml/Muse/Dock/DockToolBar.qml index 9cf8d3189d..2d04504244 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockToolBar.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockToolBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockWidget.qml b/framework/dockwindow/qml/Muse/Dock/DockWidget.qml index 847c302313..56812ed44c 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockWidget.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockWidget.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/DockingHolder.qml b/framework/dockwindow/qml/Muse/Dock/DockingHolder.qml index 8603bc997f..793ba907ca 100644 --- a/framework/dockwindow/qml/Muse/Dock/DockingHolder.qml +++ b/framework/dockwindow/qml/Muse/Dock/DockingHolder.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockcentralview.cpp b/framework/dockwindow/qml/Muse/Dock/dockcentralview.cpp index 718d1b3a7a..e3287ccf9a 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockcentralview.cpp +++ b/framework/dockwindow/qml/Muse/Dock/dockcentralview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockcentralview.h b/framework/dockwindow/qml/Muse/Dock/dockcentralview.h index 5dda901fff..164810faaa 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockcentralview.h +++ b/framework/dockwindow/qml/Muse/Dock/dockcentralview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockframemodel.cpp b/framework/dockwindow/qml/Muse/Dock/dockframemodel.cpp index 1103cbaee6..b6a90b2950 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockframemodel.cpp +++ b/framework/dockwindow/qml/Muse/Dock/dockframemodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockframemodel.h b/framework/dockwindow/qml/Muse/Dock/dockframemodel.h index 93919be195..1872873b7f 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockframemodel.h +++ b/framework/dockwindow/qml/Muse/Dock/dockframemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockingholderview.cpp b/framework/dockwindow/qml/Muse/Dock/dockingholderview.cpp index 4bbe9d3fa5..fea2fe22d4 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockingholderview.cpp +++ b/framework/dockwindow/qml/Muse/Dock/dockingholderview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockingholderview.h b/framework/dockwindow/qml/Muse/Dock/dockingholderview.h index 7c02fcebec..09e4ccd22f 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockingholderview.h +++ b/framework/dockwindow/qml/Muse/Dock/dockingholderview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockpageview.cpp b/framework/dockwindow/qml/Muse/Dock/dockpageview.cpp index 51e5385f2c..92ff7de0b8 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockpageview.cpp +++ b/framework/dockwindow/qml/Muse/Dock/dockpageview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockpageview.h b/framework/dockwindow/qml/Muse/Dock/dockpageview.h index 4a48698782..4f98290186 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockpageview.h +++ b/framework/dockwindow/qml/Muse/Dock/dockpageview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockpanelview.cpp b/framework/dockwindow/qml/Muse/Dock/dockpanelview.cpp index a5923a08cc..fa469a2bd4 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockpanelview.cpp +++ b/framework/dockwindow/qml/Muse/Dock/dockpanelview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockpanelview.h b/framework/dockwindow/qml/Muse/Dock/dockpanelview.h index 9334022aca..0acfc4923e 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockpanelview.h +++ b/framework/dockwindow/qml/Muse/Dock/dockpanelview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockstatusbar.cpp b/framework/dockwindow/qml/Muse/Dock/dockstatusbar.cpp index 76a7c8832b..f616d7fad4 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockstatusbar.cpp +++ b/framework/dockwindow/qml/Muse/Dock/dockstatusbar.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockstatusbar.h b/framework/dockwindow/qml/Muse/Dock/dockstatusbar.h index 934e1caca4..cb78cd1467 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockstatusbar.h +++ b/framework/dockwindow/qml/Muse/Dock/dockstatusbar.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/docktabsmodel.cpp b/framework/dockwindow/qml/Muse/Dock/docktabsmodel.cpp index b925f56f93..2f67a0608c 100644 --- a/framework/dockwindow/qml/Muse/Dock/docktabsmodel.cpp +++ b/framework/dockwindow/qml/Muse/Dock/docktabsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/docktabsmodel.h b/framework/dockwindow/qml/Muse/Dock/docktabsmodel.h index 69b3c03dcc..e25bd0e8ec 100644 --- a/framework/dockwindow/qml/Muse/Dock/docktabsmodel.h +++ b/framework/dockwindow/qml/Muse/Dock/docktabsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/docktoolbarview.cpp b/framework/dockwindow/qml/Muse/Dock/docktoolbarview.cpp index f703fd9d70..c80ad34d6b 100644 --- a/framework/dockwindow/qml/Muse/Dock/docktoolbarview.cpp +++ b/framework/dockwindow/qml/Muse/Dock/docktoolbarview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/docktoolbarview.h b/framework/dockwindow/qml/Muse/Dock/docktoolbarview.h index a4e767b790..1e14cc3585 100644 --- a/framework/dockwindow/qml/Muse/Dock/docktoolbarview.h +++ b/framework/dockwindow/qml/Muse/Dock/docktoolbarview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockwindow.cpp b/framework/dockwindow/qml/Muse/Dock/dockwindow.cpp index 7374d63192..61bf9cacb8 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockwindow.cpp +++ b/framework/dockwindow/qml/Muse/Dock/dockwindow.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/dockwindow.h b/framework/dockwindow/qml/Muse/Dock/dockwindow.h index f6d25b5a3c..8c112d2ac5 100644 --- a/framework/dockwindow/qml/Muse/Dock/dockwindow.h +++ b/framework/dockwindow/qml/Muse/Dock/dockwindow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/foreign.cpp b/framework/dockwindow/qml/Muse/Dock/foreign.cpp index bce7806687..ef5d4ecea4 100644 --- a/framework/dockwindow/qml/Muse/Dock/foreign.cpp +++ b/framework/dockwindow/qml/Muse/Dock/foreign.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/dockwindow/qml/Muse/Dock/foreign.h b/framework/dockwindow/qml/Muse/Dock/foreign.h index d6ac2a21f3..2dbc4c2fc1 100644 --- a/framework/dockwindow/qml/Muse/Dock/foreign.h +++ b/framework/dockwindow/qml/Muse/Dock/foreign.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/dockwindow_v2/CMakeLists.txt b/framework/dockwindow_v2/CMakeLists.txt index 9378c83485..0f31325c82 100644 --- a/framework/dockwindow_v2/CMakeLists.txt +++ b/framework/dockwindow_v2/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/dockmodule.cpp b/framework/dockwindow_v2/dockmodule.cpp index 45a84ab757..c88f32c83a 100644 --- a/framework/dockwindow_v2/dockmodule.cpp +++ b/framework/dockwindow_v2/dockmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/dockmodule.h b/framework/dockwindow_v2/dockmodule.h index 2984c7c652..13a268c95f 100644 --- a/framework/dockwindow_v2/dockmodule.h +++ b/framework/dockwindow_v2/dockmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/docktypes.h b/framework/dockwindow_v2/docktypes.h index 79b2135687..d3cd815dc1 100644 --- a/framework/dockwindow_v2/docktypes.h +++ b/framework/dockwindow_v2/docktypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/idockwindow.h b/framework/dockwindow_v2/idockwindow.h index 43229c4ca3..a34657bd14 100644 --- a/framework/dockwindow_v2/idockwindow.h +++ b/framework/dockwindow_v2/idockwindow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/idockwindowprovider.h b/framework/dockwindow_v2/idockwindowprovider.h index 23f3ff4c38..1e206eb63c 100644 --- a/framework/dockwindow_v2/idockwindowprovider.h +++ b/framework/dockwindow_v2/idockwindowprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockbase.cpp b/framework/dockwindow_v2/internal/dockbase.cpp index 7d785bd083..49b6005771 100644 --- a/framework/dockwindow_v2/internal/dockbase.cpp +++ b/framework/dockwindow_v2/internal/dockbase.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockbase.h b/framework/dockwindow_v2/internal/dockbase.h index 21c43226e4..3e17bc1b14 100644 --- a/framework/dockwindow_v2/internal/dockbase.h +++ b/framework/dockwindow_v2/internal/dockbase.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockseparator.cpp b/framework/dockwindow_v2/internal/dockseparator.cpp index 481261683d..2556425a99 100644 --- a/framework/dockwindow_v2/internal/dockseparator.cpp +++ b/framework/dockwindow_v2/internal/dockseparator.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockseparator.h b/framework/dockwindow_v2/internal/dockseparator.h index 353aa38fed..f2be4cb740 100644 --- a/framework/dockwindow_v2/internal/dockseparator.h +++ b/framework/dockwindow_v2/internal/dockseparator.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/docktabbar.cpp b/framework/dockwindow_v2/internal/docktabbar.cpp index 09d53ff9dd..b66ef08ccc 100644 --- a/framework/dockwindow_v2/internal/docktabbar.cpp +++ b/framework/dockwindow_v2/internal/docktabbar.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Notation & Composition * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/docktabbar.h b/framework/dockwindow_v2/internal/docktabbar.h index d7529cf1b2..1f7d271990 100644 --- a/framework/dockwindow_v2/internal/docktabbar.h +++ b/framework/dockwindow_v2/internal/docktabbar.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/docktitlebar.cpp b/framework/dockwindow_v2/internal/docktitlebar.cpp index 4f8a3321a4..e6d81e2a71 100644 --- a/framework/dockwindow_v2/internal/docktitlebar.cpp +++ b/framework/dockwindow_v2/internal/docktitlebar.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/docktitlebar.h b/framework/dockwindow_v2/internal/docktitlebar.h index b5d162ee6f..4f88bcec6e 100644 --- a/framework/dockwindow_v2/internal/docktitlebar.h +++ b/framework/dockwindow_v2/internal/docktitlebar.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockwindowactionscontroller.cpp b/framework/dockwindow_v2/internal/dockwindowactionscontroller.cpp index 74cc894214..7d086326df 100644 --- a/framework/dockwindow_v2/internal/dockwindowactionscontroller.cpp +++ b/framework/dockwindow_v2/internal/dockwindowactionscontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockwindowactionscontroller.h b/framework/dockwindow_v2/internal/dockwindowactionscontroller.h index fa66e0187a..06513ae763 100644 --- a/framework/dockwindow_v2/internal/dockwindowactionscontroller.h +++ b/framework/dockwindow_v2/internal/dockwindowactionscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockwindowprovider.cpp b/framework/dockwindow_v2/internal/dockwindowprovider.cpp index 3f9dcbb385..04730e4541 100644 --- a/framework/dockwindow_v2/internal/dockwindowprovider.cpp +++ b/framework/dockwindow_v2/internal/dockwindowprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dockwindowprovider.h b/framework/dockwindow_v2/internal/dockwindowprovider.h index 84c075d3af..be2846e140 100644 --- a/framework/dockwindow_v2/internal/dockwindowprovider.h +++ b/framework/dockwindow_v2/internal/dockwindowprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dropcontroller.cpp b/framework/dockwindow_v2/internal/dropcontroller.cpp index b49aa2feb1..5b780b9641 100644 --- a/framework/dockwindow_v2/internal/dropcontroller.cpp +++ b/framework/dockwindow_v2/internal/dropcontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/internal/dropcontroller.h b/framework/dockwindow_v2/internal/dropcontroller.h index b774edffb0..c0e07f477c 100644 --- a/framework/dockwindow_v2/internal/dropcontroller.h +++ b/framework/dockwindow_v2/internal/dropcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockFloatingWindow.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockFloatingWindow.qml index 4e39720131..a4f1f20135 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockFloatingWindow.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockFloatingWindow.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockFrame.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockFrame.qml index fdc2ee584a..28c3c57bb9 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockFrame.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockFrame.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockPage.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockPage.qml index 311bcfc8b0..f149a467ea 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockPage.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockPanel.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockPanel.qml index 299b4bc4ae..65da1679d2 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockPanel.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockPanelTab.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockPanelTab.qml index 51ee471740..86ef90c2b8 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockPanelTab.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockPanelTab.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockSeparator.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockSeparator.qml index 80d35b44bc..f2e476de01 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockSeparator.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockSeparator.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockTabBar.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockTabBar.qml index b05a14ab1f..9ff4118ab5 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockTabBar.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockTabBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBar.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBar.qml index c54cf92cf8..161fefb7fa 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBar.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBarMouseArea.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBarMouseArea.qml index 3e2e8d25cc..0c1abbfeff 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBarMouseArea.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockTitleBarMouseArea.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockToolBar.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockToolBar.qml index 9cf8d3189d..2d04504244 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockToolBar.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockToolBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockWidget.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockWidget.qml index 847c302313..56812ed44c 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockWidget.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockWidget.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/DockingHolder.qml b/framework/dockwindow_v2/qml/Muse/Dock/DockingHolder.qml index 8603bc997f..793ba907ca 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/DockingHolder.qml +++ b/framework/dockwindow_v2/qml/Muse/Dock/DockingHolder.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.cpp b/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.cpp index 718d1b3a7a..e3287ccf9a 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.h b/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.h index 5dda901fff..164810faaa 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockcentralview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.cpp b/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.cpp index 1d1b03582c..2dda680f50 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.h b/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.h index 9fe3d41799..04b465eed0 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockframemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.cpp b/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.cpp index 4bbe9d3fa5..fea2fe22d4 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.h b/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.h index 7c02fcebec..09e4ccd22f 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockingholderview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.cpp b/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.cpp index 51e5385f2c..92ff7de0b8 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.h b/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.h index 4a48698782..4f98290186 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockpageview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.cpp b/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.cpp index ccb479ed7a..47cdc705ed 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.h b/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.h index 9334022aca..0acfc4923e 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockpanelview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.cpp b/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.cpp index 76a7c8832b..f616d7fad4 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.h b/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.h index 934e1caca4..cb78cd1467 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockstatusbar.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.cpp b/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.cpp index 6e0d3229df..684edf41a0 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.h b/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.h index 09e9547c52..c5cb96698e 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/docktabsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.cpp b/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.cpp index 6c104fc879..f7a6fc62ad 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.h b/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.h index 481cb8e142..cfcfd0a3cd 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/docktoolbarview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.cpp b/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.cpp index 234a827863..6d8efe30ce 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.h b/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.h index 84e0e3b402..984956b629 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/dockwindow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/foreign.cpp b/framework/dockwindow_v2/qml/Muse/Dock/foreign.cpp index bce7806687..ef5d4ecea4 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/foreign.cpp +++ b/framework/dockwindow_v2/qml/Muse/Dock/foreign.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/dockwindow_v2/qml/Muse/Dock/foreign.h b/framework/dockwindow_v2/qml/Muse/Dock/foreign.h index d6ac2a21f3..2dbc4c2fc1 100644 --- a/framework/dockwindow_v2/qml/Muse/Dock/foreign.h +++ b/framework/dockwindow_v2/qml/Muse/Dock/foreign.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/draw/bufferedpaintprovider.cpp b/framework/draw/bufferedpaintprovider.cpp index ff911ae639..b4ea5faf49 100644 --- a/framework/draw/bufferedpaintprovider.cpp +++ b/framework/draw/bufferedpaintprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/bufferedpaintprovider.h b/framework/draw/bufferedpaintprovider.h index 96b607f7de..8e6f80a4e8 100644 --- a/framework/draw/bufferedpaintprovider.h +++ b/framework/draw/bufferedpaintprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/cmake/SetupFreeType.cmake b/framework/draw/cmake/SetupFreeType.cmake index 63dc138fb2..2ca02bf2c2 100644 --- a/framework/draw/cmake/SetupFreeType.cmake +++ b/framework/draw/cmake/SetupFreeType.cmake @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/draw/cmake/SetupHarfBuzz.cmake b/framework/draw/cmake/SetupHarfBuzz.cmake index 54ee679965..9342471525 100644 --- a/framework/draw/cmake/SetupHarfBuzz.cmake +++ b/framework/draw/cmake/SetupHarfBuzz.cmake @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/drawmodule.cpp b/framework/draw/drawmodule.cpp index 09ebee6c01..69234f37b9 100644 --- a/framework/draw/drawmodule.cpp +++ b/framework/draw/drawmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/drawmodule.h b/framework/draw/drawmodule.h index 6ee8ae300f..6ead5686c2 100644 --- a/framework/draw/drawmodule.h +++ b/framework/draw/drawmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/fontmetrics.cpp b/framework/draw/fontmetrics.cpp index b3fa21d0b2..17c7b0e87a 100644 --- a/framework/draw/fontmetrics.cpp +++ b/framework/draw/fontmetrics.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/fontmetrics.h b/framework/draw/fontmetrics.h index 1ff1aee5cc..c822548fc4 100644 --- a/framework/draw/fontmetrics.h +++ b/framework/draw/fontmetrics.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/ifontprovider.h b/framework/draw/ifontprovider.h index 775034bd51..136c57835d 100644 --- a/framework/draw/ifontprovider.h +++ b/framework/draw/ifontprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/iimageprovider.h b/framework/draw/iimageprovider.h index fb45372998..734e6afcfe 100644 --- a/framework/draw/iimageprovider.h +++ b/framework/draw/iimageprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/fontengineft.cpp b/framework/draw/internal/fontengineft.cpp index abc519e27f..235e242128 100644 --- a/framework/draw/internal/fontengineft.cpp +++ b/framework/draw/internal/fontengineft.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/fontengineft.h b/framework/draw/internal/fontengineft.h index de49352753..6701cea66a 100644 --- a/framework/draw/internal/fontengineft.h +++ b/framework/draw/internal/fontengineft.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/fontfacedu.cpp b/framework/draw/internal/fontfacedu.cpp index e2ddcbaa1d..0ad8da9a6e 100644 --- a/framework/draw/internal/fontfacedu.cpp +++ b/framework/draw/internal/fontfacedu.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontfacedu.h b/framework/draw/internal/fontfacedu.h index 50e255f992..7a693d8a85 100644 --- a/framework/draw/internal/fontfacedu.h +++ b/framework/draw/internal/fontfacedu.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontfaceft.cpp b/framework/draw/internal/fontfaceft.cpp index 16ca0ec51d..0119c25b64 100644 --- a/framework/draw/internal/fontfaceft.cpp +++ b/framework/draw/internal/fontfaceft.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontfaceft.h b/framework/draw/internal/fontfaceft.h index b26bcbdfaf..3d4a0954c7 100644 --- a/framework/draw/internal/fontfaceft.h +++ b/framework/draw/internal/fontfaceft.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontprovider.cpp b/framework/draw/internal/fontprovider.cpp index c90ab68726..4589100097 100644 --- a/framework/draw/internal/fontprovider.cpp +++ b/framework/draw/internal/fontprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontprovider.h b/framework/draw/internal/fontprovider.h index 3b091d9619..57eb23e646 100644 --- a/framework/draw/internal/fontprovider.h +++ b/framework/draw/internal/fontprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontproviderdispatcher.cpp b/framework/draw/internal/fontproviderdispatcher.cpp index 28a7e67a18..5c82944a11 100644 --- a/framework/draw/internal/fontproviderdispatcher.cpp +++ b/framework/draw/internal/fontproviderdispatcher.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontproviderdispatcher.h b/framework/draw/internal/fontproviderdispatcher.h index 51f0b7025e..fee9dd25f9 100644 --- a/framework/draw/internal/fontproviderdispatcher.h +++ b/framework/draw/internal/fontproviderdispatcher.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontsdatabase.cpp b/framework/draw/internal/fontsdatabase.cpp index 162a5996b8..e6fdb876ea 100644 --- a/framework/draw/internal/fontsdatabase.cpp +++ b/framework/draw/internal/fontsdatabase.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontsdatabase.h b/framework/draw/internal/fontsdatabase.h index 8fad165ba9..4cf039c7e9 100644 --- a/framework/draw/internal/fontsdatabase.h +++ b/framework/draw/internal/fontsdatabase.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontsengine.cpp b/framework/draw/internal/fontsengine.cpp index 7d9bf3d93f..9152e7cf2c 100644 --- a/framework/draw/internal/fontsengine.cpp +++ b/framework/draw/internal/fontsengine.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/fontsengine.h b/framework/draw/internal/fontsengine.h index adb8843395..0a01152260 100644 --- a/framework/draw/internal/fontsengine.h +++ b/framework/draw/internal/fontsengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/ifontface.h b/framework/draw/internal/ifontface.h index 7707f21273..7528a1c3f8 100644 --- a/framework/draw/internal/ifontface.h +++ b/framework/draw/internal/ifontface.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/ifontsdatabase.h b/framework/draw/internal/ifontsdatabase.h index 2e7e4d07fd..e47a3e224d 100644 --- a/framework/draw/internal/ifontsdatabase.h +++ b/framework/draw/internal/ifontsdatabase.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/ifontsengine.h b/framework/draw/internal/ifontsengine.h index 6761214909..022e35070a 100644 --- a/framework/draw/internal/ifontsengine.h +++ b/framework/draw/internal/ifontsengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/internal/qfontprovider.cpp b/framework/draw/internal/qfontprovider.cpp index e64cc8302d..fe492f5d55 100644 --- a/framework/draw/internal/qfontprovider.cpp +++ b/framework/draw/internal/qfontprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/qfontprovider.h b/framework/draw/internal/qfontprovider.h index 37ffaef68c..dd2de12499 100644 --- a/framework/draw/internal/qfontprovider.h +++ b/framework/draw/internal/qfontprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/qimagepainterprovider.cpp b/framework/draw/internal/qimagepainterprovider.cpp index 20c9bafe62..79377e0af7 100644 --- a/framework/draw/internal/qimagepainterprovider.cpp +++ b/framework/draw/internal/qimagepainterprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/qimagepainterprovider.h b/framework/draw/internal/qimagepainterprovider.h index e28fc3f6a9..c5e0e35ac8 100644 --- a/framework/draw/internal/qimagepainterprovider.h +++ b/framework/draw/internal/qimagepainterprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/qimageprovider.h b/framework/draw/internal/qimageprovider.h index 0bd07fd678..998737268d 100644 --- a/framework/draw/internal/qimageprovider.h +++ b/framework/draw/internal/qimageprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/qpainterprovider.cpp b/framework/draw/internal/qpainterprovider.cpp index 6d84612078..ef3c314086 100644 --- a/framework/draw/internal/qpainterprovider.cpp +++ b/framework/draw/internal/qpainterprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/internal/qpainterprovider.h b/framework/draw/internal/qpainterprovider.h index e5b9421ad6..aaa9f3dea0 100644 --- a/framework/draw/internal/qpainterprovider.h +++ b/framework/draw/internal/qpainterprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/ipaintprovider.h b/framework/draw/ipaintprovider.h index 2f442f9719..17090e405f 100644 --- a/framework/draw/ipaintprovider.h +++ b/framework/draw/ipaintprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/painter.cpp b/framework/draw/painter.cpp index 023d327a4c..6398a8954b 100644 --- a/framework/draw/painter.cpp +++ b/framework/draw/painter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/painter.h b/framework/draw/painter.h index 550cd357a5..ef9a830c4e 100644 --- a/framework/draw/painter.h +++ b/framework/draw/painter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/svgrenderer.cpp b/framework/draw/svgrenderer.cpp index 5342ca67bd..19540c1e14 100644 --- a/framework/draw/svgrenderer.cpp +++ b/framework/draw/svgrenderer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/svgrenderer.h b/framework/draw/svgrenderer.h index a4acf96b52..5390e66c63 100644 --- a/framework/draw/svgrenderer.h +++ b/framework/draw/svgrenderer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/tests/CMakeLists.txt b/framework/draw/tests/CMakeLists.txt index f7729e0b27..298c4aa499 100644 --- a/framework/draw/tests/CMakeLists.txt +++ b/framework/draw/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/draw/tests/painter_tests.cpp b/framework/draw/tests/painter_tests.cpp index 15eccede82..18d1d61ee9 100644 --- a/framework/draw/tests/painter_tests.cpp +++ b/framework/draw/tests/painter_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/draw/thirdparty/freetype/CMakeLists.txt b/framework/draw/thirdparty/freetype/CMakeLists.txt index 175391b814..ea9034e1ac 100644 --- a/framework/draw/thirdparty/freetype/CMakeLists.txt +++ b/framework/draw/thirdparty/freetype/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/draw/types/bezier.cpp b/framework/draw/types/bezier.cpp index 23c1f6ab04..d530a95398 100644 --- a/framework/draw/types/bezier.cpp +++ b/framework/draw/types/bezier.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/bezier.h b/framework/draw/types/bezier.h index 57e96692de..546dd06983 100644 --- a/framework/draw/types/bezier.h +++ b/framework/draw/types/bezier.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/brush.h b/framework/draw/types/brush.h index 94c3f393e4..11e141a00a 100644 --- a/framework/draw/types/brush.h +++ b/framework/draw/types/brush.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/color.h b/framework/draw/types/color.h index 895e8173cd..0384a80f50 100644 --- a/framework/draw/types/color.h +++ b/framework/draw/types/color.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/drawdata.h b/framework/draw/types/drawdata.h index 55572b99af..5f3eff0281 100644 --- a/framework/draw/types/drawdata.h +++ b/framework/draw/types/drawdata.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/drawtypes.h b/framework/draw/types/drawtypes.h index 00bcc08c01..c62234da61 100644 --- a/framework/draw/types/drawtypes.h +++ b/framework/draw/types/drawtypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/font.cpp b/framework/draw/types/font.cpp index e7c8369614..53b272110d 100644 --- a/framework/draw/types/font.cpp +++ b/framework/draw/types/font.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/font.h b/framework/draw/types/font.h index c56ddeff07..82e7b8a5b9 100644 --- a/framework/draw/types/font.h +++ b/framework/draw/types/font.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/fontstypes.h b/framework/draw/types/fontstypes.h index d049bd6386..2e36ffe562 100644 --- a/framework/draw/types/fontstypes.h +++ b/framework/draw/types/fontstypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/draw/types/geometry.h b/framework/draw/types/geometry.h index fbbe19e810..9113533a72 100644 --- a/framework/draw/types/geometry.h +++ b/framework/draw/types/geometry.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/matrix.h b/framework/draw/types/matrix.h index a26fc8054a..0d977004ba 100644 --- a/framework/draw/types/matrix.h +++ b/framework/draw/types/matrix.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/painterpath.cpp b/framework/draw/types/painterpath.cpp index c240d13c91..ddf5584772 100644 --- a/framework/draw/types/painterpath.cpp +++ b/framework/draw/types/painterpath.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/painterpath.h b/framework/draw/types/painterpath.h index 18340fabe6..a74d15e14d 100644 --- a/framework/draw/types/painterpath.h +++ b/framework/draw/types/painterpath.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/pen.h b/framework/draw/types/pen.h index 47f37fa00a..335edde096 100644 --- a/framework/draw/types/pen.h +++ b/framework/draw/types/pen.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/pixmap.h b/framework/draw/types/pixmap.h index 5ddb1a6bac..41d3303fec 100644 --- a/framework/draw/types/pixmap.h +++ b/framework/draw/types/pixmap.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/transform.cpp b/framework/draw/types/transform.cpp index 0ff875808c..651042d3d9 100644 --- a/framework/draw/types/transform.cpp +++ b/framework/draw/types/transform.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/types/transform.h b/framework/draw/types/transform.h index 20d5aca297..2e56b27197 100644 --- a/framework/draw/types/transform.h +++ b/framework/draw/types/transform.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatacomp.cpp b/framework/draw/utils/drawdatacomp.cpp index 88b480a163..bce3e7c129 100644 --- a/framework/draw/utils/drawdatacomp.cpp +++ b/framework/draw/utils/drawdatacomp.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatacomp.h b/framework/draw/utils/drawdatacomp.h index 6e686b140a..11f0463f70 100644 --- a/framework/draw/utils/drawdatacomp.h +++ b/framework/draw/utils/drawdatacomp.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatajson.cpp b/framework/draw/utils/drawdatajson.cpp index 8a3df9c3d9..17b06e6795 100644 --- a/framework/draw/utils/drawdatajson.cpp +++ b/framework/draw/utils/drawdatajson.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatajson.h b/framework/draw/utils/drawdatajson.h index 6e723f1915..32fc3c2a5b 100644 --- a/framework/draw/utils/drawdatajson.h +++ b/framework/draw/utils/drawdatajson.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatapaint.cpp b/framework/draw/utils/drawdatapaint.cpp index 4daaab495b..f5740f9384 100644 --- a/framework/draw/utils/drawdatapaint.cpp +++ b/framework/draw/utils/drawdatapaint.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatapaint.h b/framework/draw/utils/drawdatapaint.h index 95eba44526..d95c267248 100644 --- a/framework/draw/utils/drawdatapaint.h +++ b/framework/draw/utils/drawdatapaint.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatarw.cpp b/framework/draw/utils/drawdatarw.cpp index 9a587cee88..a8e084f448 100644 --- a/framework/draw/utils/drawdatarw.cpp +++ b/framework/draw/utils/drawdatarw.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawdatarw.h b/framework/draw/utils/drawdatarw.h index d513bb79c5..7541a411d8 100644 --- a/framework/draw/utils/drawdatarw.h +++ b/framework/draw/utils/drawdatarw.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawlogger.cpp b/framework/draw/utils/drawlogger.cpp index 2f2c1f24fe..f3f0154d39 100644 --- a/framework/draw/utils/drawlogger.cpp +++ b/framework/draw/utils/drawlogger.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/draw/utils/drawlogger.h b/framework/draw/utils/drawlogger.h index b78747be02..485abd397d 100644 --- a/framework/draw/utils/drawlogger.h +++ b/framework/draw/utils/drawlogger.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/api/extapi.cpp b/framework/extensions/api/extapi.cpp index fef589e1d1..06e63be060 100644 --- a/framework/extensions/api/extapi.cpp +++ b/framework/extensions/api/extapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/api/extapi.h b/framework/extensions/api/extapi.h index 6c258acd6d..c5bd5af15b 100644 --- a/framework/extensions/api/extapi.h +++ b/framework/extensions/api/extapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/api/v1/extapiv1.cpp b/framework/extensions/api/v1/extapiv1.cpp index 8228f46a00..5a091422b7 100644 --- a/framework/extensions/api/v1/extapiv1.cpp +++ b/framework/extensions/api/v1/extapiv1.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/api/v1/extapiv1.h b/framework/extensions/api/v1/extapiv1.h index 8ede5b5295..4c1e0a63a5 100644 --- a/framework/extensions/api/v1/extapiv1.h +++ b/framework/extensions/api/v1/extapiv1.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/api/v1/filedialog.cpp b/framework/extensions/api/v1/filedialog.cpp index 0a3397435f..fb0cc31d50 100644 --- a/framework/extensions/api/v1/filedialog.cpp +++ b/framework/extensions/api/v1/filedialog.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/api/v1/filedialog.h b/framework/extensions/api/v1/filedialog.h index 946aafb0ec..7790bf81ed 100644 --- a/framework/extensions/api/v1/filedialog.h +++ b/framework/extensions/api/v1/filedialog.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/api/v1/iapiv1object.h b/framework/extensions/api/v1/iapiv1object.h index ee9f009fd6..44025e4adc 100644 --- a/framework/extensions/api/v1/iapiv1object.h +++ b/framework/extensions/api/v1/iapiv1object.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/api/v1/ipluginapiv1.h b/framework/extensions/api/v1/ipluginapiv1.h index d029b8121b..566192b7d7 100644 --- a/framework/extensions/api/v1/ipluginapiv1.h +++ b/framework/extensions/api/v1/ipluginapiv1.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/api/v1/messagedialog.cpp b/framework/extensions/api/v1/messagedialog.cpp index 6fa88a1358..7f1c1dad30 100644 --- a/framework/extensions/api/v1/messagedialog.cpp +++ b/framework/extensions/api/v1/messagedialog.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/api/v1/messagedialog.h b/framework/extensions/api/v1/messagedialog.h index a6e3f39b99..48e4db15e6 100644 --- a/framework/extensions/api/v1/messagedialog.h +++ b/framework/extensions/api/v1/messagedialog.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/extensionserrors.h b/framework/extensions/extensionserrors.h index 95830fa7ad..54a71a70f7 100644 --- a/framework/extensions/extensionserrors.h +++ b/framework/extensions/extensionserrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/extensionsmodule.cpp b/framework/extensions/extensionsmodule.cpp index 04470d0632..3dc9a379f8 100644 --- a/framework/extensions/extensionsmodule.cpp +++ b/framework/extensions/extensionsmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/extensionsmodule.h b/framework/extensions/extensionsmodule.h index 447016b1e6..933f128ae0 100644 --- a/framework/extensions/extensionsmodule.h +++ b/framework/extensions/extensionsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/extensionstypes.h b/framework/extensions/extensionstypes.h index 5e3c13cbfb..436e903054 100644 --- a/framework/extensions/extensionstypes.h +++ b/framework/extensions/extensionstypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/iextensionsconfiguration.h b/framework/extensions/iextensionsconfiguration.h index 6b1e548fc4..b22983dca6 100644 --- a/framework/extensions/iextensionsconfiguration.h +++ b/framework/extensions/iextensionsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/iextensionsexecpointsregister.h b/framework/extensions/iextensionsexecpointsregister.h index c6ce7e9095..117f43f87c 100644 --- a/framework/extensions/iextensionsexecpointsregister.h +++ b/framework/extensions/iextensionsexecpointsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/iextensionsprovider.h b/framework/extensions/iextensionsprovider.h index dd5673853c..f8203510d5 100644 --- a/framework/extensions/iextensionsprovider.h +++ b/framework/extensions/iextensionsprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/iextensionsuiengine.h b/framework/extensions/iextensionsuiengine.h index 7d0b95f7a6..ed9cea9106 100644 --- a/framework/extensions/iextensionsuiengine.h +++ b/framework/extensions/iextensionsuiengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionrunner.cpp b/framework/extensions/internal/extensionrunner.cpp index 97e688cc42..a94d04afa7 100644 --- a/framework/extensions/internal/extensionrunner.cpp +++ b/framework/extensions/internal/extensionrunner.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionrunner.h b/framework/extensions/internal/extensionrunner.h index f37f88667f..4237359562 100644 --- a/framework/extensions/internal/extensionrunner.h +++ b/framework/extensions/internal/extensionrunner.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsactioncontroller.cpp b/framework/extensions/internal/extensionsactioncontroller.cpp index cc80d36106..28a8e51f97 100644 --- a/framework/extensions/internal/extensionsactioncontroller.cpp +++ b/framework/extensions/internal/extensionsactioncontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsactioncontroller.h b/framework/extensions/internal/extensionsactioncontroller.h index c8bcf30fb2..f4d4dfffc8 100644 --- a/framework/extensions/internal/extensionsactioncontroller.h +++ b/framework/extensions/internal/extensionsactioncontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsconfiguration.cpp b/framework/extensions/internal/extensionsconfiguration.cpp index 2a09f9c1c7..d46c6fa213 100644 --- a/framework/extensions/internal/extensionsconfiguration.cpp +++ b/framework/extensions/internal/extensionsconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsconfiguration.h b/framework/extensions/internal/extensionsconfiguration.h index aa853a1297..d871cbc3bb 100644 --- a/framework/extensions/internal/extensionsconfiguration.h +++ b/framework/extensions/internal/extensionsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsexecpointsregister.cpp b/framework/extensions/internal/extensionsexecpointsregister.cpp index e89a550424..9cae2ef40d 100644 --- a/framework/extensions/internal/extensionsexecpointsregister.cpp +++ b/framework/extensions/internal/extensionsexecpointsregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsexecpointsregister.h b/framework/extensions/internal/extensionsexecpointsregister.h index 6c6237e71e..3aa6b86a04 100644 --- a/framework/extensions/internal/extensionsexecpointsregister.h +++ b/framework/extensions/internal/extensionsexecpointsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsloader.cpp b/framework/extensions/internal/extensionsloader.cpp index 4aba07dffc..90d232b4f7 100644 --- a/framework/extensions/internal/extensionsloader.cpp +++ b/framework/extensions/internal/extensionsloader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsloader.h b/framework/extensions/internal/extensionsloader.h index 45d5860cfd..09c4fdb131 100644 --- a/framework/extensions/internal/extensionsloader.h +++ b/framework/extensions/internal/extensionsloader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsprovider.cpp b/framework/extensions/internal/extensionsprovider.cpp index a384e5aeb1..9fcd8a8684 100644 --- a/framework/extensions/internal/extensionsprovider.cpp +++ b/framework/extensions/internal/extensionsprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsprovider.h b/framework/extensions/internal/extensionsprovider.h index ebb90033f3..37a39f7c44 100644 --- a/framework/extensions/internal/extensionsprovider.h +++ b/framework/extensions/internal/extensionsprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsuiactions.cpp b/framework/extensions/internal/extensionsuiactions.cpp index 6d7130449a..cac51ed5c0 100644 --- a/framework/extensions/internal/extensionsuiactions.cpp +++ b/framework/extensions/internal/extensionsuiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsuiactions.h b/framework/extensions/internal/extensionsuiactions.h index f589cffac2..c65a8a63c2 100644 --- a/framework/extensions/internal/extensionsuiactions.h +++ b/framework/extensions/internal/extensionsuiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsuiengine.cpp b/framework/extensions/internal/extensionsuiengine.cpp index 9605f18b27..376b15af8f 100644 --- a/framework/extensions/internal/extensionsuiengine.cpp +++ b/framework/extensions/internal/extensionsuiengine.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/extensionsuiengine.h b/framework/extensions/internal/extensionsuiengine.h index c1b79967d7..cb15c6392a 100644 --- a/framework/extensions/internal/extensionsuiengine.h +++ b/framework/extensions/internal/extensionsuiengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/jsmoduleloader.cpp b/framework/extensions/internal/jsmoduleloader.cpp index a8fa2fd835..89a0f4d5d9 100644 --- a/framework/extensions/internal/jsmoduleloader.cpp +++ b/framework/extensions/internal/jsmoduleloader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/jsmoduleloader.h b/framework/extensions/internal/jsmoduleloader.h index 994db56312..972712c576 100644 --- a/framework/extensions/internal/jsmoduleloader.h +++ b/framework/extensions/internal/jsmoduleloader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/legacy/extpluginrunner.cpp b/framework/extensions/internal/legacy/extpluginrunner.cpp index 89658161da..4a67b7b374 100644 --- a/framework/extensions/internal/legacy/extpluginrunner.cpp +++ b/framework/extensions/internal/legacy/extpluginrunner.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/legacy/extpluginrunner.h b/framework/extensions/internal/legacy/extpluginrunner.h index 54fcd37465..73bf6a3a1e 100644 --- a/framework/extensions/internal/legacy/extpluginrunner.h +++ b/framework/extensions/internal/legacy/extpluginrunner.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/legacy/extpluginsloader.cpp b/framework/extensions/internal/legacy/extpluginsloader.cpp index 2f05ead5ff..78b1923a7a 100644 --- a/framework/extensions/internal/legacy/extpluginsloader.cpp +++ b/framework/extensions/internal/legacy/extpluginsloader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/legacy/extpluginsloader.h b/framework/extensions/internal/legacy/extpluginsloader.h index 174e8d5ee1..9e015271df 100644 --- a/framework/extensions/internal/legacy/extpluginsloader.h +++ b/framework/extensions/internal/legacy/extpluginsloader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/scriptengine.cpp b/framework/extensions/internal/scriptengine.cpp index 06c3567acb..91e7fe3877 100644 --- a/framework/extensions/internal/scriptengine.cpp +++ b/framework/extensions/internal/scriptengine.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/internal/scriptengine.h b/framework/extensions/internal/scriptengine.h index 8369ea12a2..270c1be0bc 100644 --- a/framework/extensions/internal/scriptengine.h +++ b/framework/extensions/internal/scriptengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/ExtensionViewer.qml b/framework/extensions/qml/Muse/Extensions/ExtensionViewer.qml index 3bc5af26ff..0df18071a5 100644 --- a/framework/extensions/qml/Muse/Extensions/ExtensionViewer.qml +++ b/framework/extensions/qml/Muse/Extensions/ExtensionViewer.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/ExtensionViewerDialog.qml b/framework/extensions/qml/Muse/Extensions/ExtensionViewerDialog.qml index 9b31eed581..ba1c9aa742 100644 --- a/framework/extensions/qml/Muse/Extensions/ExtensionViewerDialog.qml +++ b/framework/extensions/qml/Muse/Extensions/ExtensionViewerDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/ExtensionsApiDumpDialog.qml b/framework/extensions/qml/Muse/Extensions/ExtensionsApiDumpDialog.qml index d0e77d6638..8bec1087c3 100644 --- a/framework/extensions/qml/Muse/Extensions/ExtensionsApiDumpDialog.qml +++ b/framework/extensions/qml/Muse/Extensions/ExtensionsApiDumpDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/ExtensionsListPanel.qml b/framework/extensions/qml/Muse/Extensions/ExtensionsListPanel.qml index 724ae0802d..b8f10d5343 100644 --- a/framework/extensions/qml/Muse/Extensions/ExtensionsListPanel.qml +++ b/framework/extensions/qml/Muse/Extensions/ExtensionsListPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.cpp b/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.cpp index 40de63223f..f0c4dbe18c 100644 --- a/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.cpp +++ b/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.h b/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.h index 11f01bb62f..c4f0a4ba7e 100644 --- a/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.h +++ b/framework/extensions/qml/Muse/Extensions/devtools/apidumpmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.cpp b/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.cpp index 0656fa2637..086ecd7a5f 100644 --- a/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.cpp +++ b/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.h b/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.h index 0129525d7d..da20037e81 100644 --- a/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.h +++ b/framework/extensions/qml/Muse/Extensions/devtools/devextensionslistmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/extensionbuilder.cpp b/framework/extensions/qml/Muse/Extensions/extensionbuilder.cpp index 14c3289c0a..4b644e0ed8 100644 --- a/framework/extensions/qml/Muse/Extensions/extensionbuilder.cpp +++ b/framework/extensions/qml/Muse/Extensions/extensionbuilder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/extensionbuilder.h b/framework/extensions/qml/Muse/Extensions/extensionbuilder.h index 1103b424c8..596994efb9 100644 --- a/framework/extensions/qml/Muse/Extensions/extensionbuilder.h +++ b/framework/extensions/qml/Muse/Extensions/extensionbuilder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/extensionslistmodel.cpp b/framework/extensions/qml/Muse/Extensions/extensionslistmodel.cpp index f6640055a1..41cc32a693 100644 --- a/framework/extensions/qml/Muse/Extensions/extensionslistmodel.cpp +++ b/framework/extensions/qml/Muse/Extensions/extensionslistmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/extensionslistmodel.h b/framework/extensions/qml/Muse/Extensions/extensionslistmodel.h index a9ed260d1d..b4f9029272 100644 --- a/framework/extensions/qml/Muse/Extensions/extensionslistmodel.h +++ b/framework/extensions/qml/Muse/Extensions/extensionslistmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.cpp b/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.cpp index 204dd9e3d4..0a06c5ca7d 100644 --- a/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.cpp +++ b/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.h b/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.h index 7ef48e91b7..61c6898ddb 100644 --- a/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.h +++ b/framework/extensions/qml/Muse/Extensions/extensionstoolbarmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/internal/EnablePanel.qml b/framework/extensions/qml/Muse/Extensions/internal/EnablePanel.qml index be1f3eb645..030cc1c112 100644 --- a/framework/extensions/qml/Muse/Extensions/internal/EnablePanel.qml +++ b/framework/extensions/qml/Muse/Extensions/internal/EnablePanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/internal/ExtensionItem.qml b/framework/extensions/qml/Muse/Extensions/internal/ExtensionItem.qml index 0928af8dcb..faf16c3752 100644 --- a/framework/extensions/qml/Muse/Extensions/internal/ExtensionItem.qml +++ b/framework/extensions/qml/Muse/Extensions/internal/ExtensionItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/extensions/qml/Muse/Extensions/internal/ExtensionsListView.qml b/framework/extensions/qml/Muse/Extensions/internal/ExtensionsListView.qml index 14985d81de..af7f7b9f6f 100644 --- a/framework/extensions/qml/Muse/Extensions/internal/ExtensionsListView.qml +++ b/framework/extensions/qml/Muse/Extensions/internal/ExtensionsListView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/allocator.cpp b/framework/global/allocator.cpp index df78274328..5015d2b484 100644 --- a/framework/global/allocator.cpp +++ b/framework/global/allocator.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/allocator.h b/framework/global/allocator.h index 40af76e6af..22e8c37084 100644 --- a/framework/global/allocator.h +++ b/framework/global/allocator.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/apiobject.cpp b/framework/global/api/apiobject.cpp index 82ea7fb02e..159c4dd25d 100644 --- a/framework/global/api/apiobject.cpp +++ b/framework/global/api/apiobject.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/apiobject.h b/framework/global/api/apiobject.h index 907c85b453..0b057d8b58 100644 --- a/framework/global/api/apiobject.h +++ b/framework/global/api/apiobject.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/apitypes.h b/framework/global/api/apitypes.h index 2ae0fafac6..9882979dcd 100644 --- a/framework/global/api/apitypes.h +++ b/framework/global/api/apitypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/apiutils.h b/framework/global/api/apiutils.h index 4b3b3666ec..81492d9c3e 100644 --- a/framework/global/api/apiutils.h +++ b/framework/global/api/apiutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/filesystemapi.cpp b/framework/global/api/filesystemapi.cpp index a5df2a6750..0a63f219eb 100644 --- a/framework/global/api/filesystemapi.cpp +++ b/framework/global/api/filesystemapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/global/api/filesystemapi.h b/framework/global/api/filesystemapi.h index 45afb116b1..8f14b296ec 100644 --- a/framework/global/api/filesystemapi.h +++ b/framework/global/api/filesystemapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/global/api/iapiengine.h b/framework/global/api/iapiengine.h index fb739d099d..ffddededf6 100644 --- a/framework/global/api/iapiengine.h +++ b/framework/global/api/iapiengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/api/iapiregister.h b/framework/global/api/iapiregister.h index 9ee3c469e9..0b8a70680d 100644 --- a/framework/global/api/iapiregister.h +++ b/framework/global/api/iapiregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/internal/apiregister.cpp b/framework/global/api/internal/apiregister.cpp index f95b41b7c8..eb4910d549 100644 --- a/framework/global/api/internal/apiregister.cpp +++ b/framework/global/api/internal/apiregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/internal/apiregister.h b/framework/global/api/internal/apiregister.h index c00720805f..e55678f939 100644 --- a/framework/global/api/internal/apiregister.h +++ b/framework/global/api/internal/apiregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/jsretval.h b/framework/global/api/jsretval.h index 43839cbec8..eef12bf7ff 100644 --- a/framework/global/api/jsretval.h +++ b/framework/global/api/jsretval.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/logapi.cpp b/framework/global/api/logapi.cpp index ae05cab17f..ae9225bbed 100644 --- a/framework/global/api/logapi.cpp +++ b/framework/global/api/logapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/logapi.h b/framework/global/api/logapi.h index c3b1c7a7c1..e52a52bd2a 100644 --- a/framework/global/api/logapi.h +++ b/framework/global/api/logapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/api/processapi.cpp b/framework/global/api/processapi.cpp index 9b81afc2fe..f3a66798fe 100644 --- a/framework/global/api/processapi.cpp +++ b/framework/global/api/processapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/global/api/processapi.h b/framework/global/api/processapi.h index cd1e3c0e8d..bf666b90c8 100644 --- a/framework/global/api/processapi.h +++ b/framework/global/api/processapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/global/async/async.h b/framework/global/async/async.h index 26a3e943fb..f406220826 100644 --- a/framework/global/async/async.h +++ b/framework/global/async/async.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/async/asyncable.h b/framework/global/async/asyncable.h index 4f336ea887..b04dffc8ed 100644 --- a/framework/global/async/asyncable.h +++ b/framework/global/async/asyncable.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/async/channel.h b/framework/global/async/channel.h index 9d4c33ed15..a31378fe0b 100644 --- a/framework/global/async/channel.h +++ b/framework/global/async/channel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/async/notification.h b/framework/global/async/notification.h index cefc937c1f..eeb5d09604 100644 --- a/framework/global/async/notification.h +++ b/framework/global/async/notification.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/async/notifylist.h b/framework/global/async/notifylist.h index d8c9461261..ac537c9a88 100644 --- a/framework/global/async/notifylist.h +++ b/framework/global/async/notifylist.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/async/processevents.h b/framework/global/async/processevents.h index 203e983c70..f4a4dd7e76 100644 --- a/framework/global/async/processevents.h +++ b/framework/global/async/processevents.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/async/promise.h b/framework/global/async/promise.h index d985c14d94..7137ff1cf3 100644 --- a/framework/global/async/promise.h +++ b/framework/global/async/promise.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/concurrency/concurrent.h b/framework/global/concurrency/concurrent.h index 5a545a57b6..97a3268d3a 100644 --- a/framework/global/concurrency/concurrent.h +++ b/framework/global/concurrency/concurrent.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/global/concurrency/ringqueue.h b/framework/global/concurrency/ringqueue.h index 277f8a7ceb..f9f6bbd3ff 100644 --- a/framework/global/concurrency/ringqueue.h +++ b/framework/global/concurrency/ringqueue.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/concurrency/rpcqueue.h b/framework/global/concurrency/rpcqueue.h index 4a3f091605..ee19cb57df 100644 --- a/framework/global/concurrency/rpcqueue.h +++ b/framework/global/concurrency/rpcqueue.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/concurrency/taskscheduler.h b/framework/global/concurrency/taskscheduler.h index 18e71134b0..350bb1d9e2 100644 --- a/framework/global/concurrency/taskscheduler.h +++ b/framework/global/concurrency/taskscheduler.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/global/concurrency/threadutils.h b/framework/global/concurrency/threadutils.h index f71f587f63..755f912583 100644 --- a/framework/global/concurrency/threadutils.h +++ b/framework/global/concurrency/threadutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/configreader.cpp b/framework/global/configreader.cpp index 6b8e4b4350..2617a7d603 100644 --- a/framework/global/configreader.cpp +++ b/framework/global/configreader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/configreader.h b/framework/global/configreader.h index 435a9316b9..a4e6f48d74 100644 --- a/framework/global/configreader.h +++ b/framework/global/configreader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/containers.h b/framework/global/containers.h index 6a34875426..f8402c4172 100644 --- a/framework/global/containers.h +++ b/framework/global/containers.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/dataformatter.cpp b/framework/global/dataformatter.cpp index 986a712203..6cf9a7494b 100644 --- a/framework/global/dataformatter.cpp +++ b/framework/global/dataformatter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/dataformatter.h b/framework/global/dataformatter.h index 1ec19203a8..999381e6b2 100644 --- a/framework/global/dataformatter.h +++ b/framework/global/dataformatter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/defer.h b/framework/global/defer.h index 689eba71e3..c98fa9560f 100644 --- a/framework/global/defer.h +++ b/framework/global/defer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/dlib.h b/framework/global/dlib.h index 4931f44cb7..5a3a60ad0f 100644 --- a/framework/global/dlib.h +++ b/framework/global/dlib.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/global/globalmodule.cpp b/framework/global/globalmodule.cpp index 84f41b722a..838ae2e12c 100644 --- a/framework/global/globalmodule.cpp +++ b/framework/global/globalmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/globalmodule.h b/framework/global/globalmodule.h index 37833c1be4..fcd3c9452a 100644 --- a/framework/global/globalmodule.h +++ b/framework/global/globalmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/globaltypes.h b/framework/global/globaltypes.h index a5eea92858..5bec705ad1 100644 --- a/framework/global/globaltypes.h +++ b/framework/global/globaltypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/iapplication.h b/framework/global/iapplication.h index 5b990d432f..f279f0b1f4 100644 --- a/framework/global/iapplication.h +++ b/framework/global/iapplication.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/icryptographichash.h b/framework/global/icryptographichash.h index 46e9e42184..6cfcb524c6 100644 --- a/framework/global/icryptographichash.h +++ b/framework/global/icryptographichash.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/iglobalconfiguration.h b/framework/global/iglobalconfiguration.h index e58994a807..8399d4fc94 100644 --- a/framework/global/iglobalconfiguration.h +++ b/framework/global/iglobalconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/baseapplication.cpp b/framework/global/internal/baseapplication.cpp index 66e093f3ca..2dff4fea71 100644 --- a/framework/global/internal/baseapplication.cpp +++ b/framework/global/internal/baseapplication.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others @@ -45,8 +45,8 @@ using namespace muse; String BaseApplication::appName() { -#ifdef MUSE_APP_NAME - return String::fromAscii(MUSE_APP_NAME); +#ifdef MUSE_APP_NAME_MACHINE_READABLE + return String::fromAscii(MUSE_APP_NAME_MACHINE_READABLE); #else return String(); #endif @@ -54,11 +54,11 @@ String BaseApplication::appName() String BaseApplication::appTitle() { -#ifdef MUSE_APP_TITLE +#ifdef MUSE_APP_NAME_HUMAN_READABLE #ifdef MUSE_APP_UNSTABLE - return String::fromAscii(MUSE_APP_TITLE) + u" Development"; + return String::fromAscii(MUSE_APP_NAME_HUMAN_READABLE) + u" Development"; #else - return String::fromAscii(MUSE_APP_TITLE); + return String::fromAscii(MUSE_APP_NAME_HUMAN_READABLE); #endif #else return String(); diff --git a/framework/global/internal/baseapplication.h b/framework/global/internal/baseapplication.h index 84d79bbf3d..42c3902649 100644 --- a/framework/global/internal/baseapplication.h +++ b/framework/global/internal/baseapplication.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/cmdoptions.h b/framework/global/internal/cmdoptions.h index a3948aa9e3..bce577fd3b 100644 --- a/framework/global/internal/cmdoptions.h +++ b/framework/global/internal/cmdoptions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/global/internal/consoleapplication.cpp b/framework/global/internal/consoleapplication.cpp index 2a1cbfd7c7..7a21df41dd 100644 --- a/framework/global/internal/consoleapplication.cpp +++ b/framework/global/internal/consoleapplication.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/global/internal/consoleapplication.h b/framework/global/internal/consoleapplication.h index 4c2b9a6b2b..da0ff78be2 100644 --- a/framework/global/internal/consoleapplication.h +++ b/framework/global/internal/consoleapplication.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/global/internal/cryptographichash.cpp b/framework/global/internal/cryptographichash.cpp index 80e103daf6..9aeaa3ff39 100644 --- a/framework/global/internal/cryptographichash.cpp +++ b/framework/global/internal/cryptographichash.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/cryptographichash.h b/framework/global/internal/cryptographichash.h index 695a12dd50..3abb4d8e44 100644 --- a/framework/global/internal/cryptographichash.h +++ b/framework/global/internal/cryptographichash.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/globalconfiguration.cpp b/framework/global/internal/globalconfiguration.cpp index 1fd09a8da4..ad5257bb89 100644 --- a/framework/global/internal/globalconfiguration.cpp +++ b/framework/global/internal/globalconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/globalconfiguration.h b/framework/global/internal/globalconfiguration.h index f3caa79eed..2a817e64da 100644 --- a/framework/global/internal/globalconfiguration.h +++ b/framework/global/internal/globalconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/process.cpp b/framework/global/internal/process.cpp index c1cc710345..8688af3c38 100644 --- a/framework/global/internal/process.cpp +++ b/framework/global/internal/process.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/process.h b/framework/global/internal/process.h index 645fba2cc1..1432c93cda 100644 --- a/framework/global/internal/process.h +++ b/framework/global/internal/process.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/systeminfo.cpp b/framework/global/internal/systeminfo.cpp index 0150881039..f3f5cbc116 100644 --- a/framework/global/internal/systeminfo.cpp +++ b/framework/global/internal/systeminfo.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/internal/systeminfo.h b/framework/global/internal/systeminfo.h index 7bbc6bbd2e..2afcd49a69 100644 --- a/framework/global/internal/systeminfo.h +++ b/framework/global/internal/systeminfo.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/internal/tickerprovider.cpp b/framework/global/internal/tickerprovider.cpp index b4174ec613..ddd694c9d2 100644 --- a/framework/global/internal/tickerprovider.cpp +++ b/framework/global/internal/tickerprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/internal/tickerprovider.h b/framework/global/internal/tickerprovider.h index c35e6cafd0..b6c091f8c3 100644 --- a/framework/global/internal/tickerprovider.h +++ b/framework/global/internal/tickerprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/interpolation.h b/framework/global/interpolation.h index 5fc19e1ad1..3803088713 100644 --- a/framework/global/interpolation.h +++ b/framework/global/interpolation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/global/io/buffer.cpp b/framework/global/io/buffer.cpp index 7e9bb409b8..571809753d 100644 --- a/framework/global/io/buffer.cpp +++ b/framework/global/io/buffer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/buffer.h b/framework/global/io/buffer.h index 5730f0c0a5..ccda145658 100644 --- a/framework/global/io/buffer.h +++ b/framework/global/io/buffer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/dir.cpp b/framework/global/io/dir.cpp index 88c7e38f09..37c455d069 100644 --- a/framework/global/io/dir.cpp +++ b/framework/global/io/dir.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/dir.h b/framework/global/io/dir.h index f62a9f42f9..0cb7245d46 100644 --- a/framework/global/io/dir.h +++ b/framework/global/io/dir.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/file.cpp b/framework/global/io/file.cpp index d5339a01cc..a407d065e0 100644 --- a/framework/global/io/file.cpp +++ b/framework/global/io/file.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/io/file.h b/framework/global/io/file.h index 157d0a00ab..18af0416d1 100644 --- a/framework/global/io/file.h +++ b/framework/global/io/file.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/io/fileinfo.cpp b/framework/global/io/fileinfo.cpp index 22cb36404d..01f9673573 100644 --- a/framework/global/io/fileinfo.cpp +++ b/framework/global/io/fileinfo.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/fileinfo.h b/framework/global/io/fileinfo.h index 85da9a711b..fe6a19c7cc 100644 --- a/framework/global/io/fileinfo.h +++ b/framework/global/io/fileinfo.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/filestream.cpp b/framework/global/io/filestream.cpp index 0f2e108e93..c60c808c30 100644 --- a/framework/global/io/filestream.cpp +++ b/framework/global/io/filestream.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/global/io/filestream.h b/framework/global/io/filestream.h index fd01f5cace..737b65e27c 100644 --- a/framework/global/io/filestream.h +++ b/framework/global/io/filestream.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/global/io/filesystemwatcher.cpp b/framework/global/io/filesystemwatcher.cpp index 887d17f74a..b677b74b9d 100644 --- a/framework/global/io/filesystemwatcher.cpp +++ b/framework/global/io/filesystemwatcher.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/filesystemwatcher.h b/framework/global/io/filesystemwatcher.h index 0335886972..1c135acc8a 100644 --- a/framework/global/io/filesystemwatcher.h +++ b/framework/global/io/filesystemwatcher.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/ifilesystem.h b/framework/global/io/ifilesystem.h index b39b9889bf..b6e1abae61 100644 --- a/framework/global/io/ifilesystem.h +++ b/framework/global/io/ifilesystem.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/internal/filesystem.cpp b/framework/global/io/internal/filesystem.cpp index 64e94f6235..f2e6a49ffd 100644 --- a/framework/global/io/internal/filesystem.cpp +++ b/framework/global/io/internal/filesystem.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/internal/filesystem.h b/framework/global/io/internal/filesystem.h index a37e5e71e8..c6d08ed00c 100644 --- a/framework/global/io/internal/filesystem.h +++ b/framework/global/io/internal/filesystem.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/iodevice.cpp b/framework/global/io/iodevice.cpp index 1b32c0948b..4bb07e3319 100644 --- a/framework/global/io/iodevice.cpp +++ b/framework/global/io/iodevice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/io/iodevice.h b/framework/global/io/iodevice.h index 06fc7a31e0..66760e6bfe 100644 --- a/framework/global/io/iodevice.h +++ b/framework/global/io/iodevice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/io/ioenums.h b/framework/global/io/ioenums.h index 68141e0624..2dc83860e8 100644 --- a/framework/global/io/ioenums.h +++ b/framework/global/io/ioenums.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/ioretcodes.h b/framework/global/io/ioretcodes.h index bd81a26c18..15ac3ebb1d 100644 --- a/framework/global/io/ioretcodes.h +++ b/framework/global/io/ioretcodes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/path.cpp b/framework/global/io/path.cpp index 61f6244a97..c9801b9153 100644 --- a/framework/global/io/path.cpp +++ b/framework/global/io/path.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/io/path.h b/framework/global/io/path.h index e1564ee5f4..7179b05474 100644 --- a/framework/global/io/path.h +++ b/framework/global/io/path.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/iprocess.h b/framework/global/iprocess.h index ca7abe485d..cbbf639d0b 100644 --- a/framework/global/iprocess.h +++ b/framework/global/iprocess.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/isysteminfo.h b/framework/global/isysteminfo.h index 2bf908f4a1..48af7f5b83 100644 --- a/framework/global/isysteminfo.h +++ b/framework/global/isysteminfo.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/itickerprovider.h b/framework/global/itickerprovider.h index c4bb23d6ba..5d2dc96ce2 100644 --- a/framework/global/itickerprovider.h +++ b/framework/global/itickerprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/log.h b/framework/global/log.h index 176d83baaf..dffce24e5b 100644 --- a/framework/global/log.h +++ b/framework/global/log.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/logger.h b/framework/global/logger.h index 946aa30cff..64fd670d9e 100644 --- a/framework/global/logger.h +++ b/framework/global/logger.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/logremover.cpp b/framework/global/logremover.cpp index 66dfe02582..4f64500818 100644 --- a/framework/global/logremover.cpp +++ b/framework/global/logremover.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/logremover.h b/framework/global/logremover.h index aef734c47f..8c4411d6de 100644 --- a/framework/global/logremover.h +++ b/framework/global/logremover.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/logstream.h b/framework/global/logstream.h index f6d2ed36ae..b95d21f1a9 100644 --- a/framework/global/logstream.h +++ b/framework/global/logstream.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/modularity/imoduleinterface.h b/framework/global/modularity/imoduleinterface.h index 32b9a93546..f5165c01bd 100644 --- a/framework/global/modularity/imoduleinterface.h +++ b/framework/global/modularity/imoduleinterface.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/modularity/imodulesetup.h b/framework/global/modularity/imodulesetup.h index 8d02ab1a2a..96975b4d07 100644 --- a/framework/global/modularity/imodulesetup.h +++ b/framework/global/modularity/imodulesetup.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/modularity/ioc.h b/framework/global/modularity/ioc.h index 40d2c461a5..c9ada2a5bf 100644 --- a/framework/global/modularity/ioc.h +++ b/framework/global/modularity/ioc.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/modularity/ioccontext.cpp b/framework/global/modularity/ioccontext.cpp index 08a61c7cb3..5db2e763ba 100644 --- a/framework/global/modularity/ioccontext.cpp +++ b/framework/global/modularity/ioccontext.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/profiler.h b/framework/global/profiler.h index 30353f95a9..eaa089c94f 100644 --- a/framework/global/profiler.h +++ b/framework/global/profiler.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/progress.h b/framework/global/progress.h index b312c0de1c..d140b812ea 100644 --- a/framework/global/progress.h +++ b/framework/global/progress.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/ptrutils.h b/framework/global/ptrutils.h index 62a1a806bf..27cf3b5e43 100644 --- a/framework/global/ptrutils.h +++ b/framework/global/ptrutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/realfn.h b/framework/global/realfn.h index e07a4a74b5..e504740071 100644 --- a/framework/global/realfn.h +++ b/framework/global/realfn.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/runtime.cpp b/framework/global/runtime.cpp index 58a4632625..973b99448b 100644 --- a/framework/global/runtime.cpp +++ b/framework/global/runtime.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/runtime.h b/framework/global/runtime.h index d1e2bc71a1..f5b491547d 100644 --- a/framework/global/runtime.h +++ b/framework/global/runtime.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/internal/zipcontainer.cpp b/framework/global/serialization/internal/zipcontainer.cpp index dab46398fe..2fd2a6da5d 100644 --- a/framework/global/serialization/internal/zipcontainer.cpp +++ b/framework/global/serialization/internal/zipcontainer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/internal/zipcontainer.h b/framework/global/serialization/internal/zipcontainer.h index 3ea38ac8e1..1ac63c4df2 100644 --- a/framework/global/serialization/internal/zipcontainer.h +++ b/framework/global/serialization/internal/zipcontainer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/json.cpp b/framework/global/serialization/json.cpp index 6318932f8c..ee8d8394d1 100644 --- a/framework/global/serialization/json.cpp +++ b/framework/global/serialization/json.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/json.h b/framework/global/serialization/json.h index 192a5ab936..f912b865d8 100644 --- a/framework/global/serialization/json.h +++ b/framework/global/serialization/json.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/msgpack.h b/framework/global/serialization/msgpack.h index 5d1dc5b531..d36ad1d1f9 100644 --- a/framework/global/serialization/msgpack.h +++ b/framework/global/serialization/msgpack.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/serialization/msgpack_forward.h b/framework/global/serialization/msgpack_forward.h index da8b24b0ef..28946c4ed2 100644 --- a/framework/global/serialization/msgpack_forward.h +++ b/framework/global/serialization/msgpack_forward.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/serialization/textstream.cpp b/framework/global/serialization/textstream.cpp index 7b85dd0cc3..8573084dd4 100644 --- a/framework/global/serialization/textstream.cpp +++ b/framework/global/serialization/textstream.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/textstream.h b/framework/global/serialization/textstream.h index 1d3a54af0c..f88f2b88f0 100644 --- a/framework/global/serialization/textstream.h +++ b/framework/global/serialization/textstream.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/xmldom.cpp b/framework/global/serialization/xmldom.cpp index 4d20b3edba..7cb76aaa93 100644 --- a/framework/global/serialization/xmldom.cpp +++ b/framework/global/serialization/xmldom.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/xmldom.h b/framework/global/serialization/xmldom.h index 2362f2a788..8f38bcc28d 100644 --- a/framework/global/serialization/xmldom.h +++ b/framework/global/serialization/xmldom.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/xmlstreamreader.cpp b/framework/global/serialization/xmlstreamreader.cpp index ce61d10737..a105de3cb3 100644 --- a/framework/global/serialization/xmlstreamreader.cpp +++ b/framework/global/serialization/xmlstreamreader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/xmlstreamreader.h b/framework/global/serialization/xmlstreamreader.h index 466903728b..671421f001 100644 --- a/framework/global/serialization/xmlstreamreader.h +++ b/framework/global/serialization/xmlstreamreader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/xmlstreamwriter.cpp b/framework/global/serialization/xmlstreamwriter.cpp index 4b369d2b4b..09a2c5a5e3 100644 --- a/framework/global/serialization/xmlstreamwriter.cpp +++ b/framework/global/serialization/xmlstreamwriter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/xmlstreamwriter.h b/framework/global/serialization/xmlstreamwriter.h index 6db4c13cfc..59347dedc7 100644 --- a/framework/global/serialization/xmlstreamwriter.h +++ b/framework/global/serialization/xmlstreamwriter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/zipreader.cpp b/framework/global/serialization/zipreader.cpp index b24f67c178..e3c0d15423 100644 --- a/framework/global/serialization/zipreader.cpp +++ b/framework/global/serialization/zipreader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/zipreader.h b/framework/global/serialization/zipreader.h index 953c851ea3..7c549bc398 100644 --- a/framework/global/serialization/zipreader.h +++ b/framework/global/serialization/zipreader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/zipwriter.cpp b/framework/global/serialization/zipwriter.cpp index e67d323b5e..7eda707c37 100644 --- a/framework/global/serialization/zipwriter.cpp +++ b/framework/global/serialization/zipwriter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/serialization/zipwriter.h b/framework/global/serialization/zipwriter.h index 4ee6213a20..50a0a2ff67 100644 --- a/framework/global/serialization/zipwriter.h +++ b/framework/global/serialization/zipwriter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/settings.cpp b/framework/global/settings.cpp index 9aaded3d02..d41000df0b 100644 --- a/framework/global/settings.cpp +++ b/framework/global/settings.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/settings.h b/framework/global/settings.h index cee128fc49..ce6256c75d 100644 --- a/framework/global/settings.h +++ b/framework/global/settings.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/stringutils.cpp b/framework/global/stringutils.cpp index b8c4e4806c..5a39e445b9 100644 --- a/framework/global/stringutils.cpp +++ b/framework/global/stringutils.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/stringutils.h b/framework/global/stringutils.h index 83396978a4..cab3256a60 100644 --- a/framework/global/stringutils.h +++ b/framework/global/stringutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/CMakeLists.txt b/framework/global/tests/CMakeLists.txt index 847331214a..972be309ff 100644 --- a/framework/global/tests/CMakeLists.txt +++ b/framework/global/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/allocator_tests.cpp b/framework/global/tests/allocator_tests.cpp index 79b9e9f77e..35a66ea6d2 100644 --- a/framework/global/tests/allocator_tests.cpp +++ b/framework/global/tests/allocator_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/buffer_tests.cpp b/framework/global/tests/buffer_tests.cpp index b8680b0c41..cafffe1f6b 100644 --- a/framework/global/tests/buffer_tests.cpp +++ b/framework/global/tests/buffer_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/bytearray_tests.cpp b/framework/global/tests/bytearray_tests.cpp index 7bafcec2d4..57e7c90d5f 100644 --- a/framework/global/tests/bytearray_tests.cpp +++ b/framework/global/tests/bytearray_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/containers_tests.cpp b/framework/global/tests/containers_tests.cpp index 64149abee4..9f47595cca 100644 --- a/framework/global/tests/containers_tests.cpp +++ b/framework/global/tests/containers_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/datetime_tests.cpp b/framework/global/tests/datetime_tests.cpp index cdf88aab55..eba9c52942 100644 --- a/framework/global/tests/datetime_tests.cpp +++ b/framework/global/tests/datetime_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/file_tests.cpp b/framework/global/tests/file_tests.cpp index 08dc82c984..64973648c8 100644 --- a/framework/global/tests/file_tests.cpp +++ b/framework/global/tests/file_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/fileinfo_tests.cpp b/framework/global/tests/fileinfo_tests.cpp index 3035d3042c..a97c7f4bfe 100644 --- a/framework/global/tests/fileinfo_tests.cpp +++ b/framework/global/tests/fileinfo_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/filestream_tests.cpp b/framework/global/tests/filestream_tests.cpp index cce30fe4ed..f380b8026e 100644 --- a/framework/global/tests/filestream_tests.cpp +++ b/framework/global/tests/filestream_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/tests/flags_tests.cpp b/framework/global/tests/flags_tests.cpp index e4af927606..c976ebd5fe 100644 --- a/framework/global/tests/flags_tests.cpp +++ b/framework/global/tests/flags_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/geometry_tests.cpp b/framework/global/tests/geometry_tests.cpp index 41d13abfcd..e5f928b6d3 100644 --- a/framework/global/tests/geometry_tests.cpp +++ b/framework/global/tests/geometry_tests.cpp @@ -2,10 +2,10 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * - * Copyright (C) 2025 MuseScore BVBA and others + * Copyright (C) 2025 MuseScore Limited and others * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as diff --git a/framework/global/tests/iodevice_tests.cpp b/framework/global/tests/iodevice_tests.cpp index c87d570578..252c2f37e1 100644 --- a/framework/global/tests/iodevice_tests.cpp +++ b/framework/global/tests/iodevice_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/json_tests.cpp b/framework/global/tests/json_tests.cpp index 132807a8d5..a01efe199a 100644 --- a/framework/global/tests/json_tests.cpp +++ b/framework/global/tests/json_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/logremover_tests.cpp b/framework/global/tests/logremover_tests.cpp index caad32e30d..cec73104c8 100644 --- a/framework/global/tests/logremover_tests.cpp +++ b/framework/global/tests/logremover_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/mnemonicstring_tests.cpp b/framework/global/tests/mnemonicstring_tests.cpp index 2fe1c47387..b10b5d5deb 100644 --- a/framework/global/tests/mnemonicstring_tests.cpp +++ b/framework/global/tests/mnemonicstring_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/mocks/applicationmock.h b/framework/global/tests/mocks/applicationmock.h index c55a8739a9..4d81f76b51 100644 --- a/framework/global/tests/mocks/applicationmock.h +++ b/framework/global/tests/mocks/applicationmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/mocks/applicationstub.h b/framework/global/tests/mocks/applicationstub.h index 7f541c44b6..6d2b7967ec 100644 --- a/framework/global/tests/mocks/applicationstub.h +++ b/framework/global/tests/mocks/applicationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/global/tests/mocks/filesystemmock.h b/framework/global/tests/mocks/filesystemmock.h index 22ead02795..4b35be1e6f 100644 --- a/framework/global/tests/mocks/filesystemmock.h +++ b/framework/global/tests/mocks/filesystemmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/mocks/globalconfigurationmock.h b/framework/global/tests/mocks/globalconfigurationmock.h index 923fc4b1d0..f0c5a21bf1 100644 --- a/framework/global/tests/mocks/globalconfigurationmock.h +++ b/framework/global/tests/mocks/globalconfigurationmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/mocks/processmock.h b/framework/global/tests/mocks/processmock.h index 294485955a..93866ae1df 100644 --- a/framework/global/tests/mocks/processmock.h +++ b/framework/global/tests/mocks/processmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/mocks/systeminfomock.h b/framework/global/tests/mocks/systeminfomock.h index 744232f057..4a96d9b8b4 100644 --- a/framework/global/tests/mocks/systeminfomock.h +++ b/framework/global/tests/mocks/systeminfomock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/tests/msgpack_tests.cpp b/framework/global/tests/msgpack_tests.cpp index 13ced2268f..2f010fed1d 100644 --- a/framework/global/tests/msgpack_tests.cpp +++ b/framework/global/tests/msgpack_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/tests/number_tests.cpp b/framework/global/tests/number_tests.cpp index bb63f86ab6..4e9e463d12 100644 --- a/framework/global/tests/number_tests.cpp +++ b/framework/global/tests/number_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/progress_tests.cpp b/framework/global/tests/progress_tests.cpp index c4e324cf96..ab2eb33297 100644 --- a/framework/global/tests/progress_tests.cpp +++ b/framework/global/tests/progress_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/tests/ret_tests.cpp b/framework/global/tests/ret_tests.cpp index e88ea04d1e..686f14b91b 100644 --- a/framework/global/tests/ret_tests.cpp +++ b/framework/global/tests/ret_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/tests/ringqueue_tests.cpp b/framework/global/tests/ringqueue_tests.cpp index 055f0e608c..44b08b56d7 100644 --- a/framework/global/tests/ringqueue_tests.cpp +++ b/framework/global/tests/ringqueue_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/tests/rpcqueue_tests.cpp b/framework/global/tests/rpcqueue_tests.cpp index 3230c4592b..e2d70ffc29 100644 --- a/framework/global/tests/rpcqueue_tests.cpp +++ b/framework/global/tests/rpcqueue_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/tests/string_tests.cpp b/framework/global/tests/string_tests.cpp index eada06dcbb..7c3adaab0e 100644 --- a/framework/global/tests/string_tests.cpp +++ b/framework/global/tests/string_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/uri_tests.cpp b/framework/global/tests/uri_tests.cpp index d0618cb547..384d10d51d 100644 --- a/framework/global/tests/uri_tests.cpp +++ b/framework/global/tests/uri_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/val_tests.cpp b/framework/global/tests/val_tests.cpp index 3640dd9162..4a3b58bd08 100644 --- a/framework/global/tests/val_tests.cpp +++ b/framework/global/tests/val_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/vectorview_tests.cpp b/framework/global/tests/vectorview_tests.cpp index 3183c04aea..fa3f8af801 100644 --- a/framework/global/tests/vectorview_tests.cpp +++ b/framework/global/tests/vectorview_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/tests/version_tests.cpp b/framework/global/tests/version_tests.cpp index 3ae10f2cbc..220f56322d 100644 --- a/framework/global/tests/version_tests.cpp +++ b/framework/global/tests/version_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/xmldom_tests.cpp b/framework/global/tests/xmldom_tests.cpp index 7e5741f9a7..ef2189ecd5 100644 --- a/framework/global/tests/xmldom_tests.cpp +++ b/framework/global/tests/xmldom_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/xmlstreamreader_tests.cpp b/framework/global/tests/xmlstreamreader_tests.cpp index 6e4e564a92..25f32a5a5e 100644 --- a/framework/global/tests/xmlstreamreader_tests.cpp +++ b/framework/global/tests/xmlstreamreader_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/tests/xmlstreamwriter_tests.cpp b/framework/global/tests/xmlstreamwriter_tests.cpp index 8a2d96b370..73c0c7bc85 100644 --- a/framework/global/tests/xmlstreamwriter_tests.cpp +++ b/framework/global/tests/xmlstreamwriter_tests.cpp @@ -2,10 +2,10 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * - * Copyright (C) 2025 MuseScore BVBA and others + * Copyright (C) 2025 MuseScore Limited and others * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as diff --git a/framework/global/tests/ziprw_tests.cpp b/framework/global/tests/ziprw_tests.cpp index 6d9c58bbff..a46b0cf6c9 100644 --- a/framework/global/tests/ziprw_tests.cpp +++ b/framework/global/tests/ziprw_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/ticker.cpp b/framework/global/ticker.cpp index bca4cdb108..7a2c83b021 100644 --- a/framework/global/ticker.cpp +++ b/framework/global/ticker.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/ticker.h b/framework/global/ticker.h index 23615032b4..31ea51131c 100644 --- a/framework/global/ticker.h +++ b/framework/global/ticker.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/timer.cpp b/framework/global/timer.cpp index f28f62e14d..750517060a 100644 --- a/framework/global/timer.cpp +++ b/framework/global/timer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/timer.h b/framework/global/timer.h index 4af58f20e5..7a134a3601 100644 --- a/framework/global/timer.h +++ b/framework/global/timer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/translation.cpp b/framework/global/translation.cpp index aa473a52d7..63614249d2 100644 --- a/framework/global/translation.cpp +++ b/framework/global/translation.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/translation.h b/framework/global/translation.h index f99be303e3..8e2b0da23f 100644 --- a/framework/global/translation.h +++ b/framework/global/translation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/bytearray.cpp b/framework/global/types/bytearray.cpp index 12b589f599..f946c98af9 100644 --- a/framework/global/types/bytearray.cpp +++ b/framework/global/types/bytearray.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/bytearray.h b/framework/global/types/bytearray.h index 015ee4c55d..072d1052a6 100644 --- a/framework/global/types/bytearray.h +++ b/framework/global/types/bytearray.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/color.h b/framework/global/types/color.h index 9241ac28c5..7f42bfa6b2 100644 --- a/framework/global/types/color.h +++ b/framework/global/types/color.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/config.h b/framework/global/types/config.h index 1f55eda327..2db2e6f19f 100644 --- a/framework/global/types/config.h +++ b/framework/global/types/config.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/types/datetime.cpp b/framework/global/types/datetime.cpp index a4d1a29d31..7e0539f36b 100644 --- a/framework/global/types/datetime.cpp +++ b/framework/global/types/datetime.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/datetime.h b/framework/global/types/datetime.h index 8f55e783d0..422672b3bd 100644 --- a/framework/global/types/datetime.h +++ b/framework/global/types/datetime.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/flags.h b/framework/global/types/flags.h index e19bda07b7..b964492cf9 100644 --- a/framework/global/types/flags.h +++ b/framework/global/types/flags.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/id.cpp b/framework/global/types/id.cpp index 5338886a8d..9eff30b31b 100644 --- a/framework/global/types/id.cpp +++ b/framework/global/types/id.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/id.h b/framework/global/types/id.h index a9b7dbfc06..0d14fa3ce4 100644 --- a/framework/global/types/id.h +++ b/framework/global/types/id.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/mnemonicstring.cpp b/framework/global/types/mnemonicstring.cpp index 59bc79f4fe..04a59abd8f 100644 --- a/framework/global/types/mnemonicstring.cpp +++ b/framework/global/types/mnemonicstring.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/global/types/mnemonicstring.h b/framework/global/types/mnemonicstring.h index 765336f5d8..473ed85a9f 100644 --- a/framework/global/types/mnemonicstring.h +++ b/framework/global/types/mnemonicstring.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/global/types/ratio.h b/framework/global/types/ratio.h index 024be944ff..693a22f3ab 100644 --- a/framework/global/types/ratio.h +++ b/framework/global/types/ratio.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/types/ret.cpp b/framework/global/types/ret.cpp index 45258f3d19..e2dab866e9 100644 --- a/framework/global/types/ret.cpp +++ b/framework/global/types/ret.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/ret.h b/framework/global/types/ret.h index 0878009ad2..a0242e5a85 100644 --- a/framework/global/types/ret.h +++ b/framework/global/types/ret.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/retval.h b/framework/global/types/retval.h index e090d86e89..aa657b852b 100644 --- a/framework/global/types/retval.h +++ b/framework/global/types/retval.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/rgba.h b/framework/global/types/rgba.h index aa8df30e48..eb50a56ea0 100644 --- a/framework/global/types/rgba.h +++ b/framework/global/types/rgba.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/secs.h b/framework/global/types/secs.h index fd3b81accb..a2a00db055 100644 --- a/framework/global/types/secs.h +++ b/framework/global/types/secs.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/global/types/sharedhashmap.h b/framework/global/types/sharedhashmap.h index 6c12a3cce6..6858617a78 100644 --- a/framework/global/types/sharedhashmap.h +++ b/framework/global/types/sharedhashmap.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/types/sharedmap.h b/framework/global/types/sharedmap.h index 1aebbd8b7d..71206cb32b 100644 --- a/framework/global/types/sharedmap.h +++ b/framework/global/types/sharedmap.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/types/string.cpp b/framework/global/types/string.cpp index 1172a792e7..7402984d8d 100644 --- a/framework/global/types/string.cpp +++ b/framework/global/types/string.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/string.h b/framework/global/types/string.h index f5e0a36b34..a712220967 100644 --- a/framework/global/types/string.h +++ b/framework/global/types/string.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/translatablestring.h b/framework/global/types/translatablestring.h index 2f901c3743..86e42f695a 100644 --- a/framework/global/types/translatablestring.h +++ b/framework/global/types/translatablestring.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/uri.cpp b/framework/global/types/uri.cpp index 3cea3a23c2..fdd20a9efd 100644 --- a/framework/global/types/uri.cpp +++ b/framework/global/types/uri.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/types/uri.h b/framework/global/types/uri.h index 38bec3d35d..e9f516ec91 100644 --- a/framework/global/types/uri.h +++ b/framework/global/types/uri.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/types/val.cpp b/framework/global/types/val.cpp index ee46fde9e1..40d56252ad 100644 --- a/framework/global/types/val.cpp +++ b/framework/global/types/val.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/val.h b/framework/global/types/val.h index 1735a8f08e..258818c9fd 100644 --- a/framework/global/types/val.h +++ b/framework/global/types/val.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/types/version.cpp b/framework/global/types/version.cpp index 8fbed8e814..2709742830 100644 --- a/framework/global/types/version.cpp +++ b/framework/global/types/version.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/types/version.h b/framework/global/types/version.h index 7a1b9b128a..10c10300cc 100644 --- a/framework/global/types/version.h +++ b/framework/global/types/version.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/global/utils.cpp b/framework/global/utils.cpp index ea831f3e21..f18aa3f324 100644 --- a/framework/global/utils.cpp +++ b/framework/global/utils.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/utils.h b/framework/global/utils.h index fcc71f04a3..3b0656e26f 100644 --- a/framework/global/utils.h +++ b/framework/global/utils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/uuid.cpp b/framework/global/uuid.cpp index f48d901d3e..f546645864 100644 --- a/framework/global/uuid.cpp +++ b/framework/global/uuid.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/uuid.h b/framework/global/uuid.h index cb4cdd2a15..8a65dd8a2c 100644 --- a/framework/global/uuid.h +++ b/framework/global/uuid.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/global/vectorview.h b/framework/global/vectorview.h index 0699f390b0..3607e7860c 100644 --- a/framework/global/vectorview.h +++ b/framework/global/vectorview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/interactive/api/interactiveapi.cpp b/framework/interactive/api/interactiveapi.cpp index 50172aeccb..158d3cbdd4 100644 --- a/framework/interactive/api/interactiveapi.cpp +++ b/framework/interactive/api/interactiveapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/api/interactiveapi.h b/framework/interactive/api/interactiveapi.h index a6b1f9973b..bfef9d506f 100644 --- a/framework/interactive/api/interactiveapi.h +++ b/framework/interactive/api/interactiveapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/dev/testdialog.cpp b/framework/interactive/dev/testdialog.cpp index 2d027a149f..71fe1ee32f 100644 --- a/framework/interactive/dev/testdialog.cpp +++ b/framework/interactive/dev/testdialog.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/dev/testdialog.h b/framework/interactive/dev/testdialog.h index 3f5291cf83..f3bbe46d19 100644 --- a/framework/interactive/dev/testdialog.h +++ b/framework/interactive/dev/testdialog.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/iinteractive.h b/framework/interactive/iinteractive.h index c4e8d4fef3..cd79da5213 100644 --- a/framework/interactive/iinteractive.h +++ b/framework/interactive/iinteractive.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/iinteractiveuriregister.h b/framework/interactive/iinteractiveuriregister.h index d52c63ebb1..a886aef320 100644 --- a/framework/interactive/iinteractiveuriregister.h +++ b/framework/interactive/iinteractiveuriregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/interactivemodule.cpp b/framework/interactive/interactivemodule.cpp index 527cb346e0..8c4b1a549a 100644 --- a/framework/interactive/interactivemodule.cpp +++ b/framework/interactive/interactivemodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited diff --git a/framework/interactive/internal/iinteractiveprovider.h b/framework/interactive/internal/iinteractiveprovider.h index e522d21476..5e6ae7f8a4 100644 --- a/framework/interactive/internal/iinteractiveprovider.h +++ b/framework/interactive/internal/iinteractiveprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/internal/interactive.cpp b/framework/interactive/internal/interactive.cpp index 0774c5c707..e5f71f5953 100644 --- a/framework/interactive/internal/interactive.cpp +++ b/framework/interactive/internal/interactive.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/internal/interactive.h b/framework/interactive/internal/interactive.h index 0faefa7958..be58d1bacb 100644 --- a/framework/interactive/internal/interactive.h +++ b/framework/interactive/internal/interactive.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/internal/interactiveuriregister.cpp b/framework/interactive/internal/interactiveuriregister.cpp index 7b86b4e604..eb91a8fefe 100644 --- a/framework/interactive/internal/interactiveuriregister.cpp +++ b/framework/interactive/internal/interactiveuriregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/internal/interactiveuriregister.h b/framework/interactive/internal/interactiveuriregister.h index 2172236af7..66236ea886 100644 --- a/framework/interactive/internal/interactiveuriregister.h +++ b/framework/interactive/internal/interactiveuriregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/internal/platform/macos/macosinteractivehelper.h b/framework/interactive/internal/platform/macos/macosinteractivehelper.h index 2bded7fa9a..88e19b1352 100644 --- a/framework/interactive/internal/platform/macos/macosinteractivehelper.h +++ b/framework/interactive/internal/platform/macos/macosinteractivehelper.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/interactive/internal/platform/macos/macosinteractivehelper.mm b/framework/interactive/internal/platform/macos/macosinteractivehelper.mm index 623bf87556..ccf348d28b 100644 --- a/framework/interactive/internal/platform/macos/macosinteractivehelper.mm +++ b/framework/interactive/internal/platform/macos/macosinteractivehelper.mm @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/interactive/internal/platform/win/wininteractivehelper.cpp b/framework/interactive/internal/platform/win/wininteractivehelper.cpp index 22f58f79e2..5f64ffd503 100644 --- a/framework/interactive/internal/platform/win/wininteractivehelper.cpp +++ b/framework/interactive/internal/platform/win/wininteractivehelper.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/interactive/internal/platform/win/wininteractivehelper.h b/framework/interactive/internal/platform/win/wininteractivehelper.h index 57493480be..a4236e6b9a 100644 --- a/framework/interactive/internal/platform/win/wininteractivehelper.h +++ b/framework/interactive/internal/platform/win/wininteractivehelper.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/interactive/internal/platforminteractive.cpp b/framework/interactive/internal/platforminteractive.cpp index a56d902816..fea8125380 100644 --- a/framework/interactive/internal/platforminteractive.cpp +++ b/framework/interactive/internal/platforminteractive.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/interactive/internal/platforminteractive.h b/framework/interactive/internal/platforminteractive.h index 5eb6cfc40b..2b357a3b04 100644 --- a/framework/interactive/internal/platforminteractive.h +++ b/framework/interactive/internal/platforminteractive.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/interactive/internal/widgetdialogadapter.cpp b/framework/interactive/internal/widgetdialogadapter.cpp index 375d3c318f..086a24cd48 100644 --- a/framework/interactive/internal/widgetdialogadapter.cpp +++ b/framework/interactive/internal/widgetdialogadapter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/interactive/internal/widgetdialogadapter.h b/framework/interactive/internal/widgetdialogadapter.h index ddedead2bd..916065afe2 100644 --- a/framework/interactive/internal/widgetdialogadapter.h +++ b/framework/interactive/internal/widgetdialogadapter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/interactive/iplatforminteractive.h b/framework/interactive/iplatforminteractive.h index 3abbaa1d68..73a3110ea9 100644 --- a/framework/interactive/iplatforminteractive.h +++ b/framework/interactive/iplatforminteractive.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/ErrorDetailsView.qml b/framework/interactive/qml/Muse/Interactive/ErrorDetailsView.qml index 6c022a6db0..6cbeffcbe4 100644 --- a/framework/interactive/qml/Muse/Interactive/ErrorDetailsView.qml +++ b/framework/interactive/qml/Muse/Interactive/ErrorDetailsView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/FileDialog.qml b/framework/interactive/qml/Muse/Interactive/FileDialog.qml index 0e7d907e38..9ee3f5d00f 100644 --- a/framework/interactive/qml/Muse/Interactive/FileDialog.qml +++ b/framework/interactive/qml/Muse/Interactive/FileDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/FolderDialog.qml b/framework/interactive/qml/Muse/Interactive/FolderDialog.qml index 2fc390143c..3aa20bd7fc 100644 --- a/framework/interactive/qml/Muse/Interactive/FolderDialog.qml +++ b/framework/interactive/qml/Muse/Interactive/FolderDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/InteractiveProvider.qml b/framework/interactive/qml/Muse/Interactive/InteractiveProvider.qml index cbb052ff2d..0d4d9e5392 100644 --- a/framework/interactive/qml/Muse/Interactive/InteractiveProvider.qml +++ b/framework/interactive/qml/Muse/Interactive/InteractiveProvider.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/ProgressDialog.qml b/framework/interactive/qml/Muse/Interactive/ProgressDialog.qml index 545096995e..c6901ca594 100644 --- a/framework/interactive/qml/Muse/Interactive/ProgressDialog.qml +++ b/framework/interactive/qml/Muse/Interactive/ProgressDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/StandardDialog.qml b/framework/interactive/qml/Muse/Interactive/StandardDialog.qml index 3d9845438b..5b54a82eb2 100644 --- a/framework/interactive/qml/Muse/Interactive/StandardDialog.qml +++ b/framework/interactive/qml/Muse/Interactive/StandardDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/StandardDialogPanel.qml b/framework/interactive/qml/Muse/Interactive/StandardDialogPanel.qml index 90e837b115..8296394456 100644 --- a/framework/interactive/qml/Muse/Interactive/StandardDialogPanel.qml +++ b/framework/interactive/qml/Muse/Interactive/StandardDialogPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.cpp b/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.cpp index a50d904ae5..0504282817 100644 --- a/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.cpp +++ b/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.h b/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.h index 492042b715..4028b51f93 100644 --- a/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.h +++ b/framework/interactive/qml/Muse/Interactive/dev/interactivetestsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/errordetailsmodel.cpp b/framework/interactive/qml/Muse/Interactive/errordetailsmodel.cpp index 081676bdbd..a431d89b1a 100644 --- a/framework/interactive/qml/Muse/Interactive/errordetailsmodel.cpp +++ b/framework/interactive/qml/Muse/Interactive/errordetailsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/errordetailsmodel.h b/framework/interactive/qml/Muse/Interactive/errordetailsmodel.h index 72eaa30efe..f5e1129174 100644 --- a/framework/interactive/qml/Muse/Interactive/errordetailsmodel.h +++ b/framework/interactive/qml/Muse/Interactive/errordetailsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/interactiveprovidermodel.h b/framework/interactive/qml/Muse/Interactive/interactiveprovidermodel.h index 3ad666c41e..d9c3d90987 100644 --- a/framework/interactive/qml/Muse/Interactive/interactiveprovidermodel.h +++ b/framework/interactive/qml/Muse/Interactive/interactiveprovidermodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/progressdialogmodel.cpp b/framework/interactive/qml/Muse/Interactive/progressdialogmodel.cpp index 673dce6470..39600d75c7 100644 --- a/framework/interactive/qml/Muse/Interactive/progressdialogmodel.cpp +++ b/framework/interactive/qml/Muse/Interactive/progressdialogmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/qml/Muse/Interactive/progressdialogmodel.h b/framework/interactive/qml/Muse/Interactive/progressdialogmodel.h index f4fed9221a..16dccd60b8 100644 --- a/framework/interactive/qml/Muse/Interactive/progressdialogmodel.h +++ b/framework/interactive/qml/Muse/Interactive/progressdialogmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/interactive/tests/mocks/interactivemock.h b/framework/interactive/tests/mocks/interactivemock.h index f066059f1f..99c4529fc0 100644 --- a/framework/interactive/tests/mocks/interactivemock.h +++ b/framework/interactive/tests/mocks/interactivemock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/ilanguagesconfiguration.h b/framework/languages/ilanguagesconfiguration.h index eef8897040..a183f490f9 100644 --- a/framework/languages/ilanguagesconfiguration.h +++ b/framework/languages/ilanguagesconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/ilanguagesservice.h b/framework/languages/ilanguagesservice.h index 6957032e90..7f7c30a4d8 100644 --- a/framework/languages/ilanguagesservice.h +++ b/framework/languages/ilanguagesservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/languages/internal/languagesconfiguration.cpp b/framework/languages/internal/languagesconfiguration.cpp index 3419cf8d6b..3f75efc7f6 100644 --- a/framework/languages/internal/languagesconfiguration.cpp +++ b/framework/languages/internal/languagesconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/internal/languagesconfiguration.h b/framework/languages/internal/languagesconfiguration.h index 21490152cb..f803ea8bfd 100644 --- a/framework/languages/internal/languagesconfiguration.h +++ b/framework/languages/internal/languagesconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/internal/languagesservice.cpp b/framework/languages/internal/languagesservice.cpp index 7d862c0de8..93fea59ddd 100644 --- a/framework/languages/internal/languagesservice.cpp +++ b/framework/languages/internal/languagesservice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/languages/internal/languagesservice.h b/framework/languages/internal/languagesservice.h index 8f59457104..d4cfe29a04 100644 --- a/framework/languages/internal/languagesservice.h +++ b/framework/languages/internal/languagesservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/languages/languageserrors.h b/framework/languages/languageserrors.h index 6f22644cef..ccd48fe2b2 100644 --- a/framework/languages/languageserrors.h +++ b/framework/languages/languageserrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/languagesmodule.cpp b/framework/languages/languagesmodule.cpp index 14b293b822..d84b075d99 100644 --- a/framework/languages/languagesmodule.cpp +++ b/framework/languages/languagesmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/languagesmodule.h b/framework/languages/languagesmodule.h index 4ac5194719..d53c974887 100644 --- a/framework/languages/languagesmodule.h +++ b/framework/languages/languagesmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/languagestypes.h b/framework/languages/languagestypes.h index 628eccffeb..3386412b16 100644 --- a/framework/languages/languagestypes.h +++ b/framework/languages/languagestypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/languages/tests/CMakeLists.txt b/framework/languages/tests/CMakeLists.txt index 791354e4cb..7ab219c527 100644 --- a/framework/languages/tests/CMakeLists.txt +++ b/framework/languages/tests/CMakeLists.txt @@ -1,10 +1,10 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # -# Copyright (C) 2024 MuseScore BVBA and others +# Copyright (C) 2024 MuseScore Limited and others # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License version 3 as diff --git a/framework/languages/tests/languagesjson_tests.cpp b/framework/languages/tests/languagesjson_tests.cpp index 96b156be81..1f46827bb8 100644 --- a/framework/languages/tests/languagesjson_tests.cpp +++ b/framework/languages/tests/languagesjson_tests.cpp @@ -2,10 +2,10 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * - * Copyright (C) 2021 MuseScore BVBA and others + * Copyright (C) 2021 MuseScore Limited and others * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as diff --git a/framework/learn/CMakeLists.txt b/framework/learn/CMakeLists.txt index 52a1210139..e0046e9d53 100644 --- a/framework/learn/CMakeLists.txt +++ b/framework/learn/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/ilearnconfiguration.h b/framework/learn/ilearnconfiguration.h index 33cd5f866b..a513cb593a 100644 --- a/framework/learn/ilearnconfiguration.h +++ b/framework/learn/ilearnconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/ilearnservice.h b/framework/learn/ilearnservice.h index d2ad529674..d8195d0aff 100644 --- a/framework/learn/ilearnservice.h +++ b/framework/learn/ilearnservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/internal/learnconfiguration.cpp b/framework/learn/internal/learnconfiguration.cpp index ad51ed4f31..7dd905fa8c 100644 --- a/framework/learn/internal/learnconfiguration.cpp +++ b/framework/learn/internal/learnconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/internal/learnconfiguration.h b/framework/learn/internal/learnconfiguration.h index 4d12411df3..b5489ce64b 100644 --- a/framework/learn/internal/learnconfiguration.h +++ b/framework/learn/internal/learnconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/internal/learnservice.cpp b/framework/learn/internal/learnservice.cpp index 4adb67ba5c..aff1462644 100644 --- a/framework/learn/internal/learnservice.cpp +++ b/framework/learn/internal/learnservice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/learn/internal/learnservice.h b/framework/learn/internal/learnservice.h index a4bb67f287..1d91305ca1 100644 --- a/framework/learn/internal/learnservice.h +++ b/framework/learn/internal/learnservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/learn/learnerrors.h b/framework/learn/learnerrors.h index 87ce2fe05d..7b9ab5bf2e 100644 --- a/framework/learn/learnerrors.h +++ b/framework/learn/learnerrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/learnmodule.cpp b/framework/learn/learnmodule.cpp index 247385fb6f..e5454c91ef 100644 --- a/framework/learn/learnmodule.cpp +++ b/framework/learn/learnmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/learnmodule.h b/framework/learn/learnmodule.h index 401d75d083..bca23a0db1 100644 --- a/framework/learn/learnmodule.h +++ b/framework/learn/learnmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/learntypes.h b/framework/learn/learntypes.h index 28be7a1547..2d30ad0bea 100644 --- a/framework/learn/learntypes.h +++ b/framework/learn/learntypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/qml/Muse/Learn/CMakeLists.txt b/framework/learn/qml/Muse/Learn/CMakeLists.txt index a3e45a9c4f..b0ac4db7ad 100644 --- a/framework/learn/qml/Muse/Learn/CMakeLists.txt +++ b/framework/learn/qml/Muse/Learn/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/learn/qml/Muse/Learn/LearnPage.qml b/framework/learn/qml/Muse/Learn/LearnPage.qml index df056616fd..cc7f63d78d 100644 --- a/framework/learn/qml/Muse/Learn/LearnPage.qml +++ b/framework/learn/qml/Muse/Learn/LearnPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/qml/Muse/Learn/internal/ClassesPage.qml b/framework/learn/qml/Muse/Learn/internal/ClassesPage.qml index f7eab1a115..422b4f8f7a 100644 --- a/framework/learn/qml/Muse/Learn/internal/ClassesPage.qml +++ b/framework/learn/qml/Muse/Learn/internal/ClassesPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/qml/Muse/Learn/internal/Playlist.qml b/framework/learn/qml/Muse/Learn/internal/Playlist.qml index 4cc0770405..6cafb2e878 100644 --- a/framework/learn/qml/Muse/Learn/internal/Playlist.qml +++ b/framework/learn/qml/Muse/Learn/internal/Playlist.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/qml/Muse/Learn/internal/PlaylistItem.qml b/framework/learn/qml/Muse/Learn/internal/PlaylistItem.qml index f9e75e0e25..d53376d251 100644 --- a/framework/learn/qml/Muse/Learn/internal/PlaylistItem.qml +++ b/framework/learn/qml/Muse/Learn/internal/PlaylistItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/qml/Muse/Learn/learnpagemodel.cpp b/framework/learn/qml/Muse/Learn/learnpagemodel.cpp index 8d1ef0d346..373c5f8d5e 100644 --- a/framework/learn/qml/Muse/Learn/learnpagemodel.cpp +++ b/framework/learn/qml/Muse/Learn/learnpagemodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/learn/qml/Muse/Learn/learnpagemodel.h b/framework/learn/qml/Muse/Learn/learnpagemodel.h index 816b54c592..4d03541494 100644 --- a/framework/learn/qml/Muse/Learn/learnpagemodel.h +++ b/framework/learn/qml/Muse/Learn/learnpagemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/imidiconfiguration.h b/framework/midi/imidiconfiguration.h index 11fed09fd3..4ef2efcd53 100644 --- a/framework/midi/imidiconfiguration.h +++ b/framework/midi/imidiconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/imidiinport.h b/framework/midi/imidiinport.h index 418fe1da0a..4282f6a76a 100644 --- a/framework/midi/imidiinport.h +++ b/framework/midi/imidiinport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/imidioutport.h b/framework/midi/imidioutport.h index 35653ea69f..1fa093d608 100644 --- a/framework/midi/imidioutport.h +++ b/framework/midi/imidioutport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/dummymidiinport.cpp b/framework/midi/internal/dummymidiinport.cpp index 9d486aff87..9f7806de3d 100644 --- a/framework/midi/internal/dummymidiinport.cpp +++ b/framework/midi/internal/dummymidiinport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/dummymidiinport.h b/framework/midi/internal/dummymidiinport.h index 5432d90564..0845d6a239 100644 --- a/framework/midi/internal/dummymidiinport.h +++ b/framework/midi/internal/dummymidiinport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/dummymidioutport.cpp b/framework/midi/internal/dummymidioutport.cpp index 0bffe86b18..87af391e1b 100644 --- a/framework/midi/internal/dummymidioutport.cpp +++ b/framework/midi/internal/dummymidioutport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/dummymidioutport.h b/framework/midi/internal/dummymidioutport.h index daa43ec982..3d4e79f1b5 100644 --- a/framework/midi/internal/dummymidioutport.h +++ b/framework/midi/internal/dummymidioutport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/midiconfiguration.cpp b/framework/midi/internal/midiconfiguration.cpp index c580276b97..8b36079987 100644 --- a/framework/midi/internal/midiconfiguration.cpp +++ b/framework/midi/internal/midiconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/midiconfiguration.h b/framework/midi/internal/midiconfiguration.h index c07e4666ca..83eb70873e 100644 --- a/framework/midi/internal/midiconfiguration.h +++ b/framework/midi/internal/midiconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/midideviceslistener.cpp b/framework/midi/internal/midideviceslistener.cpp index 9ed10d168a..35764f44cd 100644 --- a/framework/midi/internal/midideviceslistener.cpp +++ b/framework/midi/internal/midideviceslistener.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/midideviceslistener.h b/framework/midi/internal/midideviceslistener.h index ac83212977..bc00e28365 100644 --- a/framework/midi/internal/midideviceslistener.h +++ b/framework/midi/internal/midideviceslistener.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/lin/alsamidiinport.cpp b/framework/midi/internal/platform/lin/alsamidiinport.cpp index d156070743..4c1120e4d1 100644 --- a/framework/midi/internal/platform/lin/alsamidiinport.cpp +++ b/framework/midi/internal/platform/lin/alsamidiinport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/lin/alsamidiinport.h b/framework/midi/internal/platform/lin/alsamidiinport.h index 3e87c0d44b..5bf0db7980 100644 --- a/framework/midi/internal/platform/lin/alsamidiinport.h +++ b/framework/midi/internal/platform/lin/alsamidiinport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/lin/alsamidioutport.cpp b/framework/midi/internal/platform/lin/alsamidioutport.cpp index 02a692c2f2..f50877022a 100644 --- a/framework/midi/internal/platform/lin/alsamidioutport.cpp +++ b/framework/midi/internal/platform/lin/alsamidioutport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/lin/alsamidioutport.h b/framework/midi/internal/platform/lin/alsamidioutport.h index 3d4acd13dc..448d5cd267 100644 --- a/framework/midi/internal/platform/lin/alsamidioutport.h +++ b/framework/midi/internal/platform/lin/alsamidioutport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/osx/coremidiinport.cpp b/framework/midi/internal/platform/osx/coremidiinport.cpp index 75a07e8c06..d1f0d366ac 100644 --- a/framework/midi/internal/platform/osx/coremidiinport.cpp +++ b/framework/midi/internal/platform/osx/coremidiinport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/osx/coremidiinport.h b/framework/midi/internal/platform/osx/coremidiinport.h index d332ceb472..3bc9caecd3 100644 --- a/framework/midi/internal/platform/osx/coremidiinport.h +++ b/framework/midi/internal/platform/osx/coremidiinport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/osx/coremidioutport.cpp b/framework/midi/internal/platform/osx/coremidioutport.cpp index 9b26294240..c50afdb9e0 100644 --- a/framework/midi/internal/platform/osx/coremidioutport.cpp +++ b/framework/midi/internal/platform/osx/coremidioutport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/osx/coremidioutport.h b/framework/midi/internal/platform/osx/coremidioutport.h index 2c236654c5..b329a0cecc 100644 --- a/framework/midi/internal/platform/osx/coremidioutport.h +++ b/framework/midi/internal/platform/osx/coremidioutport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/win/winmidiinport.cpp b/framework/midi/internal/platform/win/winmidiinport.cpp index 57531226b8..56df85ac62 100644 --- a/framework/midi/internal/platform/win/winmidiinport.cpp +++ b/framework/midi/internal/platform/win/winmidiinport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/win/winmidiinport.h b/framework/midi/internal/platform/win/winmidiinport.h index 73de088963..0d7cb1cdfa 100644 --- a/framework/midi/internal/platform/win/winmidiinport.h +++ b/framework/midi/internal/platform/win/winmidiinport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/win/winmidioutport.cpp b/framework/midi/internal/platform/win/winmidioutport.cpp index 3c8960116d..527a977f67 100644 --- a/framework/midi/internal/platform/win/winmidioutport.cpp +++ b/framework/midi/internal/platform/win/winmidioutport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/internal/platform/win/winmidioutport.h b/framework/midi/internal/platform/win/winmidioutport.h index 9fd8352d45..87ae6349da 100644 --- a/framework/midi/internal/platform/win/winmidioutport.h +++ b/framework/midi/internal/platform/win/winmidioutport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/midierrors.h b/framework/midi/midierrors.h index 03574896d3..85826e3e34 100644 --- a/framework/midi/midierrors.h +++ b/framework/midi/midierrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/midievent.h b/framework/midi/midievent.h index e5763bfb8f..687601897d 100644 --- a/framework/midi/midievent.h +++ b/framework/midi/midievent.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/miditypes.h b/framework/midi/miditypes.h index 578095874b..e909c3bf0e 100644 --- a/framework/midi/miditypes.h +++ b/framework/midi/miditypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midi/tests/CMakeLists.txt b/framework/midi/tests/CMakeLists.txt index 91ac776676..b579f1733a 100644 --- a/framework/midi/tests/CMakeLists.txt +++ b/framework/midi/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midi/tests/midievent_tests.cpp b/framework/midi/tests/midievent_tests.cpp index 242c6e1423..b266f6f120 100644 --- a/framework/midi/tests/midievent_tests.cpp +++ b/framework/midi/tests/midievent_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/imidiremote.h b/framework/midiremote/imidiremote.h index 951f641aff..511b695ad9 100644 --- a/framework/midiremote/imidiremote.h +++ b/framework/midiremote/imidiremote.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/imidiremoteconfiguration.h b/framework/midiremote/imidiremoteconfiguration.h index aa2e8ba177..5ec16c2bbc 100644 --- a/framework/midiremote/imidiremoteconfiguration.h +++ b/framework/midiremote/imidiremoteconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/immcdecoder.h b/framework/midiremote/immcdecoder.h index b554c83dfe..d2fbea15de 100644 --- a/framework/midiremote/immcdecoder.h +++ b/framework/midiremote/immcdecoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/immcdecoderfactory.h b/framework/midiremote/immcdecoderfactory.h index 0709a73315..dc0901c880 100644 --- a/framework/midiremote/immcdecoderfactory.h +++ b/framework/midiremote/immcdecoderfactory.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/internal/midiremote.cpp b/framework/midiremote/internal/midiremote.cpp index 4e0ba8edd2..19e8d48804 100644 --- a/framework/midiremote/internal/midiremote.cpp +++ b/framework/midiremote/internal/midiremote.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/internal/midiremote.h b/framework/midiremote/internal/midiremote.h index 66d501a32f..cd376617c5 100644 --- a/framework/midiremote/internal/midiremote.h +++ b/framework/midiremote/internal/midiremote.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/internal/midiremoteconfiguration.cpp b/framework/midiremote/internal/midiremoteconfiguration.cpp index 01a530c054..9ba40df65a 100644 --- a/framework/midiremote/internal/midiremoteconfiguration.cpp +++ b/framework/midiremote/internal/midiremoteconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/internal/midiremoteconfiguration.h b/framework/midiremote/internal/midiremoteconfiguration.h index a5b4bb5eec..d204106543 100644 --- a/framework/midiremote/internal/midiremoteconfiguration.h +++ b/framework/midiremote/internal/midiremoteconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/internal/mmcdecoder.cpp b/framework/midiremote/internal/mmcdecoder.cpp index 1bb021df19..8361609260 100644 --- a/framework/midiremote/internal/mmcdecoder.cpp +++ b/framework/midiremote/internal/mmcdecoder.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/internal/mmcdecoder.h b/framework/midiremote/internal/mmcdecoder.h index 32c9bac996..1a4b7c3aa9 100644 --- a/framework/midiremote/internal/mmcdecoder.h +++ b/framework/midiremote/internal/mmcdecoder.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/internal/mmcdecoderfactory.cpp b/framework/midiremote/internal/mmcdecoderfactory.cpp index 6df7c3b96c..f09ef4bdaa 100644 --- a/framework/midiremote/internal/mmcdecoderfactory.cpp +++ b/framework/midiremote/internal/mmcdecoderfactory.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/internal/mmcdecoderfactory.h b/framework/midiremote/internal/mmcdecoderfactory.h index 244d62b5fb..2a1f00b692 100644 --- a/framework/midiremote/internal/mmcdecoderfactory.h +++ b/framework/midiremote/internal/mmcdecoderfactory.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/midiremotetypes.h b/framework/midiremote/midiremotetypes.h index e75cedc9da..72ee2bdf46 100644 --- a/framework/midiremote/midiremotetypes.h +++ b/framework/midiremote/midiremotetypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/mmctypes.h b/framework/midiremote/mmctypes.h index a626f9e1fa..b1bb89a850 100644 --- a/framework/midiremote/mmctypes.h +++ b/framework/midiremote/mmctypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/EditMidiMappingDialog.qml b/framework/midiremote/qml/Muse/MidiRemote/EditMidiMappingDialog.qml index dde45fe4dd..14590492b5 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/EditMidiMappingDialog.qml +++ b/framework/midiremote/qml/Muse/MidiRemote/EditMidiMappingDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/MidiDeviceMappingPage.qml b/framework/midiremote/qml/Muse/MidiRemote/MidiDeviceMappingPage.qml index fe716c10aa..c8984aba3b 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/MidiDeviceMappingPage.qml +++ b/framework/midiremote/qml/Muse/MidiRemote/MidiDeviceMappingPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.cpp b/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.cpp index 3ff246ec59..4234104aa1 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.cpp +++ b/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.h b/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.h index ed33c43c40..27e33f7aaa 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.h +++ b/framework/midiremote/qml/Muse/MidiRemote/editmidimappingmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingBottomPanel.qml b/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingBottomPanel.qml index 9655bc92da..b86bf9e328 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingBottomPanel.qml +++ b/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingBottomPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingTopPanel.qml b/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingTopPanel.qml index fbca0f354d..8e9b42b4ef 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingTopPanel.qml +++ b/framework/midiremote/qml/Muse/MidiRemote/internal/MidiMappingTopPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.cpp b/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.cpp index 1f4b3e8684..850622ecd0 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.cpp +++ b/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.h b/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.h index a49ceedfb3..1306dc8a94 100644 --- a/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.h +++ b/framework/midiremote/qml/Muse/MidiRemote/mididevicemappingmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/midiremote/tests/CMakeLists.txt b/framework/midiremote/tests/CMakeLists.txt index 64de6857b7..a82bf0c37e 100644 --- a/framework/midiremote/tests/CMakeLists.txt +++ b/framework/midiremote/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/midiremote/tests/mmcdecoder_tests.cpp b/framework/midiremote/tests/mmcdecoder_tests.cpp index 7218f2b06b..354a0f83ef 100644 --- a/framework/midiremote/tests/mmcdecoder_tests.cpp +++ b/framework/midiremote/tests/mmcdecoder_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/mpe/CMakeLists.txt b/framework/mpe/CMakeLists.txt index 8d45b03b94..04685d6978 100644 --- a/framework/mpe/CMakeLists.txt +++ b/framework/mpe/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/events.h b/framework/mpe/events.h index 02cb322da4..ff2d925570 100644 --- a/framework/mpe/events.h +++ b/framework/mpe/events.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/mpe/iarticulationprofilesrepository.h b/framework/mpe/iarticulationprofilesrepository.h index e04227079c..423bd9a7fc 100644 --- a/framework/mpe/iarticulationprofilesrepository.h +++ b/framework/mpe/iarticulationprofilesrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/internal/articulationprofilesrepository.cpp b/framework/mpe/internal/articulationprofilesrepository.cpp index 2ba025513e..dab97c5a4f 100644 --- a/framework/mpe/internal/articulationprofilesrepository.cpp +++ b/framework/mpe/internal/articulationprofilesrepository.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/internal/articulationprofilesrepository.h b/framework/mpe/internal/articulationprofilesrepository.h index 8f85c16160..53cc89ad18 100644 --- a/framework/mpe/internal/articulationprofilesrepository.h +++ b/framework/mpe/internal/articulationprofilesrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/internal/articulationstringutils.h b/framework/mpe/internal/articulationstringutils.h index 5be49f5ea4..29747bc398 100644 --- a/framework/mpe/internal/articulationstringutils.h +++ b/framework/mpe/internal/articulationstringutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/mpe/mpemodule.cpp b/framework/mpe/mpemodule.cpp index 527fa06ac1..db9014c1e0 100644 --- a/framework/mpe/mpemodule.cpp +++ b/framework/mpe/mpemodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/mpemodule.h b/framework/mpe/mpemodule.h index e73fe92226..8ae0bbf78f 100644 --- a/framework/mpe/mpemodule.h +++ b/framework/mpe/mpemodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/mpetypes.h b/framework/mpe/mpetypes.h index 8c5c3ca1c6..91c33046dc 100644 --- a/framework/mpe/mpetypes.h +++ b/framework/mpe/mpetypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/playbacksetupdata.h b/framework/mpe/playbacksetupdata.h index ebee18dfec..a65f21589c 100644 --- a/framework/mpe/playbacksetupdata.h +++ b/framework/mpe/playbacksetupdata.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/ArrangementPatternControl.qml b/framework/mpe/qml/Muse/Mpe/ArrangementPatternControl.qml index 748b8a2f7e..20197dfdf6 100644 --- a/framework/mpe/qml/Muse/Mpe/ArrangementPatternControl.qml +++ b/framework/mpe/qml/Muse/Mpe/ArrangementPatternControl.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/ArticulationPatternControlsTab.qml b/framework/mpe/qml/Muse/Mpe/ArticulationPatternControlsTab.qml index d1c9871aa3..f241aef045 100644 --- a/framework/mpe/qml/Muse/Mpe/ArticulationPatternControlsTab.qml +++ b/framework/mpe/qml/Muse/Mpe/ArticulationPatternControlsTab.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/ArticulationPatternPlot.qml b/framework/mpe/qml/Muse/Mpe/ArticulationPatternPlot.qml index 53f2e251ae..4ce6795893 100644 --- a/framework/mpe/qml/Muse/Mpe/ArticulationPatternPlot.qml +++ b/framework/mpe/qml/Muse/Mpe/ArticulationPatternPlot.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/ArticulationPatternSegmentsList.qml b/framework/mpe/qml/Muse/Mpe/ArticulationPatternSegmentsList.qml index d9268b48e8..7277cf9c6a 100644 --- a/framework/mpe/qml/Muse/Mpe/ArticulationPatternSegmentsList.qml +++ b/framework/mpe/qml/Muse/Mpe/ArticulationPatternSegmentsList.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/ArticulationPatternsList.qml b/framework/mpe/qml/Muse/Mpe/ArticulationPatternsList.qml index 03888a40c4..6dddfad74f 100644 --- a/framework/mpe/qml/Muse/Mpe/ArticulationPatternsList.qml +++ b/framework/mpe/qml/Muse/Mpe/ArticulationPatternsList.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/ArticulationPatternsTab.qml b/framework/mpe/qml/Muse/Mpe/ArticulationPatternsTab.qml index 91032097dc..c8a2b1e86f 100644 --- a/framework/mpe/qml/Muse/Mpe/ArticulationPatternsTab.qml +++ b/framework/mpe/qml/Muse/Mpe/ArticulationPatternsTab.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/ExpressionPatternControl.qml b/framework/mpe/qml/Muse/Mpe/ExpressionPatternControl.qml index b07c29b4a9..c7448be5e7 100644 --- a/framework/mpe/qml/Muse/Mpe/ExpressionPatternControl.qml +++ b/framework/mpe/qml/Muse/Mpe/ExpressionPatternControl.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/PitchPatternControl.qml b/framework/mpe/qml/Muse/Mpe/PitchPatternControl.qml index 7c0a1ab8bd..7118b9aaaf 100644 --- a/framework/mpe/qml/Muse/Mpe/PitchPatternControl.qml +++ b/framework/mpe/qml/Muse/Mpe/PitchPatternControl.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/articulationpatternitem.cpp b/framework/mpe/qml/Muse/Mpe/articulationpatternitem.cpp index 470e265a19..f86ea29ce7 100644 --- a/framework/mpe/qml/Muse/Mpe/articulationpatternitem.cpp +++ b/framework/mpe/qml/Muse/Mpe/articulationpatternitem.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/articulationpatternitem.h b/framework/mpe/qml/Muse/Mpe/articulationpatternitem.h index 8c85766e24..ee5e7ffc1d 100644 --- a/framework/mpe/qml/Muse/Mpe/articulationpatternitem.h +++ b/framework/mpe/qml/Muse/Mpe/articulationpatternitem.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.cpp b/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.cpp index e51e94071a..1611922a22 100644 --- a/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.cpp +++ b/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.h b/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.h index 43eb2e8924..a8bc4cdc01 100644 --- a/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.h +++ b/framework/mpe/qml/Muse/Mpe/articulationpatternsegmentitem.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.cpp b/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.cpp index 46509e9c30..4f85e7f2b8 100644 --- a/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.cpp +++ b/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.h b/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.h index eda839017e..a7a3bf7aef 100644 --- a/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.h +++ b/framework/mpe/qml/Muse/Mpe/articulationsprofileeditormodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/soundid.h b/framework/mpe/soundid.h index c1ad6a2a23..2a6604916e 100644 --- a/framework/mpe/soundid.h +++ b/framework/mpe/soundid.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/tests/CMakeLists.txt b/framework/mpe/tests/CMakeLists.txt index 0ea0774fe5..224685366d 100644 --- a/framework/mpe/tests/CMakeLists.txt +++ b/framework/mpe/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/tests/mocks/articulationprofilesrepositorymock.h b/framework/mpe/tests/mocks/articulationprofilesrepositorymock.h index 699b260688..482b1e67c2 100644 --- a/framework/mpe/tests/mocks/articulationprofilesrepositorymock.h +++ b/framework/mpe/tests/mocks/articulationprofilesrepositorymock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/tests/multinotearticulationstest.cpp b/framework/mpe/tests/multinotearticulationstest.cpp index 5f0fa583a0..a674cfc58f 100644 --- a/framework/mpe/tests/multinotearticulationstest.cpp +++ b/framework/mpe/tests/multinotearticulationstest.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/tests/singlenotearticulationstest.cpp b/framework/mpe/tests/singlenotearticulationstest.cpp index 2b7655d76f..7205a77118 100644 --- a/framework/mpe/tests/singlenotearticulationstest.cpp +++ b/framework/mpe/tests/singlenotearticulationstest.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/mpe/tests/utils/articulationutils.h b/framework/mpe/tests/utils/articulationutils.h index 88360485e7..056eb6a3f9 100644 --- a/framework/mpe/tests/utils/articulationutils.h +++ b/framework/mpe/tests/utils/articulationutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/CMakeLists.txt b/framework/multiwindows/CMakeLists.txt index c93a956a19..4d8f8febee 100644 --- a/framework/multiwindows/CMakeLists.txt +++ b/framework/multiwindows/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/imultiwindowsprovider.h b/framework/multiwindows/imultiwindowsprovider.h index 7803fafdd2..3d4d799147 100644 --- a/framework/multiwindows/imultiwindowsprovider.h +++ b/framework/multiwindows/imultiwindowsprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/imultiprocessprovider.h b/framework/multiwindows/internal/multiprocess/imultiprocessprovider.h index 0fcbf7266a..3737d20426 100644 --- a/framework/multiwindows/internal/multiprocess/imultiprocessprovider.h +++ b/framework/multiwindows/internal/multiprocess/imultiprocessprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipc.cpp b/framework/multiwindows/internal/multiprocess/ipc/ipc.cpp index 9a191a8156..9ebc9b53b9 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipc.cpp +++ b/framework/multiwindows/internal/multiprocess/ipc/ipc.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipc.h b/framework/multiwindows/internal/multiprocess/ipc/ipc.h index 7245d520b1..7d00065660 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipc.h +++ b/framework/multiwindows/internal/multiprocess/ipc/ipc.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.cpp b/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.cpp index f417959d21..a8936d298d 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.cpp +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.h b/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.h index 6b2f66d48e..41609c1dd5 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.h +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcchannel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipclock.cpp b/framework/multiwindows/internal/multiprocess/ipc/ipclock.cpp index f9bd35ef43..28cd5afaa5 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipclock.cpp +++ b/framework/multiwindows/internal/multiprocess/ipc/ipclock.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipclock.h b/framework/multiwindows/internal/multiprocess/ipc/ipclock.h index 2e9b44e5e6..f164341354 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipclock.h +++ b/framework/multiwindows/internal/multiprocess/ipc/ipclock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipclog.h b/framework/multiwindows/internal/multiprocess/ipc/ipclog.h index 1dd979812c..1eafac8bcb 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipclog.h +++ b/framework/multiwindows/internal/multiprocess/ipc/ipclog.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcloop.cpp b/framework/multiwindows/internal/multiprocess/ipc/ipcloop.cpp index 69277a8582..95555e76f8 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcloop.cpp +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcloop.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcloop.h b/framework/multiwindows/internal/multiprocess/ipc/ipcloop.h index 190df8033e..b5331b1cde 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcloop.h +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcloop.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcserver.cpp b/framework/multiwindows/internal/multiprocess/ipc/ipcserver.cpp index 8a93a5db58..0ee18cd7ff 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcserver.cpp +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcserver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcserver.h b/framework/multiwindows/internal/multiprocess/ipc/ipcserver.h index 897afab31f..857d4ebe3e 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcserver.h +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcserver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.cpp b/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.cpp index 10d21a6cac..db8838b3ed 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.cpp +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.h b/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.h index 21cb69a2ad..b15ab549b9 100644 --- a/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.h +++ b/framework/multiwindows/internal/multiprocess/ipc/ipcsocket.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/multiprocessprovider.cpp b/framework/multiwindows/internal/multiprocess/multiprocessprovider.cpp index a3deca94bf..4eb817790b 100644 --- a/framework/multiwindows/internal/multiprocess/multiprocessprovider.cpp +++ b/framework/multiwindows/internal/multiprocess/multiprocessprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiprocess/multiprocessprovider.h b/framework/multiwindows/internal/multiprocess/multiprocessprovider.h index d9a5429f8f..b468b540c6 100644 --- a/framework/multiwindows/internal/multiprocess/multiprocessprovider.h +++ b/framework/multiwindows/internal/multiprocess/multiprocessprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiwindowsuiactions.cpp b/framework/multiwindows/internal/multiwindowsuiactions.cpp index 9ed336a610..2d57d26a10 100644 --- a/framework/multiwindows/internal/multiwindowsuiactions.cpp +++ b/framework/multiwindows/internal/multiwindowsuiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/internal/multiwindowsuiactions.h b/framework/multiwindows/internal/multiwindowsuiactions.h index a6910828ef..1849b0204d 100644 --- a/framework/multiwindows/internal/multiwindowsuiactions.h +++ b/framework/multiwindows/internal/multiwindowsuiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/multiwindowsmodule.cpp b/framework/multiwindows/multiwindowsmodule.cpp index e3df1e91b7..35872c0ee9 100644 --- a/framework/multiwindows/multiwindowsmodule.cpp +++ b/framework/multiwindows/multiwindowsmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/multiwindowsmodule.h b/framework/multiwindows/multiwindowsmodule.h index c3a32c2b89..a62b09580d 100644 --- a/framework/multiwindows/multiwindowsmodule.h +++ b/framework/multiwindows/multiwindowsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevDialog.qml b/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevDialog.qml index f41620db5c..75e42e7617 100644 --- a/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevDialog.qml +++ b/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevPanel.qml b/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevPanel.qml index b80ab045b6..05900afa24 100644 --- a/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevPanel.qml +++ b/framework/multiwindows/qml/Muse/MultiWindows/MultiInstancesDevPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.cpp b/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.cpp index a5189d216b..cac29cc579 100644 --- a/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.cpp +++ b/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.h b/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.h index aacee656ca..a7005d2a83 100644 --- a/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.h +++ b/framework/multiwindows/qml/Muse/MultiWindows/multiinstancesdevmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/resourcelockguard.h b/framework/multiwindows/resourcelockguard.h index 74022caaeb..e653ac9f59 100644 --- a/framework/multiwindows/resourcelockguard.h +++ b/framework/multiwindows/resourcelockguard.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/multiwindows/tests/CMakeLists.txt b/framework/multiwindows/tests/CMakeLists.txt index 4708c2c16b..ae98b22a9f 100644 --- a/framework/multiwindows/tests/CMakeLists.txt +++ b/framework/multiwindows/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/multiwindows/tests/environment.cpp b/framework/multiwindows/tests/environment.cpp index f1239582f6..eabe5c64ce 100644 --- a/framework/multiwindows/tests/environment.cpp +++ b/framework/multiwindows/tests/environment.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/multiwindows/tests/mocks/multiwindowsprovidermock.h b/framework/multiwindows/tests/mocks/multiwindowsprovidermock.h index eee9fae4f9..e31381ba11 100644 --- a/framework/multiwindows/tests/mocks/multiwindowsprovidermock.h +++ b/framework/multiwindows/tests/mocks/multiwindowsprovidermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/musesampler/imusesamplerconfiguration.h b/framework/musesampler/imusesamplerconfiguration.h index 4f727ba727..f1f656de59 100644 --- a/framework/musesampler/imusesamplerconfiguration.h +++ b/framework/musesampler/imusesamplerconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/imusesamplerinfo.h b/framework/musesampler/imusesamplerinfo.h index 388e9f6272..04b818bbf8 100644 --- a/framework/musesampler/imusesamplerinfo.h +++ b/framework/musesampler/imusesamplerinfo.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/musesampler/internal/apitypes.h b/framework/musesampler/internal/apitypes.h index 4282cb8786..5c94826a69 100644 --- a/framework/musesampler/internal/apitypes.h +++ b/framework/musesampler/internal/apitypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/imusesamplertracks.h b/framework/musesampler/internal/imusesamplertracks.h index eb2380041a..5e89cf5a43 100644 --- a/framework/musesampler/internal/imusesamplertracks.h +++ b/framework/musesampler/internal/imusesamplertracks.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/musesampler/internal/libhandler.h b/framework/musesampler/internal/libhandler.h index 335ec9c123..d1237ee499 100644 --- a/framework/musesampler/internal/libhandler.h +++ b/framework/musesampler/internal/libhandler.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesampleractioncontroller.cpp b/framework/musesampler/internal/musesampleractioncontroller.cpp index 5149cf0a3a..56c9460a3e 100644 --- a/framework/musesampler/internal/musesampleractioncontroller.cpp +++ b/framework/musesampler/internal/musesampleractioncontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesampleractioncontroller.h b/framework/musesampler/internal/musesampleractioncontroller.h index 84f98558b7..5a1165f87c 100644 --- a/framework/musesampler/internal/musesampleractioncontroller.h +++ b/framework/musesampler/internal/musesampleractioncontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplerconfiguration.cpp b/framework/musesampler/internal/musesamplerconfiguration.cpp index dccb1036a2..bbd6e600f1 100644 --- a/framework/musesampler/internal/musesamplerconfiguration.cpp +++ b/framework/musesampler/internal/musesamplerconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplerconfiguration.h b/framework/musesampler/internal/musesamplerconfiguration.h index 44de1be5f7..ace6dc9912 100644 --- a/framework/musesampler/internal/musesamplerconfiguration.h +++ b/framework/musesampler/internal/musesamplerconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplerresolver.cpp b/framework/musesampler/internal/musesamplerresolver.cpp index 72835b86ee..c8efce503a 100644 --- a/framework/musesampler/internal/musesamplerresolver.cpp +++ b/framework/musesampler/internal/musesamplerresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplerresolver.h b/framework/musesampler/internal/musesamplerresolver.h index afddabd129..2831c0a71f 100644 --- a/framework/musesampler/internal/musesamplerresolver.h +++ b/framework/musesampler/internal/musesamplerresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplersequencer.cpp b/framework/musesampler/internal/musesamplersequencer.cpp index dfd287863e..aa0a13d9c6 100644 --- a/framework/musesampler/internal/musesamplersequencer.cpp +++ b/framework/musesampler/internal/musesamplersequencer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplersequencer.h b/framework/musesampler/internal/musesamplersequencer.h index 88be602536..09b6a24c29 100644 --- a/framework/musesampler/internal/musesamplersequencer.h +++ b/framework/musesampler/internal/musesamplersequencer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesampleruiactions.cpp b/framework/musesampler/internal/musesampleruiactions.cpp index 4276c80da7..a156e6dbac 100644 --- a/framework/musesampler/internal/musesampleruiactions.cpp +++ b/framework/musesampler/internal/musesampleruiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesampleruiactions.h b/framework/musesampler/internal/musesampleruiactions.h index e425862207..53fca51539 100644 --- a/framework/musesampler/internal/musesampleruiactions.h +++ b/framework/musesampler/internal/musesampleruiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplerwrapper.cpp b/framework/musesampler/internal/musesamplerwrapper.cpp index 73bb879050..6461952209 100644 --- a/framework/musesampler/internal/musesamplerwrapper.cpp +++ b/framework/musesampler/internal/musesamplerwrapper.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/musesampler/internal/musesamplerwrapper.h b/framework/musesampler/internal/musesamplerwrapper.h index bc5c38d5b4..5014901aa3 100644 --- a/framework/musesampler/internal/musesamplerwrapper.h +++ b/framework/musesampler/internal/musesamplerwrapper.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/musesampler/musesamplermodule.cpp b/framework/musesampler/musesamplermodule.cpp index ff62f6ad7b..8479429c8e 100644 --- a/framework/musesampler/musesamplermodule.cpp +++ b/framework/musesampler/musesamplermodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/musesampler/musesamplermodule.h b/framework/musesampler/musesamplermodule.h index ae849e02da..07c9243b87 100644 --- a/framework/musesampler/musesamplermodule.h +++ b/framework/musesampler/musesamplermodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/musesampler/musesamplertypes.h b/framework/musesampler/musesamplertypes.h index da800b9a1d..4e39803dad 100644 --- a/framework/musesampler/musesamplertypes.h +++ b/framework/musesampler/musesamplertypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/network/api/websocketapi.cpp b/framework/network/api/websocketapi.cpp index 0077770759..4127777197 100644 --- a/framework/network/api/websocketapi.cpp +++ b/framework/network/api/websocketapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/network/api/websocketapi.h b/framework/network/api/websocketapi.h index 45f8ffcfc6..9ad59fae96 100644 --- a/framework/network/api/websocketapi.h +++ b/framework/network/api/websocketapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/network/api/websocketserverapi.cpp b/framework/network/api/websocketserverapi.cpp index 58bbfc3cfd..245ded9347 100644 --- a/framework/network/api/websocketserverapi.cpp +++ b/framework/network/api/websocketserverapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/network/api/websocketserverapi.h b/framework/network/api/websocketserverapi.h index a83d18e19b..bc8ee39a5d 100644 --- a/framework/network/api/websocketserverapi.h +++ b/framework/network/api/websocketserverapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/network/inetworkconfiguration.h b/framework/network/inetworkconfiguration.h index 7dae3f0c6e..22ce508ba2 100644 --- a/framework/network/inetworkconfiguration.h +++ b/framework/network/inetworkconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/inetworkmanager.h b/framework/network/inetworkmanager.h index 60257a8a54..dc61a1e6d8 100644 --- a/framework/network/inetworkmanager.h +++ b/framework/network/inetworkmanager.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/inetworkmanagercreator.h b/framework/network/inetworkmanagercreator.h index 3398782269..76025db162 100644 --- a/framework/network/inetworkmanagercreator.h +++ b/framework/network/inetworkmanagercreator.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/internal/networkconfiguration.cpp b/framework/network/internal/networkconfiguration.cpp index 2efcd666eb..864594e8b7 100644 --- a/framework/network/internal/networkconfiguration.cpp +++ b/framework/network/internal/networkconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/internal/networkconfiguration.h b/framework/network/internal/networkconfiguration.h index 3b7734c8fc..181d40a48f 100644 --- a/framework/network/internal/networkconfiguration.h +++ b/framework/network/internal/networkconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/internal/networkmanager.cpp b/framework/network/internal/networkmanager.cpp index 7c05991b6e..804a066ceb 100644 --- a/framework/network/internal/networkmanager.cpp +++ b/framework/network/internal/networkmanager.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/network/internal/networkmanager.h b/framework/network/internal/networkmanager.h index 7a775c3c19..dd74f33495 100644 --- a/framework/network/internal/networkmanager.h +++ b/framework/network/internal/networkmanager.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/internal/networkmanagercreator.cpp b/framework/network/internal/networkmanagercreator.cpp index 7b58f1666c..acd83fae1a 100644 --- a/framework/network/internal/networkmanagercreator.cpp +++ b/framework/network/internal/networkmanagercreator.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/internal/networkmanagercreator.h b/framework/network/internal/networkmanagercreator.h index 754ab296db..9376c3c6e5 100644 --- a/framework/network/internal/networkmanagercreator.h +++ b/framework/network/internal/networkmanagercreator.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/networkerrors.h b/framework/network/networkerrors.h index daa94b5b2d..8eb722f5d8 100644 --- a/framework/network/networkerrors.h +++ b/framework/network/networkerrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/network/networkmodule.cpp b/framework/network/networkmodule.cpp index 040c4e1bd0..9ea0e7286f 100644 --- a/framework/network/networkmodule.cpp +++ b/framework/network/networkmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/network/networkmodule.h b/framework/network/networkmodule.h index 1b6a1fcd58..eb5eb5f700 100644 --- a/framework/network/networkmodule.h +++ b/framework/network/networkmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/network/networktypes.h b/framework/network/networktypes.h index 32b34315b1..8d9fb6209d 100644 --- a/framework/network/networktypes.h +++ b/framework/network/networktypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/tests/CMakeLists.txt b/framework/network/tests/CMakeLists.txt index 952ae24323..10dae77e5c 100644 --- a/framework/network/tests/CMakeLists.txt +++ b/framework/network/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/network/tests/mocks/networkmanagercreatormock.h b/framework/network/tests/mocks/networkmanagercreatormock.h index 9530cc93c5..7c1afabc73 100644 --- a/framework/network/tests/mocks/networkmanagercreatormock.h +++ b/framework/network/tests/mocks/networkmanagercreatormock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/network/tests/mocks/networkmanagermock.h b/framework/network/tests/mocks/networkmanagermock.h index 493d5f3a57..e20aa58109 100644 --- a/framework/network/tests/mocks/networkmanagermock.h +++ b/framework/network/tests/mocks/networkmanagermock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/shortcuts/api/shortcutsapi.cpp b/framework/shortcuts/api/shortcutsapi.cpp index ef95494da7..44f0e556e3 100644 --- a/framework/shortcuts/api/shortcutsapi.cpp +++ b/framework/shortcuts/api/shortcutsapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/api/shortcutsapi.h b/framework/shortcuts/api/shortcutsapi.h index 5504d0eefc..5701c8d4cf 100644 --- a/framework/shortcuts/api/shortcutsapi.h +++ b/framework/shortcuts/api/shortcutsapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/internal/shortcutsconfiguration.cpp b/framework/shortcuts/internal/shortcutsconfiguration.cpp index c7e84ae470..927dd73b0f 100644 --- a/framework/shortcuts/internal/shortcutsconfiguration.cpp +++ b/framework/shortcuts/internal/shortcutsconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/internal/shortcutsconfiguration.h b/framework/shortcuts/internal/shortcutsconfiguration.h index 170cedb523..c3be64bf55 100644 --- a/framework/shortcuts/internal/shortcutsconfiguration.h +++ b/framework/shortcuts/internal/shortcutsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/internal/shortcutscontroller.cpp b/framework/shortcuts/internal/shortcutscontroller.cpp index 04f8df0b1d..3dd705fe04 100644 --- a/framework/shortcuts/internal/shortcutscontroller.cpp +++ b/framework/shortcuts/internal/shortcutscontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/internal/shortcutscontroller.h b/framework/shortcuts/internal/shortcutscontroller.h index f48aa7c144..ea03adfe90 100644 --- a/framework/shortcuts/internal/shortcutscontroller.h +++ b/framework/shortcuts/internal/shortcutscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/internal/shortcutsregister.cpp b/framework/shortcuts/internal/shortcutsregister.cpp index 7615aeac99..d79c92cf8f 100644 --- a/framework/shortcuts/internal/shortcutsregister.cpp +++ b/framework/shortcuts/internal/shortcutsregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/internal/shortcutsregister.h b/framework/shortcuts/internal/shortcutsregister.h index 9d8a823dc9..90344d58f1 100644 --- a/framework/shortcuts/internal/shortcutsregister.h +++ b/framework/shortcuts/internal/shortcutsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/ishortcutsconfiguration.h b/framework/shortcuts/ishortcutsconfiguration.h index 637e2969f5..5700bc9bf1 100644 --- a/framework/shortcuts/ishortcutsconfiguration.h +++ b/framework/shortcuts/ishortcutsconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/ishortcutscontroller.h b/framework/shortcuts/ishortcutscontroller.h index b1360a0549..e29672d208 100644 --- a/framework/shortcuts/ishortcutscontroller.h +++ b/framework/shortcuts/ishortcutscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/ishortcutsregister.h b/framework/shortcuts/ishortcutsregister.h index dad8ed885d..608d6b4250 100644 --- a/framework/shortcuts/ishortcutsregister.h +++ b/framework/shortcuts/ishortcutsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/EditShortcutDialogContent.qml b/framework/shortcuts/qml/Muse/Shortcuts/EditShortcutDialogContent.qml index 8a1de2003c..6939b7e5f7 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/EditShortcutDialogContent.qml +++ b/framework/shortcuts/qml/Muse/Shortcuts/EditShortcutDialogContent.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml b/framework/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml index 36004903fd..ba8112879e 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml +++ b/framework/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/ShortcutsPage.qml b/framework/shortcuts/qml/Muse/Shortcuts/ShortcutsPage.qml index 222516f01b..2ccb569051 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/ShortcutsPage.qml +++ b/framework/shortcuts/qml/Muse/Shortcuts/ShortcutsPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/StandardEditShortcutDialog.qml b/framework/shortcuts/qml/Muse/Shortcuts/StandardEditShortcutDialog.qml index 1a6f2f9fde..9738d9cd39 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/StandardEditShortcutDialog.qml +++ b/framework/shortcuts/qml/Muse/Shortcuts/StandardEditShortcutDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.cpp b/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.cpp index 303dd68b88..05975ebcf0 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.cpp +++ b/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.h b/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.h index eb832fdf52..28c01c193b 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.h +++ b/framework/shortcuts/qml/Muse/Shortcuts/editshortcutmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsBottomPanel.qml b/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsBottomPanel.qml index 9e92cd2dfe..79666f7a63 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsBottomPanel.qml +++ b/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsBottomPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsList.qml b/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsList.qml index df58fa0124..e16d8f1e40 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsList.qml +++ b/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsList.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsTopPanel.qml b/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsTopPanel.qml index 573ecabff4..b788ea1d1d 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsTopPanel.qml +++ b/framework/shortcuts/qml/Muse/Shortcuts/internal/ShortcutsTopPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.h b/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.h index a96b278f55..1e63b9fc3a 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.h +++ b/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.mm b/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.mm index 8249d89f2d..4311866552 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.mm +++ b/framework/shortcuts/qml/Muse/Shortcuts/platform/macos/macosshortcutsinstancemodel.mm @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.cpp b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.cpp index 9017e38542..1972c57425 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.cpp +++ b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.h b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.h index ac04165981..601b1c9ce8 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.h +++ b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsinstancemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.cpp b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.cpp index 05c62c7a4b..fdb01ca95e 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.cpp +++ b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.h b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.h index a20a5dbba5..1310f14089 100644 --- a/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.h +++ b/framework/shortcuts/qml/Muse/Shortcuts/shortcutsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/shortcutcontext.h b/framework/shortcuts/shortcutcontext.h index 38354c2c1a..aed34b5612 100644 --- a/framework/shortcuts/shortcutcontext.h +++ b/framework/shortcuts/shortcutcontext.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/shortcutsmodule.cpp b/framework/shortcuts/shortcutsmodule.cpp index bf6a1e344c..6a38f4112d 100644 --- a/framework/shortcuts/shortcutsmodule.cpp +++ b/framework/shortcuts/shortcutsmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/shortcutsmodule.h b/framework/shortcuts/shortcutsmodule.h index 24b5a7967f..c6f36d8e47 100644 --- a/framework/shortcuts/shortcutsmodule.h +++ b/framework/shortcuts/shortcutsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/shortcuts/shortcutstypes.h b/framework/shortcuts/shortcutstypes.h index cbbbb97c1a..7b77b56a2b 100644 --- a/framework/shortcuts/shortcutstypes.h +++ b/framework/shortcuts/shortcutstypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/CMakeLists.txt b/framework/stubs/CMakeLists.txt index 9a96cc6f25..531fb7966a 100644 --- a/framework/stubs/CMakeLists.txt +++ b/framework/stubs/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/accessibility/accessibilitycontrollerstub.cpp b/framework/stubs/accessibility/accessibilitycontrollerstub.cpp index 53652b4299..edbbc345ff 100644 --- a/framework/stubs/accessibility/accessibilitycontrollerstub.cpp +++ b/framework/stubs/accessibility/accessibilitycontrollerstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/accessibility/accessibilitycontrollerstub.h b/framework/stubs/accessibility/accessibilitycontrollerstub.h index 91ed98b9cd..f257584b5e 100644 --- a/framework/stubs/accessibility/accessibilitycontrollerstub.h +++ b/framework/stubs/accessibility/accessibilitycontrollerstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/accessibility/accessibilitystubmodule.cpp b/framework/stubs/accessibility/accessibilitystubmodule.cpp index 00f6e2ba7a..d16b1bf4c9 100644 --- a/framework/stubs/accessibility/accessibilitystubmodule.cpp +++ b/framework/stubs/accessibility/accessibilitystubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/accessibility/accessibilitystubmodule.h b/framework/stubs/accessibility/accessibilitystubmodule.h index 4ce0fdb10b..732a9bca7f 100644 --- a/framework/stubs/accessibility/accessibilitystubmodule.h +++ b/framework/stubs/accessibility/accessibilitystubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/audio/audioconfigurationstub.cpp b/framework/stubs/audio/audioconfigurationstub.cpp index f0062c43c0..e4b9859e94 100644 --- a/framework/stubs/audio/audioconfigurationstub.cpp +++ b/framework/stubs/audio/audioconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/audioconfigurationstub.h b/framework/stubs/audio/audioconfigurationstub.h index ce02f7b490..a88f6bf5eb 100644 --- a/framework/stubs/audio/audioconfigurationstub.h +++ b/framework/stubs/audio/audioconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/audiodrivercontrollerstub.cpp b/framework/stubs/audio/audiodrivercontrollerstub.cpp index da7f0fc445..8c707018e9 100644 --- a/framework/stubs/audio/audiodrivercontrollerstub.cpp +++ b/framework/stubs/audio/audiodrivercontrollerstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/audiodrivercontrollerstub.h b/framework/stubs/audio/audiodrivercontrollerstub.h index eae940b69d..a6516f23fc 100644 --- a/framework/stubs/audio/audiodrivercontrollerstub.h +++ b/framework/stubs/audio/audiodrivercontrollerstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/audiodriverstub.cpp b/framework/stubs/audio/audiodriverstub.cpp index e4ffe89010..1875512d36 100644 --- a/framework/stubs/audio/audiodriverstub.cpp +++ b/framework/stubs/audio/audiodriverstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/audiodriverstub.h b/framework/stubs/audio/audiodriverstub.h index 2a953f8c90..69afb5a11a 100644 --- a/framework/stubs/audio/audiodriverstub.h +++ b/framework/stubs/audio/audiodriverstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/audiostubmodule.cpp b/framework/stubs/audio/audiostubmodule.cpp index 4ea527919d..43cd8c07f6 100644 --- a/framework/stubs/audio/audiostubmodule.cpp +++ b/framework/stubs/audio/audiostubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/audiostubmodule.h b/framework/stubs/audio/audiostubmodule.h index 0df1d57120..8fde7e9628 100644 --- a/framework/stubs/audio/audiostubmodule.h +++ b/framework/stubs/audio/audiostubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/audio/fxresolverstub.cpp b/framework/stubs/audio/fxresolverstub.cpp index ada1275f1a..0249c1ee5d 100644 --- a/framework/stubs/audio/fxresolverstub.cpp +++ b/framework/stubs/audio/fxresolverstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/audio/fxresolverstub.h b/framework/stubs/audio/fxresolverstub.h index fa3e3354e2..fa215e8af3 100644 --- a/framework/stubs/audio/fxresolverstub.h +++ b/framework/stubs/audio/fxresolverstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/audio/soundfontcontrollerstub.cpp b/framework/stubs/audio/soundfontcontrollerstub.cpp index 95e29d5b2e..69d893527a 100644 --- a/framework/stubs/audio/soundfontcontrollerstub.cpp +++ b/framework/stubs/audio/soundfontcontrollerstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/audio/soundfontcontrollerstub.h b/framework/stubs/audio/soundfontcontrollerstub.h index 1436477cee..e7a7a55943 100644 --- a/framework/stubs/audio/soundfontcontrollerstub.h +++ b/framework/stubs/audio/soundfontcontrollerstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/audio/synthesizerstub.cpp b/framework/stubs/audio/synthesizerstub.cpp index dfcafee8b5..09052600b2 100644 --- a/framework/stubs/audio/synthesizerstub.cpp +++ b/framework/stubs/audio/synthesizerstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/audio/synthesizerstub.h b/framework/stubs/audio/synthesizerstub.h index 7221ad682f..b9f3de872e 100644 --- a/framework/stubs/audio/synthesizerstub.h +++ b/framework/stubs/audio/synthesizerstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/audio/synthresolverstub.cpp b/framework/stubs/audio/synthresolverstub.cpp index 1c1cc14a2e..d51649b807 100644 --- a/framework/stubs/audio/synthresolverstub.cpp +++ b/framework/stubs/audio/synthresolverstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/audio/synthresolverstub.h b/framework/stubs/audio/synthresolverstub.h index b4107d7ac8..6f14b87a8d 100644 --- a/framework/stubs/audio/synthresolverstub.h +++ b/framework/stubs/audio/synthresolverstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/automation/automationstubmodule.cpp b/framework/stubs/automation/automationstubmodule.cpp index 57c781ca6c..0c3bfb84f7 100644 --- a/framework/stubs/automation/automationstubmodule.cpp +++ b/framework/stubs/automation/automationstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/automation/automationstubmodule.h b/framework/stubs/automation/automationstubmodule.h index 1b99148a57..012c4e089e 100644 --- a/framework/stubs/automation/automationstubmodule.h +++ b/framework/stubs/automation/automationstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/cloud/authorizationservicestub.cpp b/framework/stubs/cloud/authorizationservicestub.cpp index 70f17a54f6..a83e88780b 100644 --- a/framework/stubs/cloud/authorizationservicestub.cpp +++ b/framework/stubs/cloud/authorizationservicestub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/cloud/authorizationservicestub.h b/framework/stubs/cloud/authorizationservicestub.h index 366050c865..50b7cf6a6f 100644 --- a/framework/stubs/cloud/authorizationservicestub.h +++ b/framework/stubs/cloud/authorizationservicestub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/cloud/cloudstubmodule.cpp b/framework/stubs/cloud/cloudstubmodule.cpp index 79d86109cb..0d281aa438 100644 --- a/framework/stubs/cloud/cloudstubmodule.cpp +++ b/framework/stubs/cloud/cloudstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/cloud/cloudstubmodule.h b/framework/stubs/cloud/cloudstubmodule.h index cfea622a93..ca81f9fb1b 100644 --- a/framework/stubs/cloud/cloudstubmodule.h +++ b/framework/stubs/cloud/cloudstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/cloud/qml/Muse/Cloud/AccountInfoButton.qml b/framework/stubs/cloud/qml/Muse/Cloud/AccountInfoButton.qml index 56dae33a41..2a626fa419 100644 --- a/framework/stubs/cloud/qml/Muse/Cloud/AccountInfoButton.qml +++ b/framework/stubs/cloud/qml/Muse/Cloud/AccountInfoButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/cloud/qml/Muse/Cloud/AccountPage.qml b/framework/stubs/cloud/qml/Muse/Cloud/AccountPage.qml index 490b87bdda..fbd54376da 100644 --- a/framework/stubs/cloud/qml/Muse/Cloud/AccountPage.qml +++ b/framework/stubs/cloud/qml/Muse/Cloud/AccountPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/extensions/CMakeLists.txt b/framework/stubs/extensions/CMakeLists.txt index 0d22275c69..73b033b9fb 100644 --- a/framework/stubs/extensions/CMakeLists.txt +++ b/framework/stubs/extensions/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/extensions/extensionsproviderstub.cpp b/framework/stubs/extensions/extensionsproviderstub.cpp index b63ff7f078..fb3d168b8b 100644 --- a/framework/stubs/extensions/extensionsproviderstub.cpp +++ b/framework/stubs/extensions/extensionsproviderstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/extensions/extensionsproviderstub.h b/framework/stubs/extensions/extensionsproviderstub.h index 21f25cc0fd..a332e5b198 100644 --- a/framework/stubs/extensions/extensionsproviderstub.h +++ b/framework/stubs/extensions/extensionsproviderstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/extensions/extensionsstubmodule.cpp b/framework/stubs/extensions/extensionsstubmodule.cpp index 77245f737a..d11613bfa9 100644 --- a/framework/stubs/extensions/extensionsstubmodule.cpp +++ b/framework/stubs/extensions/extensionsstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/extensions/extensionsstubmodule.h b/framework/stubs/extensions/extensionsstubmodule.h index a873d36b58..22f8109829 100644 --- a/framework/stubs/extensions/extensionsstubmodule.h +++ b/framework/stubs/extensions/extensionsstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/languages/languagesconfigurationstub.cpp b/framework/stubs/languages/languagesconfigurationstub.cpp index 28cb25bbbc..e9abd190b9 100644 --- a/framework/stubs/languages/languagesconfigurationstub.cpp +++ b/framework/stubs/languages/languagesconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/languages/languagesconfigurationstub.h b/framework/stubs/languages/languagesconfigurationstub.h index 0ce409a29f..d3a7dca6f3 100644 --- a/framework/stubs/languages/languagesconfigurationstub.h +++ b/framework/stubs/languages/languagesconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/languages/languagesservicestub.cpp b/framework/stubs/languages/languagesservicestub.cpp index 1ffe11d907..d3ddd6f2f8 100644 --- a/framework/stubs/languages/languagesservicestub.cpp +++ b/framework/stubs/languages/languagesservicestub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/languages/languagesservicestub.h b/framework/stubs/languages/languagesservicestub.h index b44ffeb776..78f83bbf3a 100644 --- a/framework/stubs/languages/languagesservicestub.h +++ b/framework/stubs/languages/languagesservicestub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/languages/languagesstubmodule.cpp b/framework/stubs/languages/languagesstubmodule.cpp index 1852e8a5ec..69121cf648 100644 --- a/framework/stubs/languages/languagesstubmodule.cpp +++ b/framework/stubs/languages/languagesstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/languages/languagesstubmodule.h b/framework/stubs/languages/languagesstubmodule.h index 8214e79d07..b87cee21f5 100644 --- a/framework/stubs/languages/languagesstubmodule.h +++ b/framework/stubs/languages/languagesstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/learn/CMakeLists.txt b/framework/stubs/learn/CMakeLists.txt index a280b9e0a1..a7d2e1b01b 100644 --- a/framework/stubs/learn/CMakeLists.txt +++ b/framework/stubs/learn/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/learn/learnmodule.cpp b/framework/stubs/learn/learnmodule.cpp index d80bc3fa9a..16a8726d4b 100644 --- a/framework/stubs/learn/learnmodule.cpp +++ b/framework/stubs/learn/learnmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/learn/learnmodule.h b/framework/stubs/learn/learnmodule.h index f32f36b09f..72f78ba93c 100644 --- a/framework/stubs/learn/learnmodule.h +++ b/framework/stubs/learn/learnmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/learn/qml/Muse/Learn/CMakeLists.txt b/framework/stubs/learn/qml/Muse/Learn/CMakeLists.txt index ab50391e01..d1670d997d 100644 --- a/framework/stubs/learn/qml/Muse/Learn/CMakeLists.txt +++ b/framework/stubs/learn/qml/Muse/Learn/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/learn/qml/Muse/Learn/LearnPage.qml b/framework/stubs/learn/qml/Muse/Learn/LearnPage.qml index 4a5144d5f3..44f9a630cc 100644 --- a/framework/stubs/learn/qml/Muse/Learn/LearnPage.qml +++ b/framework/stubs/learn/qml/Muse/Learn/LearnPage.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/midi/midiconfigurationstub.cpp b/framework/stubs/midi/midiconfigurationstub.cpp index f002595c1a..1c43976cb7 100644 --- a/framework/stubs/midi/midiconfigurationstub.cpp +++ b/framework/stubs/midi/midiconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/midi/midiconfigurationstub.h b/framework/stubs/midi/midiconfigurationstub.h index 26eb3e14b1..c1d128b5e9 100644 --- a/framework/stubs/midi/midiconfigurationstub.h +++ b/framework/stubs/midi/midiconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/midi/midiinportstub.cpp b/framework/stubs/midi/midiinportstub.cpp index b81460b0bb..838a6c1f88 100644 --- a/framework/stubs/midi/midiinportstub.cpp +++ b/framework/stubs/midi/midiinportstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/midi/midiinportstub.h b/framework/stubs/midi/midiinportstub.h index 283a28e466..10b7b86544 100644 --- a/framework/stubs/midi/midiinportstub.h +++ b/framework/stubs/midi/midiinportstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/midi/midioutportstub.cpp b/framework/stubs/midi/midioutportstub.cpp index 085f8fd20f..98766b06d0 100644 --- a/framework/stubs/midi/midioutportstub.cpp +++ b/framework/stubs/midi/midioutportstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/midi/midioutportstub.h b/framework/stubs/midi/midioutportstub.h index 519254cda3..fabd7f55a5 100644 --- a/framework/stubs/midi/midioutportstub.h +++ b/framework/stubs/midi/midioutportstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/midi/midistubmodule.cpp b/framework/stubs/midi/midistubmodule.cpp index bc1bc4087a..c6b213f4a7 100644 --- a/framework/stubs/midi/midistubmodule.cpp +++ b/framework/stubs/midi/midistubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/midi/midistubmodule.h b/framework/stubs/midi/midistubmodule.h index 102a093d9a..fdac65d9f6 100644 --- a/framework/stubs/midi/midistubmodule.h +++ b/framework/stubs/midi/midistubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/midiremote/CMakeLists.txt b/framework/stubs/midiremote/CMakeLists.txt index 12da17b062..11199f7d83 100644 --- a/framework/stubs/midiremote/CMakeLists.txt +++ b/framework/stubs/midiremote/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/midiremote/midiremoteconfigurationstub.cpp b/framework/stubs/midiremote/midiremoteconfigurationstub.cpp index bee5e3acb8..7c3bce1236 100644 --- a/framework/stubs/midiremote/midiremoteconfigurationstub.cpp +++ b/framework/stubs/midiremote/midiremoteconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/midiremote/midiremoteconfigurationstub.h b/framework/stubs/midiremote/midiremoteconfigurationstub.h index 5e42094d98..a48850e780 100644 --- a/framework/stubs/midiremote/midiremoteconfigurationstub.h +++ b/framework/stubs/midiremote/midiremoteconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/midiremote/midiremotestub.cpp b/framework/stubs/midiremote/midiremotestub.cpp index 9d333c14c6..71ef0df953 100644 --- a/framework/stubs/midiremote/midiremotestub.cpp +++ b/framework/stubs/midiremote/midiremotestub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/midiremote/midiremotestub.h b/framework/stubs/midiremote/midiremotestub.h index 27c86f49c4..716c4b8043 100644 --- a/framework/stubs/midiremote/midiremotestub.h +++ b/framework/stubs/midiremote/midiremotestub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/midiremote/midiremotestubmodule.cpp b/framework/stubs/midiremote/midiremotestubmodule.cpp index db2a77c4f9..bde41e50b5 100644 --- a/framework/stubs/midiremote/midiremotestubmodule.cpp +++ b/framework/stubs/midiremote/midiremotestubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/midiremote/midiremotestubmodule.h b/framework/stubs/midiremote/midiremotestubmodule.h index d903b211f9..9384509f42 100644 --- a/framework/stubs/midiremote/midiremotestubmodule.h +++ b/framework/stubs/midiremote/midiremotestubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/stubs/mpe/articulationprofilesrepositorystub.cpp b/framework/stubs/mpe/articulationprofilesrepositorystub.cpp index a62649b9fd..32306a02ce 100644 --- a/framework/stubs/mpe/articulationprofilesrepositorystub.cpp +++ b/framework/stubs/mpe/articulationprofilesrepositorystub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/mpe/articulationprofilesrepositorystub.h b/framework/stubs/mpe/articulationprofilesrepositorystub.h index 1874cf4afb..6aeaeb03ef 100644 --- a/framework/stubs/mpe/articulationprofilesrepositorystub.h +++ b/framework/stubs/mpe/articulationprofilesrepositorystub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/mpe/mpestubmodule.cpp b/framework/stubs/mpe/mpestubmodule.cpp index 879940c429..6639b71af9 100644 --- a/framework/stubs/mpe/mpestubmodule.cpp +++ b/framework/stubs/mpe/mpestubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/mpe/mpestubmodule.h b/framework/stubs/mpe/mpestubmodule.h index 2f58088f27..6f413866b3 100644 --- a/framework/stubs/mpe/mpestubmodule.h +++ b/framework/stubs/mpe/mpestubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/stubs/multiwindows/multiwindowsstubmodule.cpp b/framework/stubs/multiwindows/multiwindowsstubmodule.cpp index 807682f8b8..893d844de2 100644 --- a/framework/stubs/multiwindows/multiwindowsstubmodule.cpp +++ b/framework/stubs/multiwindows/multiwindowsstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/multiwindows/multiwindowsstubmodule.h b/framework/stubs/multiwindows/multiwindowsstubmodule.h index d1d3975d92..860204ad87 100644 --- a/framework/stubs/multiwindows/multiwindowsstubmodule.h +++ b/framework/stubs/multiwindows/multiwindowsstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/multiwindows/multiwindowsstubprovider.cpp b/framework/stubs/multiwindows/multiwindowsstubprovider.cpp index 5e2f508a09..b998b79073 100644 --- a/framework/stubs/multiwindows/multiwindowsstubprovider.cpp +++ b/framework/stubs/multiwindows/multiwindowsstubprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/multiwindows/multiwindowsstubprovider.h b/framework/stubs/multiwindows/multiwindowsstubprovider.h index 2c3dc01d33..737cba39e3 100644 --- a/framework/stubs/multiwindows/multiwindowsstubprovider.h +++ b/framework/stubs/multiwindows/multiwindowsstubprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/network/networkconfigurationstub.cpp b/framework/stubs/network/networkconfigurationstub.cpp index 9aeab1cbcf..4a3e568ffe 100644 --- a/framework/stubs/network/networkconfigurationstub.cpp +++ b/framework/stubs/network/networkconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/network/networkconfigurationstub.h b/framework/stubs/network/networkconfigurationstub.h index 0b954c1eb7..aa749eb693 100644 --- a/framework/stubs/network/networkconfigurationstub.h +++ b/framework/stubs/network/networkconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/network/networkmanagercreatorstub.cpp b/framework/stubs/network/networkmanagercreatorstub.cpp index 2c26590a77..6f57358a82 100644 --- a/framework/stubs/network/networkmanagercreatorstub.cpp +++ b/framework/stubs/network/networkmanagercreatorstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/network/networkmanagercreatorstub.h b/framework/stubs/network/networkmanagercreatorstub.h index 4b4e9dfe84..c35eb561a0 100644 --- a/framework/stubs/network/networkmanagercreatorstub.h +++ b/framework/stubs/network/networkmanagercreatorstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/network/networkmanagerstub.cpp b/framework/stubs/network/networkmanagerstub.cpp index 0716e5b73b..b0a92f38a5 100644 --- a/framework/stubs/network/networkmanagerstub.cpp +++ b/framework/stubs/network/networkmanagerstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/network/networkmanagerstub.h b/framework/stubs/network/networkmanagerstub.h index 4066ef58b9..485da08c84 100644 --- a/framework/stubs/network/networkmanagerstub.h +++ b/framework/stubs/network/networkmanagerstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/network/networkstubmodule.cpp b/framework/stubs/network/networkstubmodule.cpp index e1eabde033..44d15e7227 100644 --- a/framework/stubs/network/networkstubmodule.cpp +++ b/framework/stubs/network/networkstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/network/networkstubmodule.h b/framework/stubs/network/networkstubmodule.h index 72d1b76b13..4124a4de20 100644 --- a/framework/stubs/network/networkstubmodule.h +++ b/framework/stubs/network/networkstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/CMakeLists.txt b/framework/stubs/shortcuts/CMakeLists.txt index 58869e18ee..94a8c92817 100644 --- a/framework/stubs/shortcuts/CMakeLists.txt +++ b/framework/stubs/shortcuts/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml b/framework/stubs/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml index a5880f894a..a4af427342 100644 --- a/framework/stubs/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml +++ b/framework/stubs/shortcuts/qml/Muse/Shortcuts/Shortcuts.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutsconfigurationstub.cpp b/framework/stubs/shortcuts/shortcutsconfigurationstub.cpp index 5575114ebd..310e4fcc9b 100644 --- a/framework/stubs/shortcuts/shortcutsconfigurationstub.cpp +++ b/framework/stubs/shortcuts/shortcutsconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutsconfigurationstub.h b/framework/stubs/shortcuts/shortcutsconfigurationstub.h index 634cc22ce8..01ac730a56 100644 --- a/framework/stubs/shortcuts/shortcutsconfigurationstub.h +++ b/framework/stubs/shortcuts/shortcutsconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutscontrollerstub.cpp b/framework/stubs/shortcuts/shortcutscontrollerstub.cpp index 1634797f19..b49b5a0134 100644 --- a/framework/stubs/shortcuts/shortcutscontrollerstub.cpp +++ b/framework/stubs/shortcuts/shortcutscontrollerstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutscontrollerstub.h b/framework/stubs/shortcuts/shortcutscontrollerstub.h index 98e2b34726..d754bfe33d 100644 --- a/framework/stubs/shortcuts/shortcutscontrollerstub.h +++ b/framework/stubs/shortcuts/shortcutscontrollerstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutsregisterstub.cpp b/framework/stubs/shortcuts/shortcutsregisterstub.cpp index 0b4e0742bb..d2540a4ff1 100644 --- a/framework/stubs/shortcuts/shortcutsregisterstub.cpp +++ b/framework/stubs/shortcuts/shortcutsregisterstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutsregisterstub.h b/framework/stubs/shortcuts/shortcutsregisterstub.h index 6919a28f39..c163fa2be6 100644 --- a/framework/stubs/shortcuts/shortcutsregisterstub.h +++ b/framework/stubs/shortcuts/shortcutsregisterstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutsstubmodule.cpp b/framework/stubs/shortcuts/shortcutsstubmodule.cpp index 4b9153ecc2..a5b8b408fe 100644 --- a/framework/stubs/shortcuts/shortcutsstubmodule.cpp +++ b/framework/stubs/shortcuts/shortcutsstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/shortcuts/shortcutsstubmodule.h b/framework/stubs/shortcuts/shortcutsstubmodule.h index 8d60168877..3c4e893223 100644 --- a/framework/stubs/shortcuts/shortcutsstubmodule.h +++ b/framework/stubs/shortcuts/shortcutsstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/tours/qml/Muse/Tours/ToursProvider.qml b/framework/stubs/tours/qml/Muse/Tours/ToursProvider.qml index 9bdf93397a..388a8ac4cc 100644 --- a/framework/stubs/tours/qml/Muse/Tours/ToursProvider.qml +++ b/framework/stubs/tours/qml/Muse/Tours/ToursProvider.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursconfigurationstub.cpp b/framework/stubs/tours/toursconfigurationstub.cpp index 612142ba74..4bff58b4e2 100644 --- a/framework/stubs/tours/toursconfigurationstub.cpp +++ b/framework/stubs/tours/toursconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursconfigurationstub.h b/framework/stubs/tours/toursconfigurationstub.h index fb7d852305..08534a57a2 100644 --- a/framework/stubs/tours/toursconfigurationstub.h +++ b/framework/stubs/tours/toursconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursproviderstub.cpp b/framework/stubs/tours/toursproviderstub.cpp index 9b06a85054..bab6bf694f 100644 --- a/framework/stubs/tours/toursproviderstub.cpp +++ b/framework/stubs/tours/toursproviderstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursproviderstub.h b/framework/stubs/tours/toursproviderstub.h index 2464c4dade..877594016f 100644 --- a/framework/stubs/tours/toursproviderstub.h +++ b/framework/stubs/tours/toursproviderstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursservicestub.cpp b/framework/stubs/tours/toursservicestub.cpp index c99c4b428b..1392e28c17 100644 --- a/framework/stubs/tours/toursservicestub.cpp +++ b/framework/stubs/tours/toursservicestub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursservicestub.h b/framework/stubs/tours/toursservicestub.h index b27ad4632b..ce96bafa6d 100644 --- a/framework/stubs/tours/toursservicestub.h +++ b/framework/stubs/tours/toursservicestub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursstubmodule.cpp b/framework/stubs/tours/toursstubmodule.cpp index e9843fba91..bcdf42d45c 100644 --- a/framework/stubs/tours/toursstubmodule.cpp +++ b/framework/stubs/tours/toursstubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/tours/toursstubmodule.h b/framework/stubs/tours/toursstubmodule.h index 4b850b4b43..9e6fc9c372 100644 --- a/framework/stubs/tours/toursstubmodule.h +++ b/framework/stubs/tours/toursstubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/update/appupdatescenariostub.cpp b/framework/stubs/update/appupdatescenariostub.cpp index 7772ff1e1e..b917adf530 100644 --- a/framework/stubs/update/appupdatescenariostub.cpp +++ b/framework/stubs/update/appupdatescenariostub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/update/appupdatescenariostub.h b/framework/stubs/update/appupdatescenariostub.h index 53debaf9b0..250003f66f 100644 --- a/framework/stubs/update/appupdatescenariostub.h +++ b/framework/stubs/update/appupdatescenariostub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/update/appupdateservicestub.cpp b/framework/stubs/update/appupdateservicestub.cpp index 6615d69f8b..c92008a04f 100644 --- a/framework/stubs/update/appupdateservicestub.cpp +++ b/framework/stubs/update/appupdateservicestub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/update/appupdateservicestub.h b/framework/stubs/update/appupdateservicestub.h index 76c83b3849..9dda5018e2 100644 --- a/framework/stubs/update/appupdateservicestub.h +++ b/framework/stubs/update/appupdateservicestub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/update/updateconfigurationstub.cpp b/framework/stubs/update/updateconfigurationstub.cpp index 6cfd5c8554..289d6422ee 100644 --- a/framework/stubs/update/updateconfigurationstub.cpp +++ b/framework/stubs/update/updateconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/update/updateconfigurationstub.h b/framework/stubs/update/updateconfigurationstub.h index c4a79d965c..e3d3d7f0e5 100644 --- a/framework/stubs/update/updateconfigurationstub.h +++ b/framework/stubs/update/updateconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/update/updatestubmodule.cpp b/framework/stubs/update/updatestubmodule.cpp index c71e849635..44d6c26216 100644 --- a/framework/stubs/update/updatestubmodule.cpp +++ b/framework/stubs/update/updatestubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/update/updatestubmodule.h b/framework/stubs/update/updatestubmodule.h index 9b2e115ab9..2e569e3e68 100644 --- a/framework/stubs/update/updatestubmodule.h +++ b/framework/stubs/update/updatestubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/stubs/vst/vstconfigurationstub.cpp b/framework/stubs/vst/vstconfigurationstub.cpp index f644354633..a245e5890e 100644 --- a/framework/stubs/vst/vstconfigurationstub.cpp +++ b/framework/stubs/vst/vstconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/vst/vstconfigurationstub.h b/framework/stubs/vst/vstconfigurationstub.h index a2edce4676..7626ae0c3d 100644 --- a/framework/stubs/vst/vstconfigurationstub.h +++ b/framework/stubs/vst/vstconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/vst/vststubmodule.cpp b/framework/stubs/vst/vststubmodule.cpp index 30750a11d0..8e03efae41 100644 --- a/framework/stubs/vst/vststubmodule.cpp +++ b/framework/stubs/vst/vststubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/vst/vststubmodule.h b/framework/stubs/vst/vststubmodule.h index 8595a434ef..1b64cc6f44 100644 --- a/framework/stubs/vst/vststubmodule.h +++ b/framework/stubs/vst/vststubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/CMakeLists.txt b/framework/stubs/workspace/CMakeLists.txt index 69aa5860c1..dc3fb55e0e 100644 --- a/framework/stubs/workspace/CMakeLists.txt +++ b/framework/stubs/workspace/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/qml/Muse/Workspace/NewWorkspaceDialog.qml b/framework/stubs/workspace/qml/Muse/Workspace/NewWorkspaceDialog.qml index 6aeaaf0089..62ffa97854 100644 --- a/framework/stubs/workspace/qml/Muse/Workspace/NewWorkspaceDialog.qml +++ b/framework/stubs/workspace/qml/Muse/Workspace/NewWorkspaceDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/qml/Muse/Workspace/WorkspacesDialog.qml b/framework/stubs/workspace/qml/Muse/Workspace/WorkspacesDialog.qml index 4053b930ca..23690d3d76 100644 --- a/framework/stubs/workspace/qml/Muse/Workspace/WorkspacesDialog.qml +++ b/framework/stubs/workspace/qml/Muse/Workspace/WorkspacesDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspaceconfigurationstub.cpp b/framework/stubs/workspace/workspaceconfigurationstub.cpp index 3faeb1ac5e..d823d834b4 100644 --- a/framework/stubs/workspace/workspaceconfigurationstub.cpp +++ b/framework/stubs/workspace/workspaceconfigurationstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspaceconfigurationstub.h b/framework/stubs/workspace/workspaceconfigurationstub.h index aaeb78a9a4..fa83955936 100644 --- a/framework/stubs/workspace/workspaceconfigurationstub.h +++ b/framework/stubs/workspace/workspaceconfigurationstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacemanagerstub.cpp b/framework/stubs/workspace/workspacemanagerstub.cpp index 5580f9fb59..70402d6489 100644 --- a/framework/stubs/workspace/workspacemanagerstub.cpp +++ b/framework/stubs/workspace/workspacemanagerstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacemanagerstub.h b/framework/stubs/workspace/workspacemanagerstub.h index 9c5457ed1f..b522066194 100644 --- a/framework/stubs/workspace/workspacemanagerstub.h +++ b/framework/stubs/workspace/workspacemanagerstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacesdataproviderstub.cpp b/framework/stubs/workspace/workspacesdataproviderstub.cpp index c14151ed5b..23af26d968 100644 --- a/framework/stubs/workspace/workspacesdataproviderstub.cpp +++ b/framework/stubs/workspace/workspacesdataproviderstub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacesdataproviderstub.h b/framework/stubs/workspace/workspacesdataproviderstub.h index 8445bc99fd..21d0a674bf 100644 --- a/framework/stubs/workspace/workspacesdataproviderstub.h +++ b/framework/stubs/workspace/workspacesdataproviderstub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacestub.cpp b/framework/stubs/workspace/workspacestub.cpp index b93ac01526..147806f8fd 100644 --- a/framework/stubs/workspace/workspacestub.cpp +++ b/framework/stubs/workspace/workspacestub.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacestub.h b/framework/stubs/workspace/workspacestub.h index 6e5f31cf8d..8c283c906e 100644 --- a/framework/stubs/workspace/workspacestub.h +++ b/framework/stubs/workspace/workspacestub.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacestubmodule.cpp b/framework/stubs/workspace/workspacestubmodule.cpp index a6a92bcfa7..ac0aca16b6 100644 --- a/framework/stubs/workspace/workspacestubmodule.cpp +++ b/framework/stubs/workspace/workspacestubmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/stubs/workspace/workspacestubmodule.h b/framework/stubs/workspace/workspacestubmodule.h index 9ec00d9795..97514f7665 100644 --- a/framework/stubs/workspace/workspacestubmodule.h +++ b/framework/stubs/workspace/workspacestubmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/CMakeLists.txt b/framework/testflow/CMakeLists.txt index af93e7a10f..030f027716 100644 --- a/framework/testflow/CMakeLists.txt +++ b/framework/testflow/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/testflow/examples/NewScore.js b/framework/testflow/examples/NewScore.js index 8208b89c6d..4f384dd1a6 100644 --- a/framework/testflow/examples/NewScore.js +++ b/framework/testflow/examples/NewScore.js @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/examples/PutNote.js b/framework/testflow/examples/PutNote.js index 0cfa12ecaf..530258e3b4 100644 --- a/framework/testflow/examples/PutNote.js +++ b/framework/testflow/examples/PutNote.js @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/examples/SimpleZoom.js b/framework/testflow/examples/SimpleZoom.js index b262c99096..9ec8f04ccb 100644 --- a/framework/testflow/examples/SimpleZoom.js +++ b/framework/testflow/examples/SimpleZoom.js @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/examples/steps/NewScore.js b/framework/testflow/examples/steps/NewScore.js index fc9f2e81d5..71cf694437 100644 --- a/framework/testflow/examples/steps/NewScore.js +++ b/framework/testflow/examples/steps/NewScore.js @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/api/contextapi.cpp b/framework/testflow/internal/api/contextapi.cpp index abdbc59527..877f8d0a58 100644 --- a/framework/testflow/internal/api/contextapi.cpp +++ b/framework/testflow/internal/api/contextapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/api/contextapi.h b/framework/testflow/internal/api/contextapi.h index 3a299b4362..f1cbd4ee92 100644 --- a/framework/testflow/internal/api/contextapi.h +++ b/framework/testflow/internal/api/contextapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/api/scriptapi.cpp b/framework/testflow/internal/api/scriptapi.cpp index 5e0ef5a068..044a7df513 100644 --- a/framework/testflow/internal/api/scriptapi.cpp +++ b/framework/testflow/internal/api/scriptapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/api/scriptapi.h b/framework/testflow/internal/api/scriptapi.h index 2e7a92275e..9b237dc972 100644 --- a/framework/testflow/internal/api/scriptapi.h +++ b/framework/testflow/internal/api/scriptapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/api/testflowapi.cpp b/framework/testflow/internal/api/testflowapi.cpp index bdaabede1c..dad98b4395 100644 --- a/framework/testflow/internal/api/testflowapi.cpp +++ b/framework/testflow/internal/api/testflowapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/api/testflowapi.h b/framework/testflow/internal/api/testflowapi.h index a2f6543aeb..5e75637037 100644 --- a/framework/testflow/internal/api/testflowapi.h +++ b/framework/testflow/internal/api/testflowapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/draw/abpaintprovider.cpp b/framework/testflow/internal/draw/abpaintprovider.cpp index 3b87f4887a..b26e26e50d 100644 --- a/framework/testflow/internal/draw/abpaintprovider.cpp +++ b/framework/testflow/internal/draw/abpaintprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/draw/abpaintprovider.h b/framework/testflow/internal/draw/abpaintprovider.h index 87dae1f0b9..e7ebcaf853 100644 --- a/framework/testflow/internal/draw/abpaintprovider.h +++ b/framework/testflow/internal/draw/abpaintprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/jsmoduleloader.cpp b/framework/testflow/internal/jsmoduleloader.cpp index f3163b6707..1538b76e2a 100644 --- a/framework/testflow/internal/jsmoduleloader.cpp +++ b/framework/testflow/internal/jsmoduleloader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/jsmoduleloader.h b/framework/testflow/internal/jsmoduleloader.h index 332fdf8542..479966988a 100644 --- a/framework/testflow/internal/jsmoduleloader.h +++ b/framework/testflow/internal/jsmoduleloader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/scriptengine.cpp b/framework/testflow/internal/scriptengine.cpp index 3cc77150c6..a089738e34 100644 --- a/framework/testflow/internal/scriptengine.cpp +++ b/framework/testflow/internal/scriptengine.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/scriptengine.h b/framework/testflow/internal/scriptengine.h index edc45205ea..312f49f7d4 100644 --- a/framework/testflow/internal/scriptengine.h +++ b/framework/testflow/internal/scriptengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testcasecontext.cpp b/framework/testflow/internal/testcasecontext.cpp index 7e9321212a..3b773fbfd7 100644 --- a/framework/testflow/internal/testcasecontext.cpp +++ b/framework/testflow/internal/testcasecontext.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testcasecontext.h b/framework/testflow/internal/testcasecontext.h index ef4aa90ff5..75b7ad2780 100644 --- a/framework/testflow/internal/testcasecontext.h +++ b/framework/testflow/internal/testcasecontext.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testcasereport.cpp b/framework/testflow/internal/testcasereport.cpp index 221ff72024..df957230ab 100644 --- a/framework/testflow/internal/testcasereport.cpp +++ b/framework/testflow/internal/testcasereport.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testcasereport.h b/framework/testflow/internal/testcasereport.h index a691769fb4..aabfd7b652 100644 --- a/framework/testflow/internal/testcasereport.h +++ b/framework/testflow/internal/testcasereport.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testcaserunner.cpp b/framework/testflow/internal/testcaserunner.cpp index c4238ddea0..9145eca13e 100644 --- a/framework/testflow/internal/testcaserunner.cpp +++ b/framework/testflow/internal/testcaserunner.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testcaserunner.h b/framework/testflow/internal/testcaserunner.h index 0d6fb9d1ab..c316193b76 100644 --- a/framework/testflow/internal/testcaserunner.h +++ b/framework/testflow/internal/testcaserunner.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflow.cpp b/framework/testflow/internal/testflow.cpp index c6e42abb7c..eadbaad764 100644 --- a/framework/testflow/internal/testflow.cpp +++ b/framework/testflow/internal/testflow.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflow.h b/framework/testflow/internal/testflow.h index b6a99a1657..8c4ad4f022 100644 --- a/framework/testflow/internal/testflow.h +++ b/framework/testflow/internal/testflow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowactions.cpp b/framework/testflow/internal/testflowactions.cpp index eda3b29b0e..77a7eb6ba4 100644 --- a/framework/testflow/internal/testflowactions.cpp +++ b/framework/testflow/internal/testflowactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowactions.h b/framework/testflow/internal/testflowactions.h index ac6d3fe6a7..e924e1a3db 100644 --- a/framework/testflow/internal/testflowactions.h +++ b/framework/testflow/internal/testflowactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowactionscontroller.cpp b/framework/testflow/internal/testflowactionscontroller.cpp index d70e582a21..377c4fa994 100644 --- a/framework/testflow/internal/testflowactionscontroller.cpp +++ b/framework/testflow/internal/testflowactionscontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowactionscontroller.h b/framework/testflow/internal/testflowactionscontroller.h index 30bbfe8601..16807df24a 100644 --- a/framework/testflow/internal/testflowactionscontroller.h +++ b/framework/testflow/internal/testflowactionscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowconfiguration.cpp b/framework/testflow/internal/testflowconfiguration.cpp index 72ee162f43..b99318fdd5 100644 --- a/framework/testflow/internal/testflowconfiguration.cpp +++ b/framework/testflow/internal/testflowconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowconfiguration.h b/framework/testflow/internal/testflowconfiguration.h index 7cef91da31..e1071ab7ce 100644 --- a/framework/testflow/internal/testflowconfiguration.h +++ b/framework/testflow/internal/testflowconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowinteractive.cpp b/framework/testflow/internal/testflowinteractive.cpp index 9f3c19182b..28583ca79d 100644 --- a/framework/testflow/internal/testflowinteractive.cpp +++ b/framework/testflow/internal/testflowinteractive.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowinteractive.h b/framework/testflow/internal/testflowinteractive.h index e0a7ab421c..3134ddb895 100644 --- a/framework/testflow/internal/testflowinteractive.h +++ b/framework/testflow/internal/testflowinteractive.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowscriptsrepository.cpp b/framework/testflow/internal/testflowscriptsrepository.cpp index a21332e1b6..54ba2769ee 100644 --- a/framework/testflow/internal/testflowscriptsrepository.cpp +++ b/framework/testflow/internal/testflowscriptsrepository.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/internal/testflowscriptsrepository.h b/framework/testflow/internal/testflowscriptsrepository.h index 0e7a44cd2a..7a0100ca59 100644 --- a/framework/testflow/internal/testflowscriptsrepository.h +++ b/framework/testflow/internal/testflowscriptsrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/itestcasecontext.h b/framework/testflow/itestcasecontext.h index d89da05faa..9235d83cba 100644 --- a/framework/testflow/itestcasecontext.h +++ b/framework/testflow/itestcasecontext.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/itestflow.h b/framework/testflow/itestflow.h index 7ad6b55bd5..50e41ae946 100644 --- a/framework/testflow/itestflow.h +++ b/framework/testflow/itestflow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/itestflowconfiguration.h b/framework/testflow/itestflowconfiguration.h index 024e2265e1..091c53ab11 100644 --- a/framework/testflow/itestflowconfiguration.h +++ b/framework/testflow/itestflowconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/itestflowscriptsrepository.h b/framework/testflow/itestflowscriptsrepository.h index 05f222f710..199876732f 100644 --- a/framework/testflow/itestflowscriptsrepository.h +++ b/framework/testflow/itestflowscriptsrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/ScriptsDialog.qml b/framework/testflow/qml/Muse/Testflow/ScriptsDialog.qml index 7e31e760ec..9b108a1cd4 100644 --- a/framework/testflow/qml/Muse/Testflow/ScriptsDialog.qml +++ b/framework/testflow/qml/Muse/Testflow/ScriptsDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/ScriptsPanel.qml b/framework/testflow/qml/Muse/Testflow/ScriptsPanel.qml index e6cb326c0f..d3f78e20c1 100644 --- a/framework/testflow/qml/Muse/Testflow/ScriptsPanel.qml +++ b/framework/testflow/qml/Muse/Testflow/ScriptsPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/TestCaseRunPanel.qml b/framework/testflow/qml/Muse/Testflow/TestCaseRunPanel.qml index 5da471f205..ad08bc46af 100644 --- a/framework/testflow/qml/Muse/Testflow/TestCaseRunPanel.qml +++ b/framework/testflow/qml/Muse/Testflow/TestCaseRunPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/TestflowSelectFileDialog.qml b/framework/testflow/qml/Muse/Testflow/TestflowSelectFileDialog.qml index 1ca1e44f5d..f39798a408 100644 --- a/framework/testflow/qml/Muse/Testflow/TestflowSelectFileDialog.qml +++ b/framework/testflow/qml/Muse/Testflow/TestflowSelectFileDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/testcaserunmodel.cpp b/framework/testflow/qml/Muse/Testflow/testcaserunmodel.cpp index 384e16effe..16694f97de 100644 --- a/framework/testflow/qml/Muse/Testflow/testcaserunmodel.cpp +++ b/framework/testflow/qml/Muse/Testflow/testcaserunmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/testcaserunmodel.h b/framework/testflow/qml/Muse/Testflow/testcaserunmodel.h index d5568774e2..f3b0921e58 100644 --- a/framework/testflow/qml/Muse/Testflow/testcaserunmodel.h +++ b/framework/testflow/qml/Muse/Testflow/testcaserunmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.cpp b/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.cpp index d3dce52dc4..62319c1d29 100644 --- a/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.cpp +++ b/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.h b/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.h index 5fde6bd1c5..52daff20b9 100644 --- a/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.h +++ b/framework/testflow/qml/Muse/Testflow/testflowfilesmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.cpp b/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.cpp index 8ba01edb12..e4295595da 100644 --- a/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.cpp +++ b/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.h b/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.h index 86ad448510..3b4bd09a34 100644 --- a/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.h +++ b/framework/testflow/qml/Muse/Testflow/testflowscriptsmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/testflowmodule.cpp b/framework/testflow/testflowmodule.cpp index ab84a4c41a..4c67bea8ad 100644 --- a/framework/testflow/testflowmodule.cpp +++ b/framework/testflow/testflowmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/testflowmodule.h b/framework/testflow/testflowmodule.h index 62bb7f5ab0..c98da5c897 100644 --- a/framework/testflow/testflowmodule.h +++ b/framework/testflow/testflowmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/testflowtypes.h b/framework/testflow/testflowtypes.h index 2fa0c78dd7..d7d2c32426 100644 --- a/framework/testflow/testflowtypes.h +++ b/framework/testflow/testflowtypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testflow/testflowutils.h b/framework/testflow/testflowutils.h index 9c2bdae9ed..a7f9bbfcb0 100644 --- a/framework/testflow/testflowutils.h +++ b/framework/testflow/testflowutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/testing/environment.cpp b/framework/testing/environment.cpp index 9557e96b64..811d003cbc 100644 --- a/framework/testing/environment.cpp +++ b/framework/testing/environment.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testing/environment.h b/framework/testing/environment.h index 0747250d82..6882f38f7d 100644 --- a/framework/testing/environment.h +++ b/framework/testing/environment.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testing/gmain.cpp b/framework/testing/gmain.cpp index 623bc3b4e5..ec61c8b233 100644 --- a/framework/testing/gmain.cpp +++ b/framework/testing/gmain.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testing/qmain.cpp b/framework/testing/qmain.cpp index 5b44e2ab7d..1d5c2208c3 100644 --- a/framework/testing/qmain.cpp +++ b/framework/testing/qmain.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/testing/qtestsuite.h b/framework/testing/qtestsuite.h index c405346c83..aa5f22c1a5 100644 --- a/framework/testing/qtestsuite.h +++ b/framework/testing/qtestsuite.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/tours/internal/toursconfiguration.cpp b/framework/tours/internal/toursconfiguration.cpp index d0495ed6cf..988e72fc20 100644 --- a/framework/tours/internal/toursconfiguration.cpp +++ b/framework/tours/internal/toursconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/internal/toursconfiguration.h b/framework/tours/internal/toursconfiguration.h index 80c22ac639..6aefb07985 100644 --- a/framework/tours/internal/toursconfiguration.h +++ b/framework/tours/internal/toursconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/internal/toursprovider.cpp b/framework/tours/internal/toursprovider.cpp index 5a165f0869..eb80afcd74 100644 --- a/framework/tours/internal/toursprovider.cpp +++ b/framework/tours/internal/toursprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/internal/toursprovider.h b/framework/tours/internal/toursprovider.h index bfdf37e7c2..a9ecc7210d 100644 --- a/framework/tours/internal/toursprovider.h +++ b/framework/tours/internal/toursprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/internal/toursservice.cpp b/framework/tours/internal/toursservice.cpp index c2bac2d839..a8bd582eab 100644 --- a/framework/tours/internal/toursservice.cpp +++ b/framework/tours/internal/toursservice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/internal/toursservice.h b/framework/tours/internal/toursservice.h index bddfe662c7..4867a21b4e 100644 --- a/framework/tours/internal/toursservice.h +++ b/framework/tours/internal/toursservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/itoursconfiguration.h b/framework/tours/itoursconfiguration.h index 1181a756f8..22ca2b2b6e 100644 --- a/framework/tours/itoursconfiguration.h +++ b/framework/tours/itoursconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/tours/itoursprovider.h b/framework/tours/itoursprovider.h index c0fcb7ec21..1d44363fc9 100644 --- a/framework/tours/itoursprovider.h +++ b/framework/tours/itoursprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/itoursservice.h b/framework/tours/itoursservice.h index 388ddefd4a..bae22a6965 100644 --- a/framework/tours/itoursservice.h +++ b/framework/tours/itoursservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/qml/Muse/Tours/ToursProvider.qml b/framework/tours/qml/Muse/Tours/ToursProvider.qml index 35dac3aae2..828c319ebd 100644 --- a/framework/tours/qml/Muse/Tours/ToursProvider.qml +++ b/framework/tours/qml/Muse/Tours/ToursProvider.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/qml/Muse/Tours/internal/TourStepPopup.qml b/framework/tours/qml/Muse/Tours/internal/TourStepPopup.qml index 7e5cca866c..aa3ac805e6 100644 --- a/framework/tours/qml/Muse/Tours/internal/TourStepPopup.qml +++ b/framework/tours/qml/Muse/Tours/internal/TourStepPopup.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/qml/Muse/Tours/toursprovidermodel.cpp b/framework/tours/qml/Muse/Tours/toursprovidermodel.cpp index 32a9a9df3e..4d56bc32af 100644 --- a/framework/tours/qml/Muse/Tours/toursprovidermodel.cpp +++ b/framework/tours/qml/Muse/Tours/toursprovidermodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/qml/Muse/Tours/toursprovidermodel.h b/framework/tours/qml/Muse/Tours/toursprovidermodel.h index feeb143495..ba078f2326 100644 --- a/framework/tours/qml/Muse/Tours/toursprovidermodel.h +++ b/framework/tours/qml/Muse/Tours/toursprovidermodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/toursmodule.cpp b/framework/tours/toursmodule.cpp index 0fa0326820..129872a1be 100644 --- a/framework/tours/toursmodule.cpp +++ b/framework/tours/toursmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/toursmodule.h b/framework/tours/toursmodule.h index 9a86d3735b..b767d2911b 100644 --- a/framework/tours/toursmodule.h +++ b/framework/tours/toursmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/tours/tourstypes.h b/framework/tours/tourstypes.h index 8f8b9f7b9a..c35e15b118 100644 --- a/framework/tours/tourstypes.h +++ b/framework/tours/tourstypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/CMakeLists.txt b/framework/ui/CMakeLists.txt index 8e595eac9d..599168db63 100644 --- a/framework/ui/CMakeLists.txt +++ b/framework/ui/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/api/keyboardapi.cpp b/framework/ui/api/keyboardapi.cpp index 1c180b7e7f..64a39ce466 100644 --- a/framework/ui/api/keyboardapi.cpp +++ b/framework/ui/api/keyboardapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/api/keyboardapi.h b/framework/ui/api/keyboardapi.h index aec017c8d1..04ca6baae5 100644 --- a/framework/ui/api/keyboardapi.h +++ b/framework/ui/api/keyboardapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/api/navigationapi.cpp b/framework/ui/api/navigationapi.cpp index 9b1f203b29..99ee7d9942 100644 --- a/framework/ui/api/navigationapi.cpp +++ b/framework/ui/api/navigationapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/api/navigationapi.h b/framework/ui/api/navigationapi.h index 1fa25de852..862ecf3cb0 100644 --- a/framework/ui/api/navigationapi.h +++ b/framework/ui/api/navigationapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/api/themeapi.cpp b/framework/ui/api/themeapi.cpp index 203d95e7c6..7deb421ad5 100644 --- a/framework/ui/api/themeapi.cpp +++ b/framework/ui/api/themeapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/api/themeapi.h b/framework/ui/api/themeapi.h index 5eb640183d..0beb10f533 100644 --- a/framework/ui/api/themeapi.h +++ b/framework/ui/api/themeapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/graphicsapiprovider.cpp b/framework/ui/graphicsapiprovider.cpp index c39cb8992e..0ec61399d8 100644 --- a/framework/ui/graphicsapiprovider.cpp +++ b/framework/ui/graphicsapiprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/ui/graphicsapiprovider.h b/framework/ui/graphicsapiprovider.h index 75956286f6..ecaba8d6fb 100644 --- a/framework/ui/graphicsapiprovider.h +++ b/framework/ui/graphicsapiprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/ui/idragcontroller.h b/framework/ui/idragcontroller.h index 01e985d31a..040fcc84da 100644 --- a/framework/ui/idragcontroller.h +++ b/framework/ui/idragcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/imainwindow.h b/framework/ui/imainwindow.h index 29dd14bee8..5a60c04db9 100644 --- a/framework/ui/imainwindow.h +++ b/framework/ui/imainwindow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/inavigation.h b/framework/ui/inavigation.h index 7631a16cc2..d9ad18abe2 100644 --- a/framework/ui/inavigation.h +++ b/framework/ui/inavigation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/inavigationcontroller.h b/framework/ui/inavigationcontroller.h index 113e256e1d..6bdcd5ec55 100644 --- a/framework/ui/inavigationcontroller.h +++ b/framework/ui/inavigationcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/dragcontroller.cpp b/framework/ui/internal/dragcontroller.cpp index 7fbe795704..c228827bb1 100644 --- a/framework/ui/internal/dragcontroller.cpp +++ b/framework/ui/internal/dragcontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/internal/dragcontroller.h b/framework/ui/internal/dragcontroller.h index 29e20d2afc..cc49c45714 100644 --- a/framework/ui/internal/dragcontroller.h +++ b/framework/ui/internal/dragcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/internal/guiapplication.cpp b/framework/ui/internal/guiapplication.cpp index 7994e9314b..c5cbb79451 100644 --- a/framework/ui/internal/guiapplication.cpp +++ b/framework/ui/internal/guiapplication.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/internal/guiapplication.h b/framework/ui/internal/guiapplication.h index dce6cf3a2a..c754991f69 100644 --- a/framework/ui/internal/guiapplication.h +++ b/framework/ui/internal/guiapplication.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/internal/iplatformtheme.h b/framework/ui/internal/iplatformtheme.h index 017f2bc4c2..3bd874a981 100644 --- a/framework/ui/internal/iplatformtheme.h +++ b/framework/ui/internal/iplatformtheme.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/ui/internal/mainwindow.cpp b/framework/ui/internal/mainwindow.cpp index 7b4e4c1f8a..b3d8aebf78 100644 --- a/framework/ui/internal/mainwindow.cpp +++ b/framework/ui/internal/mainwindow.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/mainwindow.h b/framework/ui/internal/mainwindow.h index 8edced5bda..a8d7ec0088 100644 --- a/framework/ui/internal/mainwindow.h +++ b/framework/ui/internal/mainwindow.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/navigationcontroller.cpp b/framework/ui/internal/navigationcontroller.cpp index 510496b461..6f57d51ea5 100644 --- a/framework/ui/internal/navigationcontroller.cpp +++ b/framework/ui/internal/navigationcontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/navigationcontroller.h b/framework/ui/internal/navigationcontroller.h index b3b87a3be6..882348b3aa 100644 --- a/framework/ui/internal/navigationcontroller.h +++ b/framework/ui/internal/navigationcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/navigationuiactions.cpp b/framework/ui/internal/navigationuiactions.cpp index ec97e09ff5..ac2f111d19 100644 --- a/framework/ui/internal/navigationuiactions.cpp +++ b/framework/ui/internal/navigationuiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/navigationuiactions.h b/framework/ui/internal/navigationuiactions.h index d1cfcbfa17..aef89260e1 100644 --- a/framework/ui/internal/navigationuiactions.h +++ b/framework/ui/internal/navigationuiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/platform/linux/linuxplatformtheme.cpp b/framework/ui/internal/platform/linux/linuxplatformtheme.cpp index 6fc1b103fc..35e952cd28 100644 --- a/framework/ui/internal/platform/linux/linuxplatformtheme.cpp +++ b/framework/ui/internal/platform/linux/linuxplatformtheme.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/ui/internal/platform/linux/linuxplatformtheme.h b/framework/ui/internal/platform/linux/linuxplatformtheme.h index 192948602e..47f7b280ee 100644 --- a/framework/ui/internal/platform/linux/linuxplatformtheme.h +++ b/framework/ui/internal/platform/linux/linuxplatformtheme.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/ui/internal/platform/macos/macosplatformtheme.h b/framework/ui/internal/platform/macos/macosplatformtheme.h index e4a35778f2..fd37b7e466 100644 --- a/framework/ui/internal/platform/macos/macosplatformtheme.h +++ b/framework/ui/internal/platform/macos/macosplatformtheme.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/ui/internal/platform/macos/macosplatformtheme.mm b/framework/ui/internal/platform/macos/macosplatformtheme.mm index ce4432d659..e36a15ea13 100644 --- a/framework/ui/internal/platform/macos/macosplatformtheme.mm +++ b/framework/ui/internal/platform/macos/macosplatformtheme.mm @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/ui/internal/platform/stub/stubplatformtheme.cpp b/framework/ui/internal/platform/stub/stubplatformtheme.cpp index c6e12675d5..77cf100dd1 100644 --- a/framework/ui/internal/platform/stub/stubplatformtheme.cpp +++ b/framework/ui/internal/platform/stub/stubplatformtheme.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/ui/internal/platform/stub/stubplatformtheme.h b/framework/ui/internal/platform/stub/stubplatformtheme.h index 647b41972d..fafbffec62 100644 --- a/framework/ui/internal/platform/stub/stubplatformtheme.h +++ b/framework/ui/internal/platform/stub/stubplatformtheme.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/ui/internal/platform/windows/windowsplatformtheme.cpp b/framework/ui/internal/platform/windows/windowsplatformtheme.cpp index bed214b262..962148c79a 100644 --- a/framework/ui/internal/platform/windows/windowsplatformtheme.cpp +++ b/framework/ui/internal/platform/windows/windowsplatformtheme.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/ui/internal/platform/windows/windowsplatformtheme.h b/framework/ui/internal/platform/windows/windowsplatformtheme.h index 6698ceb232..8795a96eaa 100644 --- a/framework/ui/internal/platform/windows/windowsplatformtheme.h +++ b/framework/ui/internal/platform/windows/windowsplatformtheme.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/ui/internal/qmlnetworkaccessmanagerfactory.cpp b/framework/ui/internal/qmlnetworkaccessmanagerfactory.cpp index 00279e9fe2..136b40693f 100644 --- a/framework/ui/internal/qmlnetworkaccessmanagerfactory.cpp +++ b/framework/ui/internal/qmlnetworkaccessmanagerfactory.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/internal/qmlnetworkaccessmanagerfactory.h b/framework/ui/internal/qmlnetworkaccessmanagerfactory.h index 29eafb00ac..ae40d7227c 100644 --- a/framework/ui/internal/qmlnetworkaccessmanagerfactory.h +++ b/framework/ui/internal/qmlnetworkaccessmanagerfactory.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/internal/themeconverter.cpp b/framework/ui/internal/themeconverter.cpp index a3d515a731..31a1e1276a 100644 --- a/framework/ui/internal/themeconverter.cpp +++ b/framework/ui/internal/themeconverter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/themeconverter.h b/framework/ui/internal/themeconverter.h index 8500f096a3..85189326d2 100644 --- a/framework/ui/internal/themeconverter.h +++ b/framework/ui/internal/themeconverter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uiactionsregister.cpp b/framework/ui/internal/uiactionsregister.cpp index 34921545b7..2974f9bb81 100644 --- a/framework/ui/internal/uiactionsregister.cpp +++ b/framework/ui/internal/uiactionsregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uiactionsregister.h b/framework/ui/internal/uiactionsregister.h index 03710d8786..e1bdf3c7c5 100644 --- a/framework/ui/internal/uiactionsregister.h +++ b/framework/ui/internal/uiactionsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uiarrangement.cpp b/framework/ui/internal/uiarrangement.cpp index 1a4a1533ef..214f6332fe 100644 --- a/framework/ui/internal/uiarrangement.cpp +++ b/framework/ui/internal/uiarrangement.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uiarrangement.h b/framework/ui/internal/uiarrangement.h index 541eb7aba9..638ec20f7f 100644 --- a/framework/ui/internal/uiarrangement.h +++ b/framework/ui/internal/uiarrangement.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uiconfiguration.cpp b/framework/ui/internal/uiconfiguration.cpp index d6c86b54da..9db8028dba 100644 --- a/framework/ui/internal/uiconfiguration.cpp +++ b/framework/ui/internal/uiconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uiconfiguration.h b/framework/ui/internal/uiconfiguration.h index 642b734919..19b5c5f082 100644 --- a/framework/ui/internal/uiconfiguration.h +++ b/framework/ui/internal/uiconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uicontextconfiguration.cpp b/framework/ui/internal/uicontextconfiguration.cpp index 1a93085419..60dbe02872 100644 --- a/framework/ui/internal/uicontextconfiguration.cpp +++ b/framework/ui/internal/uicontextconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/internal/uicontextconfiguration.h b/framework/ui/internal/uicontextconfiguration.h index a0c2557f9d..c21d705fac 100644 --- a/framework/ui/internal/uicontextconfiguration.h +++ b/framework/ui/internal/uicontextconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/internal/uiengine.cpp b/framework/ui/internal/uiengine.cpp index 88e94a420f..5d0a8455a8 100644 --- a/framework/ui/internal/uiengine.cpp +++ b/framework/ui/internal/uiengine.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uiengine.h b/framework/ui/internal/uiengine.h index 3b7825e0dd..90c0af519a 100644 --- a/framework/ui/internal/uiengine.h +++ b/framework/ui/internal/uiengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/internal/uistate.cpp b/framework/ui/internal/uistate.cpp index 6a6f9df5bc..8f9b5423f3 100644 --- a/framework/ui/internal/uistate.cpp +++ b/framework/ui/internal/uistate.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/internal/uistate.h b/framework/ui/internal/uistate.h index 7328966dce..da26b85b65 100644 --- a/framework/ui/internal/uistate.h +++ b/framework/ui/internal/uistate.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/iuiactionsmodule.h b/framework/ui/iuiactionsmodule.h index 6b4609bf05..84acf8e2b9 100644 --- a/framework/ui/iuiactionsmodule.h +++ b/framework/ui/iuiactionsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/iuiactionsregister.h b/framework/ui/iuiactionsregister.h index 30c6c30d39..c1026be81a 100644 --- a/framework/ui/iuiactionsregister.h +++ b/framework/ui/iuiactionsregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/iuiconfiguration.h b/framework/ui/iuiconfiguration.h index cf7af6f71f..ebf231f7c4 100644 --- a/framework/ui/iuiconfiguration.h +++ b/framework/ui/iuiconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/iuicontextconfiguration.h b/framework/ui/iuicontextconfiguration.h index 21c358fc95..3d55dc081e 100644 --- a/framework/ui/iuicontextconfiguration.h +++ b/framework/ui/iuicontextconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/iuicontextresolver.h b/framework/ui/iuicontextresolver.h index 4c4fae40cd..485b664812 100644 --- a/framework/ui/iuicontextresolver.h +++ b/framework/ui/iuicontextresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/iuiengine.h b/framework/ui/iuiengine.h index 31ebcbcd90..7945c147d6 100644 --- a/framework/ui/iuiengine.h +++ b/framework/ui/iuiengine.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/iuistate.h b/framework/ui/iuistate.h index dfe681f790..f65fce2d68 100644 --- a/framework/ui/iuistate.h +++ b/framework/ui/iuistate.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/CMakeLists.txt b/framework/ui/qml/Muse/Ui/CMakeLists.txt index 2e4f98ed2c..f1046ff9c7 100644 --- a/framework/ui/qml/Muse/Ui/CMakeLists.txt +++ b/framework/ui/qml/Muse/Ui/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/ToolTipProvider.qml b/framework/ui/qml/Muse/Ui/ToolTipProvider.qml index 92a7157406..c74bfaa28f 100644 --- a/framework/ui/qml/Muse/Ui/ToolTipProvider.qml +++ b/framework/ui/qml/Muse/Ui/ToolTipProvider.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/abstractnavigation.cpp b/framework/ui/qml/Muse/Ui/abstractnavigation.cpp index 77ef75d0e1..5b7155560e 100644 --- a/framework/ui/qml/Muse/Ui/abstractnavigation.cpp +++ b/framework/ui/qml/Muse/Ui/abstractnavigation.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/abstractnavigation.h b/framework/ui/qml/Muse/Ui/abstractnavigation.h index 9cd26a8fe4..7cd999136f 100644 --- a/framework/ui/qml/Muse/Ui/abstractnavigation.h +++ b/framework/ui/qml/Muse/Ui/abstractnavigation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/foreign.cpp b/framework/ui/qml/Muse/Ui/foreign.cpp index b87e860fb1..78a49e6215 100644 --- a/framework/ui/qml/Muse/Ui/foreign.cpp +++ b/framework/ui/qml/Muse/Ui/foreign.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/foreign.h b/framework/ui/qml/Muse/Ui/foreign.h index cff0476178..726c8cc630 100644 --- a/framework/ui/qml/Muse/Ui/foreign.h +++ b/framework/ui/qml/Muse/Ui/foreign.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/graphicstestobject.cpp b/framework/ui/qml/Muse/Ui/graphicstestobject.cpp index 12fc7094a0..d0253b9f6b 100644 --- a/framework/ui/qml/Muse/Ui/graphicstestobject.cpp +++ b/framework/ui/qml/Muse/Ui/graphicstestobject.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/graphicstestobject.h b/framework/ui/qml/Muse/Ui/graphicstestobject.h index d81d71f091..e8e924787f 100644 --- a/framework/ui/qml/Muse/Ui/graphicstestobject.h +++ b/framework/ui/qml/Muse/Ui/graphicstestobject.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/initialletternavigation.cpp b/framework/ui/qml/Muse/Ui/initialletternavigation.cpp index 77eb02352c..de06350d7f 100644 --- a/framework/ui/qml/Muse/Ui/initialletternavigation.cpp +++ b/framework/ui/qml/Muse/Ui/initialletternavigation.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/initialletternavigation.h b/framework/ui/qml/Muse/Ui/initialletternavigation.h index 259af31106..d00edaef5e 100644 --- a/framework/ui/qml/Muse/Ui/initialletternavigation.h +++ b/framework/ui/qml/Muse/Ui/initialletternavigation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationcontrol.cpp b/framework/ui/qml/Muse/Ui/navigationcontrol.cpp index 7da1b0aa33..28204f0295 100644 --- a/framework/ui/qml/Muse/Ui/navigationcontrol.cpp +++ b/framework/ui/qml/Muse/Ui/navigationcontrol.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationcontrol.h b/framework/ui/qml/Muse/Ui/navigationcontrol.h index 41a7817c84..79a10aa380 100644 --- a/framework/ui/qml/Muse/Ui/navigationcontrol.h +++ b/framework/ui/qml/Muse/Ui/navigationcontrol.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationevent.cpp b/framework/ui/qml/Muse/Ui/navigationevent.cpp index 7b59836bac..96c38389b2 100644 --- a/framework/ui/qml/Muse/Ui/navigationevent.cpp +++ b/framework/ui/qml/Muse/Ui/navigationevent.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationevent.h b/framework/ui/qml/Muse/Ui/navigationevent.h index bee2578bd7..37cf440744 100644 --- a/framework/ui/qml/Muse/Ui/navigationevent.h +++ b/framework/ui/qml/Muse/Ui/navigationevent.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationpanel.cpp b/framework/ui/qml/Muse/Ui/navigationpanel.cpp index 72e71bd1b5..3563d9dadb 100644 --- a/framework/ui/qml/Muse/Ui/navigationpanel.cpp +++ b/framework/ui/qml/Muse/Ui/navigationpanel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationpanel.h b/framework/ui/qml/Muse/Ui/navigationpanel.h index d760b1dae6..1be59c859e 100644 --- a/framework/ui/qml/Muse/Ui/navigationpanel.h +++ b/framework/ui/qml/Muse/Ui/navigationpanel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationpopuppanel.cpp b/framework/ui/qml/Muse/Ui/navigationpopuppanel.cpp index 2fa7ce5f8e..65f1426190 100644 --- a/framework/ui/qml/Muse/Ui/navigationpopuppanel.cpp +++ b/framework/ui/qml/Muse/Ui/navigationpopuppanel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationpopuppanel.h b/framework/ui/qml/Muse/Ui/navigationpopuppanel.h index dd0e3d0d8b..d861afaa80 100644 --- a/framework/ui/qml/Muse/Ui/navigationpopuppanel.h +++ b/framework/ui/qml/Muse/Ui/navigationpopuppanel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationsection.cpp b/framework/ui/qml/Muse/Ui/navigationsection.cpp index 4afa0b8279..cd4b79dd71 100644 --- a/framework/ui/qml/Muse/Ui/navigationsection.cpp +++ b/framework/ui/qml/Muse/Ui/navigationsection.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/navigationsection.h b/framework/ui/qml/Muse/Ui/navigationsection.h index facbc3caba..f1014f1ddc 100644 --- a/framework/ui/qml/Muse/Ui/navigationsection.h +++ b/framework/ui/qml/Muse/Ui/navigationsection.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/qmlaccessible.cpp b/framework/ui/qml/Muse/Ui/qmlaccessible.cpp index 5fcf8baee3..8e8b8f2ce9 100644 --- a/framework/ui/qml/Muse/Ui/qmlaccessible.cpp +++ b/framework/ui/qml/Muse/Ui/qmlaccessible.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/qmlaccessible.h b/framework/ui/qml/Muse/Ui/qmlaccessible.h index 42131cf915..bce02fceb7 100644 --- a/framework/ui/qml/Muse/Ui/qmlaccessible.h +++ b/framework/ui/qml/Muse/Ui/qmlaccessible.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/qmldrag.cpp b/framework/ui/qml/Muse/Ui/qmldrag.cpp index 77a4573910..e1699c2676 100644 --- a/framework/ui/qml/Muse/Ui/qmldrag.cpp +++ b/framework/ui/qml/Muse/Ui/qmldrag.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/qmldrag.h b/framework/ui/qml/Muse/Ui/qmldrag.h index 88013d5d27..2adfd554e9 100644 --- a/framework/ui/qml/Muse/Ui/qmldrag.h +++ b/framework/ui/qml/Muse/Ui/qmldrag.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/tests/CMakeLists.txt b/framework/ui/qml/Muse/Ui/tests/CMakeLists.txt index f8d0a14df0..26e7658777 100644 --- a/framework/ui/qml/Muse/Ui/tests/CMakeLists.txt +++ b/framework/ui/qml/Muse/Ui/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/qml/Muse/Ui/tests/qmltooltip_tests.cpp b/framework/ui/qml/Muse/Ui/tests/qmltooltip_tests.cpp index dccb396fd5..b249a3ea89 100644 --- a/framework/ui/qml/Muse/Ui/tests/qmltooltip_tests.cpp +++ b/framework/ui/qml/Muse/Ui/tests/qmltooltip_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/ui/tests/CMakeLists.txt b/framework/ui/tests/CMakeLists.txt index 24cb02025e..f005245a46 100644 --- a/framework/ui/tests/CMakeLists.txt +++ b/framework/ui/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/tests/environment.cpp b/framework/ui/tests/environment.cpp index e1be6ecfcd..b587bee8a5 100644 --- a/framework/ui/tests/environment.cpp +++ b/framework/ui/tests/environment.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/tests/mocks/mainwindowmock.h b/framework/ui/tests/mocks/mainwindowmock.h index f567bc3061..71ad0ede83 100644 --- a/framework/ui/tests/mocks/mainwindowmock.h +++ b/framework/ui/tests/mocks/mainwindowmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/tests/mocks/navigationmocks.h b/framework/ui/tests/mocks/navigationmocks.h index 0eaf99c83a..0fbf93f2b0 100644 --- a/framework/ui/tests/mocks/navigationmocks.h +++ b/framework/ui/tests/mocks/navigationmocks.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/tests/mocks/uiconfigurationmock.h b/framework/ui/tests/mocks/uiconfigurationmock.h index de3bdeae44..c2b1814f04 100644 --- a/framework/ui/tests/mocks/uiconfigurationmock.h +++ b/framework/ui/tests/mocks/uiconfigurationmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/ui/tests/mocks/uistatemock.h b/framework/ui/tests/mocks/uistatemock.h index a2a33d851d..2828bcb9a5 100644 --- a/framework/ui/tests/mocks/uistatemock.h +++ b/framework/ui/tests/mocks/uistatemock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/tests/navigationcontroller_tests.cpp b/framework/ui/tests/navigationcontroller_tests.cpp index 6cda9ba47e..747a74a7f9 100644 --- a/framework/ui/tests/navigationcontroller_tests.cpp +++ b/framework/ui/tests/navigationcontroller_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/tests/themeconverter_tests.cpp b/framework/ui/tests/themeconverter_tests.cpp index d5eebd2b8c..e48172a08b 100644 --- a/framework/ui/tests/themeconverter_tests.cpp +++ b/framework/ui/tests/themeconverter_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/uierrors.h b/framework/ui/uierrors.h index 4e5298597b..a93408fb8b 100644 --- a/framework/ui/uierrors.h +++ b/framework/ui/uierrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/uimodule.cpp b/framework/ui/uimodule.cpp index 7d9a13f752..245f0fe90d 100644 --- a/framework/ui/uimodule.cpp +++ b/framework/ui/uimodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/uimodule.h b/framework/ui/uimodule.h index ee9b2524a7..e8a69363df 100644 --- a/framework/ui/uimodule.h +++ b/framework/ui/uimodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/uitypes.h b/framework/ui/uitypes.h index a1075fba5b..dc8900630d 100644 --- a/framework/ui/uitypes.h +++ b/framework/ui/uitypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/iconcodes.h b/framework/ui/view/iconcodes.h index bc62ac40c9..3fd5f5b68a 100644 --- a/framework/ui/view/iconcodes.h +++ b/framework/ui/view/iconcodes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/mainwindowbridge.cpp b/framework/ui/view/mainwindowbridge.cpp index 0c133255ae..0eab17063d 100644 --- a/framework/ui/view/mainwindowbridge.cpp +++ b/framework/ui/view/mainwindowbridge.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/mainwindowbridge.h b/framework/ui/view/mainwindowbridge.h index 49e201a113..e156b2ac0b 100644 --- a/framework/ui/view/mainwindowbridge.h +++ b/framework/ui/view/mainwindowbridge.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/musicalsymbolcodes.h b/framework/ui/view/musicalsymbolcodes.h index 74247f019e..8efc31db9c 100644 --- a/framework/ui/view/musicalsymbolcodes.h +++ b/framework/ui/view/musicalsymbolcodes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/platform/macos/macosmainwindowbridge.h b/framework/ui/view/platform/macos/macosmainwindowbridge.h index 62d998b73f..44630d099b 100644 --- a/framework/ui/view/platform/macos/macosmainwindowbridge.h +++ b/framework/ui/view/platform/macos/macosmainwindowbridge.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/platform/macos/macosmainwindowbridge.mm b/framework/ui/view/platform/macos/macosmainwindowbridge.mm index ac2d5d9e84..91644a3d35 100644 --- a/framework/ui/view/platform/macos/macosmainwindowbridge.mm +++ b/framework/ui/view/platform/macos/macosmainwindowbridge.mm @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmlapi.cpp b/framework/ui/view/qmlapi.cpp index 3e9c1c37a0..2cbf792b79 100644 --- a/framework/ui/view/qmlapi.cpp +++ b/framework/ui/view/qmlapi.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmlapi.h b/framework/ui/view/qmlapi.h index aefd177bd2..c590cc27a1 100644 --- a/framework/ui/view/qmlapi.h +++ b/framework/ui/view/qmlapi.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmldataformatter.cpp b/framework/ui/view/qmldataformatter.cpp index 7105a1a012..4eae5f519a 100644 --- a/framework/ui/view/qmldataformatter.cpp +++ b/framework/ui/view/qmldataformatter.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/view/qmldataformatter.h b/framework/ui/view/qmldataformatter.h index c9bca43dbb..958a2a7df6 100644 --- a/framework/ui/view/qmldataformatter.h +++ b/framework/ui/view/qmldataformatter.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/ui/view/qmllauncher.cpp b/framework/ui/view/qmllauncher.cpp index 20182e5b78..eb179c50cb 100644 --- a/framework/ui/view/qmllauncher.cpp +++ b/framework/ui/view/qmllauncher.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmllauncher.h b/framework/ui/view/qmllauncher.h index 8a12339ee0..4f9cc81c2f 100644 --- a/framework/ui/view/qmllauncher.h +++ b/framework/ui/view/qmllauncher.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmltooltip.cpp b/framework/ui/view/qmltooltip.cpp index d86d9a1b42..eb84c01940 100644 --- a/framework/ui/view/qmltooltip.cpp +++ b/framework/ui/view/qmltooltip.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmltooltip.h b/framework/ui/view/qmltooltip.h index f1d43652db..a08a6ce0c7 100644 --- a/framework/ui/view/qmltooltip.h +++ b/framework/ui/view/qmltooltip.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmltranslation.cpp b/framework/ui/view/qmltranslation.cpp index b370f88414..1e4d6d1d85 100644 --- a/framework/ui/view/qmltranslation.cpp +++ b/framework/ui/view/qmltranslation.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/qmltranslation.h b/framework/ui/view/qmltranslation.h index ab22afb801..0160dd514b 100644 --- a/framework/ui/view/qmltranslation.h +++ b/framework/ui/view/qmltranslation.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/widgetdialog.h b/framework/ui/view/widgetdialog.h index b51310aeb4..6a8da4609d 100644 --- a/framework/ui/view/widgetdialog.h +++ b/framework/ui/view/widgetdialog.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/ui/view/widgetnavigationfix.cpp b/framework/ui/view/widgetnavigationfix.cpp index 3c856020f4..018814abb3 100644 --- a/framework/ui/view/widgetnavigationfix.cpp +++ b/framework/ui/view/widgetnavigationfix.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/widgetnavigationfix.h b/framework/ui/view/widgetnavigationfix.h index c7d958180d..1209e6f291 100644 --- a/framework/ui/view/widgetnavigationfix.h +++ b/framework/ui/view/widgetnavigationfix.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/widgetstatestore.cpp b/framework/ui/view/widgetstatestore.cpp index b1f73d67d7..88fc93a581 100644 --- a/framework/ui/view/widgetstatestore.cpp +++ b/framework/ui/view/widgetstatestore.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/widgetstatestore.h b/framework/ui/view/widgetstatestore.h index a4f4cade74..14a48fbcac 100644 --- a/framework/ui/view/widgetstatestore.h +++ b/framework/ui/view/widgetstatestore.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/ui/view/widgetutils.h b/framework/ui/view/widgetutils.h index fab8244572..9eb356aeea 100644 --- a/framework/ui/view/widgetutils.h +++ b/framework/ui/view/widgetutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/CMakeLists.txt b/framework/uicomponents/CMakeLists.txt index 3b38ee6322..1cd7b0aee4 100644 --- a/framework/uicomponents/CMakeLists.txt +++ b/framework/uicomponents/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/api/MuseApi/Controls/ExtensionBlank.qml b/framework/uicomponents/api/MuseApi/Controls/ExtensionBlank.qml index c091f309f1..7a73eee2d6 100644 --- a/framework/uicomponents/api/MuseApi/Controls/ExtensionBlank.qml +++ b/framework/uicomponents/api/MuseApi/Controls/ExtensionBlank.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/GraphicalEffects/RoundedCornersEffect.qml b/framework/uicomponents/qml/Muse/GraphicalEffects/RoundedCornersEffect.qml index a65af15cbf..df3c4240ff 100644 --- a/framework/uicomponents/qml/Muse/GraphicalEffects/RoundedCornersEffect.qml +++ b/framework/uicomponents/qml/Muse/GraphicalEffects/RoundedCornersEffect.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/Border.qml b/framework/uicomponents/qml/Muse/UiComponents/Border.qml index da48043d89..7477c91e35 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/Border.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/Border.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ButtonBox.qml b/framework/uicomponents/qml/Muse/UiComponents/ButtonBox.qml index 00e4066488..01e833328f 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ButtonBox.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ButtonBox.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/CheckBox.qml b/framework/uicomponents/qml/Muse/UiComponents/CheckBox.qml index 73c030f59b..41014c8ed5 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/CheckBox.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/CheckBox.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ColorPicker.qml b/framework/uicomponents/qml/Muse/UiComponents/ColorPicker.qml index 4720271bbb..cdca02d22b 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ColorPicker.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ColorPicker.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ContextMenuLoader.qml b/framework/uicomponents/qml/Muse/UiComponents/ContextMenuLoader.qml index 0beaba06cc..b0dcc9dcea 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ContextMenuLoader.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ContextMenuLoader.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlank.qml b/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlank.qml index b0a5a92e7d..5fe150d3d5 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlank.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlank.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlankSection.qml b/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlankSection.qml index c3068a5caf..be42cff3fb 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlankSection.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ExpandableBlankSection.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FilePicker.qml b/framework/uicomponents/qml/Muse/UiComponents/FilePicker.qml index f88224a9bf..e7ab3ebac8 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FilePicker.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FilePicker.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FlatButton.qml b/framework/uicomponents/qml/Muse/UiComponents/FlatButton.qml index e30f515264..8b0c932aee 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FlatButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FlatButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FlatButtonMenuIndicatorTriangle.qml b/framework/uicomponents/qml/Muse/UiComponents/FlatButtonMenuIndicatorTriangle.qml index 6bcd0831dc..966465cd36 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FlatButtonMenuIndicatorTriangle.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FlatButtonMenuIndicatorTriangle.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButton.qml b/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButton.qml index 65eea55402..745a8b9150 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButtonList.qml b/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButtonList.qml index 35a13b11bd..3bbeda32e5 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButtonList.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FlatRadioButtonList.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FlatToggleButton.qml b/framework/uicomponents/qml/Muse/UiComponents/FlatToggleButton.qml index 7be013cb0c..043b0cd5c1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FlatToggleButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FlatToggleButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FocusableControl.qml b/framework/uicomponents/qml/Muse/UiComponents/FocusableControl.qml index 4cf8171aab..91cf099090 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FocusableControl.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FocusableControl.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/FocusableItem.qml b/framework/uicomponents/qml/Muse/UiComponents/FocusableItem.qml index 59c5ebaa5c..575c3b1877 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/FocusableItem.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/FocusableItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/GradientRectangle.qml b/framework/uicomponents/qml/Muse/UiComponents/GradientRectangle.qml index ec05006c04..1095de06c3 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/GradientRectangle.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/GradientRectangle.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/GridViewSectional.qml b/framework/uicomponents/qml/Muse/UiComponents/GridViewSectional.qml index ba7a03d26b..af742692a1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/GridViewSectional.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/GridViewSectional.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/IncrementalPropertyControl.qml b/framework/uicomponents/qml/Muse/UiComponents/IncrementalPropertyControl.qml index 48d40391ad..632b85a49d 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/IncrementalPropertyControl.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/IncrementalPropertyControl.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/InfoPanel.qml b/framework/uicomponents/qml/Muse/UiComponents/InfoPanel.qml index ac9a7da206..7a664c6e1c 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/InfoPanel.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/InfoPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ListItemBlank.qml b/framework/uicomponents/qml/Muse/UiComponents/ListItemBlank.qml index 621ef244e4..6e5e1d5065 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ListItemBlank.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ListItemBlank.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/MenuButton.qml b/framework/uicomponents/qml/Muse/UiComponents/MenuButton.qml index 19b337e5ba..cb9b93bd8b 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/MenuButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/MenuButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/NavigationFocusBorder.qml b/framework/uicomponents/qml/Muse/UiComponents/NavigationFocusBorder.qml index ff5a497f8d..c8ac7147d8 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/NavigationFocusBorder.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/NavigationFocusBorder.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/NumberInputField.qml b/framework/uicomponents/qml/Muse/UiComponents/NumberInputField.qml index 2169b2ab7f..a3b6f465a0 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/NumberInputField.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/NumberInputField.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/PageIndicator.qml b/framework/uicomponents/qml/Muse/UiComponents/PageIndicator.qml index 4b27d6d3fb..1fbe4b8f91 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/PageIndicator.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/PageIndicator.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/PageTabButton.qml b/framework/uicomponents/qml/Muse/UiComponents/PageTabButton.qml index 0100be26ad..52b4b1461a 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/PageTabButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/PageTabButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/PopupPanel.qml b/framework/uicomponents/qml/Muse/UiComponents/PopupPanel.qml index a2d87d8b0a..59d948d9fa 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/PopupPanel.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/PopupPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ProgressBar.qml b/framework/uicomponents/qml/Muse/UiComponents/ProgressBar.qml index fbc6b28a25..64fc46ef71 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ProgressBar.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ProgressBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ProgressButton.qml b/framework/uicomponents/qml/Muse/UiComponents/ProgressButton.qml index b3aae1c8f4..3ddc39e776 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ProgressButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ProgressButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/RadioButtonGroup.qml b/framework/uicomponents/qml/Muse/UiComponents/RadioButtonGroup.qml index 309a837593..adab97d5d3 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/RadioButtonGroup.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/RadioButtonGroup.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/RealInputField.qml b/framework/uicomponents/qml/Muse/UiComponents/RealInputField.qml index c7e334aa48..9d6024bedc 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/RealInputField.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/RealInputField.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/RoundedRadioButton.qml b/framework/uicomponents/qml/Muse/UiComponents/RoundedRadioButton.qml index ffdbf62620..dac5664971 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/RoundedRadioButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/RoundedRadioButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/RoundedRectangle.qml b/framework/uicomponents/qml/Muse/UiComponents/RoundedRectangle.qml index d3d45579d4..ff6b2a2fa2 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/RoundedRectangle.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/RoundedRectangle.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/SearchField.qml b/framework/uicomponents/qml/Muse/UiComponents/SearchField.qml index 7ced417203..5753ce691e 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/SearchField.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/SearchField.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/SelectMultipleDirectoriesDialog.qml b/framework/uicomponents/qml/Muse/UiComponents/SelectMultipleDirectoriesDialog.qml index 23f07c0d12..14e27e68db 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/SelectMultipleDirectoriesDialog.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/SelectMultipleDirectoriesDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/SeparatorLine.qml b/framework/uicomponents/qml/Muse/UiComponents/SeparatorLine.qml index a9939e7eb1..e3221b9254 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/SeparatorLine.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/SeparatorLine.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StubStyledRectangularShadow.qml b/framework/uicomponents/qml/Muse/UiComponents/StubStyledRectangularShadow.qml index 43cd08daea..10139854a1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StubStyledRectangularShadow.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StubStyledRectangularShadow.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * -* MuseScore +* MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledBusyIndicator.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledBusyIndicator.qml index 58d63d91a9..5d85be3c68 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledBusyIndicator.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledBusyIndicator.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledDialogView.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledDialogView.qml index 08c5974fda..ec2851f444 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledDialogView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledDialogView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledDropdown.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledDropdown.qml index 165e7fc701..7cdc06b567 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledDropdown.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledDropdown.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledFlickable.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledFlickable.qml index f0af3591f8..37e3a87050 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledFlickable.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledFlickable.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledGridView.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledGridView.qml index 1425eba39a..bdffc40d50 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledGridView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledGridView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledGroupBox.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledGroupBox.qml index 836cd92a26..aee7113ec9 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledGroupBox.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledGroupBox.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledIconLabel.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledIconLabel.qml index 54264f3221..0307f55e50 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledIconLabel.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledIconLabel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledListView.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledListView.qml index 1767d46a7d..c8696056ba 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledListView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledListView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledMenuLoader.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledMenuLoader.qml index 32154feedf..1c0a3ceb7d 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledMenuLoader.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledMenuLoader.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledPopupView.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledPopupView.qml index fa54f8bd35..d0062e6274 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledPopupView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledPopupView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledRectangularShadow.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledRectangularShadow.qml index 965efd70cf..091df1d7d0 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledRectangularShadow.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledRectangularShadow.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledScrollBar.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledScrollBar.qml index 2220c177a0..cc54e04630 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledScrollBar.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledScrollBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledSlider.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledSlider.qml index a761f6f47b..86c5b1db7e 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledSlider.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledSlider.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledTabBar.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledTabBar.qml index 29a8006071..fa08aaa99f 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledTabBar.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledTabBar.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledTabButton.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledTabButton.qml index 59c8ecba2a..6ce5aa0267 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledTabButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledTabButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledTableView.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledTableView.qml index 5b53d45a6c..019b7410f3 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledTableView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledTableView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledTextLabel.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledTextLabel.qml index 828098b90f..28581185cf 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledTextLabel.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledTextLabel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarItem.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarItem.qml index 94dabfbdcb..96a4286ec5 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarItem.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarView.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarView.qml index 9dade32e99..69bec2696c 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledToolBarView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledToolTip.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledToolTip.qml index 821f9275be..710b8e0b13 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledToolTip.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledToolTip.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/StyledTreeView.qml b/framework/uicomponents/qml/Muse/UiComponents/StyledTreeView.qml index 46fd35fd55..36d9ecedcf 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/StyledTreeView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/StyledTreeView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/TextInputArea.qml b/framework/uicomponents/qml/Muse/UiComponents/TextInputArea.qml index 58c3845004..c4216852b5 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/TextInputArea.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/TextInputArea.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/TextInputField.qml b/framework/uicomponents/qml/Muse/UiComponents/TextInputField.qml index d9b8b4c61a..ff760552bd 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/TextInputField.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/TextInputField.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/TimeInputField.qml b/framework/uicomponents/qml/Muse/UiComponents/TimeInputField.qml index ac0f17a11b..d43b623aa9 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/TimeInputField.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/TimeInputField.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ToggleButton.qml b/framework/uicomponents/qml/Muse/UiComponents/ToggleButton.qml index 95f453c0b5..a100237641 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ToggleButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ToggleButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/Utils.mjs b/framework/uicomponents/qml/Muse/UiComponents/Utils.mjs index ad89bb9e86..be64f8ced1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/Utils.mjs +++ b/framework/uicomponents/qml/Muse/UiComponents/Utils.mjs @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ValueAdjustControl.qml b/framework/uicomponents/qml/Muse/UiComponents/ValueAdjustControl.qml index 7834969b45..5f5aaaf4a1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ValueAdjustControl.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ValueAdjustControl.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/ValueList.qml b/framework/uicomponents/qml/Muse/UiComponents/ValueList.qml index 533b41a2d9..dcf417ee79 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/ValueList.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/ValueList.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/VisibilityBox.qml b/framework/uicomponents/qml/Muse/UiComponents/VisibilityBox.qml index bca83963ed..18cd9d18b1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/VisibilityBox.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/VisibilityBox.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.cpp index 50c7fa4a94..50ff2b7461 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.h b/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.h index 34ac1268c5..619616707d 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/abstractmenumodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.cpp index 188d55e75a..24076bea72 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.h b/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.h index e417a8c566..3f56b2b617 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/abstracttableviewmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.cpp index a3e06e8dda..00d146fd0f 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.h b/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.h index becaf6256c..9bb6fe0fbe 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/abstracttoolbarmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.cpp index a423a8c876..8b82124074 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.h b/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.h index fd12c88835..1cb4308f27 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/buttonboxmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.cpp index 80bf55d013..fe22bc7635 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.h b/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.h index cc0922dc6e..80ba961c26 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/colorpickermodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/dialogview.cpp b/framework/uicomponents/qml/Muse/UiComponents/dialogview.cpp index e34ab56f58..4345d625f1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/dialogview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/dialogview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/dialogview.h b/framework/uicomponents/qml/Muse/UiComponents/dialogview.h index 1d8f8aa354..5d816390b1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/dialogview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/dialogview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/dropdownview.cpp b/framework/uicomponents/qml/Muse/UiComponents/dropdownview.cpp index 97815445af..e6de79c831 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/dropdownview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/dropdownview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/dropdownview.h b/framework/uicomponents/qml/Muse/UiComponents/dropdownview.h index d2d566160c..b6026edac9 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/dropdownview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/dropdownview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.cpp index 416088b9b0..0e232d72e7 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.h b/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.h index 6d3be76050..c327ffde36 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/filepickermodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.cpp index 05adfae1bf..1e8c5b0edd 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.h b/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.h index 03920c2e98..c26f0fa12a 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/filteredflyoutmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/filtervalue.cpp b/framework/uicomponents/qml/Muse/UiComponents/filtervalue.cpp index 0c199d8bf8..40e59a4724 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/filtervalue.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/filtervalue.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/filtervalue.h b/framework/uicomponents/qml/Muse/UiComponents/filtervalue.h index a4abd2511e..e66bf68e2a 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/filtervalue.h +++ b/framework/uicomponents/qml/Muse/UiComponents/filtervalue.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/iconview.cpp b/framework/uicomponents/qml/Muse/UiComponents/iconview.cpp index 77521650be..6d07ee2127 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/iconview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/iconview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/iconview.h b/framework/uicomponents/qml/Muse/UiComponents/iconview.h index 0d54bfe626..209894936a 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/iconview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/iconview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/ArrowScrollButton.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/ArrowScrollButton.qml index 77cb518e35..86a0684c98 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/ArrowScrollButton.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/ArrowScrollButton.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesTopPanel.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesTopPanel.qml index cc401512e0..81dabe16f3 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesTopPanel.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesTopPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesView.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesView.qml index 60b77deedc..bb832d26ee 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/DirectoriesView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewDelegate.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewDelegate.qml index 9c5ef3cda1..0074cd3240 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewDelegate.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewDelegate.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewSection.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewSection.qml index f9db6b441d..4e0c403a2f 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewSection.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/GridViewSection.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/MenuMetrics.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/MenuMetrics.qml index 52840b6d40..86f041075b 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/MenuMetrics.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/MenuMetrics.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/PopupContent.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/PopupContent.qml index efb5e3ff5c..c4a4ab288a 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/PopupContent.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/PopupContent.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownLoader.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownLoader.qml index fd26412d2e..07071f2c92 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownLoader.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownLoader.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownView.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownView.qml index 41c78234c1..3cd3d6353d 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownView.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledDropdownView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenu.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenu.qml index 480a6653f7..b4992cbbce 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenu.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenu.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenuItem.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenuItem.qml index ffeeb13b28..e6d4dd98b8 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenuItem.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledMenuItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewCell.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewCell.qml index 368c335ac7..30e38dbcd6 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewCell.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewCell.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewColumn.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewColumn.qml index 5716ca6ff7..ad9b37c128 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewColumn.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/StyledTableViewColumn.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListHeaderItem.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListHeaderItem.qml index b63e585dbe..55fc0bd1d2 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListHeaderItem.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListHeaderItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListItem.qml b/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListItem.qml index e290e70c01..5b1e2b470a 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListItem.qml +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/ValueListItem.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.h b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.h index 3bf9787b52..cec4de26aa 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.h +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.mm b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.mm index ba4709e1ae..460a03ee24 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.mm +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macospopupviewclosecontroller.mm @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.h b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.h index 5a54b56558..f814e55d9b 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.h +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.mm b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.mm index bbd19adbfe..e0821a6611 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.mm +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/macos/macoswindowlevelcontroller.mm @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.cpp b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.cpp index 20cf249ed9..62cb82d9a1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.h b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.h index b2ff4485fe..14bb135285 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.h +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/platform/win/winpopupviewclosecontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.cpp b/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.cpp index 817f7513f2..5068c861ee 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.h b/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.h index ffde402f44..6e04bc6e42 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.h +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/popupviewclosecontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.cpp b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.cpp index 50f84847d7..1707070e9d 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.h b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.h index 8d7bb7320a..2c80869977 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.h +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewcell.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.cpp b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.cpp index 30b26e7fdc..b144e01ac5 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.h b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.h index 67b08b0dff..2d29f5155b 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.h +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewheader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.cpp b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.cpp index afbca71361..985174f9e6 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.h b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.h index 4c58bef632..d3eb33365e 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.h +++ b/framework/uicomponents/qml/Muse/UiComponents/internal/tableviewlistcell.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.cpp index d33ed4fa41..334904bfcd 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.h b/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.h index 0f0a72911d..8d9c1df411 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/itemmultiselectionmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/menuitem.cpp b/framework/uicomponents/qml/Muse/UiComponents/menuitem.cpp index f7120a1964..27e8122976 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/menuitem.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/menuitem.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/menuitem.h b/framework/uicomponents/qml/Muse/UiComponents/menuitem.h index 6b939b36a9..32086a45c9 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/menuitem.h +++ b/framework/uicomponents/qml/Muse/UiComponents/menuitem.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/menuview.cpp b/framework/uicomponents/qml/Muse/UiComponents/menuview.cpp index 75ddd21999..87dd4deb38 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/menuview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/menuview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/menuview.h b/framework/uicomponents/qml/Muse/UiComponents/menuview.h index bfcb6aeec1..d932cda2da 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/menuview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/menuview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/polylineplot.cpp b/framework/uicomponents/qml/Muse/UiComponents/polylineplot.cpp index d4143e5563..0a770e01a6 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/polylineplot.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/polylineplot.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/polylineplot.h b/framework/uicomponents/qml/Muse/UiComponents/polylineplot.h index aebcc6d205..f640d8a991 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/polylineplot.h +++ b/framework/uicomponents/qml/Muse/UiComponents/polylineplot.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/popupview.cpp b/framework/uicomponents/qml/Muse/UiComponents/popupview.cpp index 6ddb57e016..5ef377afbc 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/popupview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/popupview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/popupview.h b/framework/uicomponents/qml/Muse/UiComponents/popupview.h index 42a832f454..55cbca5a38 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/popupview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/popupview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.cpp b/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.cpp index 0208e4dc5d..7d9ea38b44 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.h b/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.h index 706b80d6a3..e6f72f0805 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.h +++ b/framework/uicomponents/qml/Muse/UiComponents/qmllistproperty.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.cpp b/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.cpp index 38f83fde1a..ff97f569ce 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.h b/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.h index 9a2825b285..8a5444c3a1 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/quickpaintedview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.cpp index d8b00af011..f2d9d32d44 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.h b/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.h index 1c69e6456b..bfab473825 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/selectableitemlistmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.cpp index f5b9edc653..3ec9360100 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.h b/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.h index 7c33426573..daf7a60abb 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/shortcutoverridemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/sortervalue.cpp b/framework/uicomponents/qml/Muse/UiComponents/sortervalue.cpp index 600e952095..904436aa59 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/sortervalue.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/sortervalue.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/sortervalue.h b/framework/uicomponents/qml/Muse/UiComponents/sortervalue.h index 86d9b46b03..9854ae08e5 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/sortervalue.h +++ b/framework/uicomponents/qml/Muse/UiComponents/sortervalue.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.cpp index cc1e8baa83..9eb675b142 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.h b/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.h index 2b19c8c20f..e5440276bf 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/sortfilterproxymodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.cpp index 03a995a895..c239d0c5bf 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.h b/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.h index a1f9530af4..d974652ffb 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/tablesortfilterproxymodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/tests/CMakeLists.txt b/framework/uicomponents/qml/Muse/UiComponents/tests/CMakeLists.txt index 7fc0ce714c..8e1b2247bf 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/tests/CMakeLists.txt +++ b/framework/uicomponents/qml/Muse/UiComponents/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/tests/doubleinputvalidator_tests.cpp b/framework/uicomponents/qml/Muse/UiComponents/tests/doubleinputvalidator_tests.cpp index 1cd9b2bcfa..dc49415a0e 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/tests/doubleinputvalidator_tests.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/tests/doubleinputvalidator_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.cpp b/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.cpp index 696ea304c5..83beb52e18 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.h b/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.h index 5c0045beaf..be93454119 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.h +++ b/framework/uicomponents/qml/Muse/UiComponents/testtableviewmodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.cpp b/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.cpp index b361c9cf2b..8fec8b4597 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.h b/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.h index dc209fae1e..746db82c56 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.h +++ b/framework/uicomponents/qml/Muse/UiComponents/toolbaritem.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.cpp b/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.cpp index 5eecee0605..a4435a18ce 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.h b/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.h index d4abaff1c6..3786ab5a3e 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.h +++ b/framework/uicomponents/qml/Muse/UiComponents/validators/doubleinputvalidator.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.cpp b/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.cpp index 4c5e52179a..ff2302c929 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.h b/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.h index 91522ad3d4..63c57297c6 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.h +++ b/framework/uicomponents/qml/Muse/UiComponents/validators/intinputvalidator.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/widgetview.cpp b/framework/uicomponents/qml/Muse/UiComponents/widgetview.cpp index 1d81a20601..5d4bb3cfe9 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/widgetview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/widgetview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/widgetview.h b/framework/uicomponents/qml/Muse/UiComponents/widgetview.h index 896ae5fefa..f40e1a6541 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/widgetview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/widgetview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/windowview.cpp b/framework/uicomponents/qml/Muse/UiComponents/windowview.cpp index aadc7cd4dc..a718a68f17 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/windowview.cpp +++ b/framework/uicomponents/qml/Muse/UiComponents/windowview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/qml/Muse/UiComponents/windowview.h b/framework/uicomponents/qml/Muse/UiComponents/windowview.h index 117fbb2e85..3b525925b7 100644 --- a/framework/uicomponents/qml/Muse/UiComponents/windowview.h +++ b/framework/uicomponents/qml/Muse/UiComponents/windowview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/uicomponentsmodule.cpp b/framework/uicomponents/uicomponentsmodule.cpp index 57f43f5f10..9b7dd4afee 100644 --- a/framework/uicomponents/uicomponentsmodule.cpp +++ b/framework/uicomponents/uicomponentsmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/uicomponentsmodule.h b/framework/uicomponents/uicomponentsmodule.h index 9d876c2fe9..ed8aa06ea5 100644 --- a/framework/uicomponents/uicomponentsmodule.h +++ b/framework/uicomponents/uicomponentsmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/view/modelutils.h b/framework/uicomponents/view/modelutils.h index f15823a438..b374b4ca20 100644 --- a/framework/uicomponents/view/modelutils.h +++ b/framework/uicomponents/view/modelutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2023 MuseScore Limited and others diff --git a/framework/uicomponents/view/topleveldialog.cpp b/framework/uicomponents/view/topleveldialog.cpp index 35efb73485..81b8337bb5 100644 --- a/framework/uicomponents/view/topleveldialog.cpp +++ b/framework/uicomponents/view/topleveldialog.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/view/topleveldialog.h b/framework/uicomponents/view/topleveldialog.h index 2618fbbe88..2b6e4446b7 100644 --- a/framework/uicomponents/view/topleveldialog.h +++ b/framework/uicomponents/view/topleveldialog.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/view/widgets/radiobuttongroupbox.cpp b/framework/uicomponents/view/widgets/radiobuttongroupbox.cpp index de7044710c..68054e3ed5 100644 --- a/framework/uicomponents/view/widgets/radiobuttongroupbox.cpp +++ b/framework/uicomponents/view/widgets/radiobuttongroupbox.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/uicomponents/view/widgets/radiobuttongroupbox.h b/framework/uicomponents/view/widgets/radiobuttongroupbox.h index ef39bf0a24..c13793cbcf 100644 --- a/framework/uicomponents/view/widgets/radiobuttongroupbox.h +++ b/framework/uicomponents/view/widgets/radiobuttongroupbox.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/iappupdatescenario.h b/framework/update/iappupdatescenario.h index 15cac46839..a0aca9513f 100644 --- a/framework/update/iappupdatescenario.h +++ b/framework/update/iappupdatescenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/iappupdateservice.h b/framework/update/iappupdateservice.h index 499cc3ef23..6122e3208b 100644 --- a/framework/update/iappupdateservice.h +++ b/framework/update/iappupdateservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/internal/appupdatescenario.cpp b/framework/update/internal/appupdatescenario.cpp index 3adcb8778a..555476136f 100644 --- a/framework/update/internal/appupdatescenario.cpp +++ b/framework/update/internal/appupdatescenario.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/internal/appupdatescenario.h b/framework/update/internal/appupdatescenario.h index 91a1196a17..3ef072e5d7 100644 --- a/framework/update/internal/appupdatescenario.h +++ b/framework/update/internal/appupdatescenario.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/internal/appupdateservice.cpp b/framework/update/internal/appupdateservice.cpp index 3ed8a0e454..a067e810ae 100644 --- a/framework/update/internal/appupdateservice.cpp +++ b/framework/update/internal/appupdateservice.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/internal/appupdateservice.h b/framework/update/internal/appupdateservice.h index 12d9e3453e..8586fd334a 100644 --- a/framework/update/internal/appupdateservice.h +++ b/framework/update/internal/appupdateservice.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/internal/updateactioncontroller.cpp b/framework/update/internal/updateactioncontroller.cpp index 486840c4b5..1dac665b79 100644 --- a/framework/update/internal/updateactioncontroller.cpp +++ b/framework/update/internal/updateactioncontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/internal/updateactioncontroller.h b/framework/update/internal/updateactioncontroller.h index 5e52f4e79b..39290e017e 100644 --- a/framework/update/internal/updateactioncontroller.h +++ b/framework/update/internal/updateactioncontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/internal/updateconfiguration.cpp b/framework/update/internal/updateconfiguration.cpp index 393dff6567..295b23a1eb 100644 --- a/framework/update/internal/updateconfiguration.cpp +++ b/framework/update/internal/updateconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/internal/updateconfiguration.h b/framework/update/internal/updateconfiguration.h index 7da189336d..7c8f315ae1 100644 --- a/framework/update/internal/updateconfiguration.h +++ b/framework/update/internal/updateconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/internal/updateuiactions.cpp b/framework/update/internal/updateuiactions.cpp index 9fbbb58dd1..31a55fe948 100644 --- a/framework/update/internal/updateuiactions.cpp +++ b/framework/update/internal/updateuiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/internal/updateuiactions.h b/framework/update/internal/updateuiactions.h index cb94b3fccf..9febae0a03 100644 --- a/framework/update/internal/updateuiactions.h +++ b/framework/update/internal/updateuiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/iupdateconfiguration.h b/framework/update/iupdateconfiguration.h index 2e3f3a6084..a681de9c02 100644 --- a/framework/update/iupdateconfiguration.h +++ b/framework/update/iupdateconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/qml/Muse/Update/AppReleaseInfoDialog.qml b/framework/update/qml/Muse/Update/AppReleaseInfoDialog.qml index f2ef30dfed..d18bfec71b 100644 --- a/framework/update/qml/Muse/Update/AppReleaseInfoDialog.qml +++ b/framework/update/qml/Muse/Update/AppReleaseInfoDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/qml/Muse/Update/AppUpdateProgressDialog.qml b/framework/update/qml/Muse/Update/AppUpdateProgressDialog.qml index 9b7eebe984..e536c7974f 100644 --- a/framework/update/qml/Muse/Update/AppUpdateProgressDialog.qml +++ b/framework/update/qml/Muse/Update/AppUpdateProgressDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/qml/Muse/Update/appupdatemodel.cpp b/framework/update/qml/Muse/Update/appupdatemodel.cpp index 06c045ff74..686257a91e 100644 --- a/framework/update/qml/Muse/Update/appupdatemodel.cpp +++ b/framework/update/qml/Muse/Update/appupdatemodel.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/qml/Muse/Update/appupdatemodel.h b/framework/update/qml/Muse/Update/appupdatemodel.h index 217e31900f..0f381d714f 100644 --- a/framework/update/qml/Muse/Update/appupdatemodel.h +++ b/framework/update/qml/Muse/Update/appupdatemodel.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/qml/Muse/Update/internal/AppReleaseInfoBottomPanel.qml b/framework/update/qml/Muse/Update/internal/AppReleaseInfoBottomPanel.qml index 236f48d4be..645f10a178 100644 --- a/framework/update/qml/Muse/Update/internal/AppReleaseInfoBottomPanel.qml +++ b/framework/update/qml/Muse/Update/internal/AppReleaseInfoBottomPanel.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/qml/Muse/Update/internal/ReleaseNotesView.qml b/framework/update/qml/Muse/Update/internal/ReleaseNotesView.qml index 3a606d9c0e..2f2a041c66 100644 --- a/framework/update/qml/Muse/Update/internal/ReleaseNotesView.qml +++ b/framework/update/qml/Muse/Update/internal/ReleaseNotesView.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/update/tests/CMakeLists.txt b/framework/update/tests/CMakeLists.txt index ec84fe9d18..a551a142f0 100644 --- a/framework/update/tests/CMakeLists.txt +++ b/framework/update/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/update/tests/appupdateservice_tests.cpp b/framework/update/tests/appupdateservice_tests.cpp index 8cd0fce6f2..1d9a6567d8 100644 --- a/framework/update/tests/appupdateservice_tests.cpp +++ b/framework/update/tests/appupdateservice_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/update/tests/mocks/updateconfigurationmock.h b/framework/update/tests/mocks/updateconfigurationmock.h index e189e2f99c..8ea2cb5cd7 100644 --- a/framework/update/tests/mocks/updateconfigurationmock.h +++ b/framework/update/tests/mocks/updateconfigurationmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2024 MuseScore Limited and others diff --git a/framework/update/updateerrors.h b/framework/update/updateerrors.h index d42270a6d3..44b8798694 100644 --- a/framework/update/updateerrors.h +++ b/framework/update/updateerrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/updatemodule.cpp b/framework/update/updatemodule.cpp index b265c36921..31900cb5c7 100644 --- a/framework/update/updatemodule.cpp +++ b/framework/update/updatemodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/updatemodule.h b/framework/update/updatemodule.h index 0701d55c9d..6fe54d62d5 100644 --- a/framework/update/updatemodule.h +++ b/framework/update/updatemodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/update/updatetypes.h b/framework/update/updatetypes.h index d1f9c1c969..c0e0afc945 100644 --- a/framework/update/updatetypes.h +++ b/framework/update/updatetypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/fx/vstfxprocessor.cpp b/framework/vst/internal/fx/vstfxprocessor.cpp index abe32e19f4..5aca77ad50 100644 --- a/framework/vst/internal/fx/vstfxprocessor.cpp +++ b/framework/vst/internal/fx/vstfxprocessor.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/fx/vstfxprocessor.h b/framework/vst/internal/fx/vstfxprocessor.h index 92bbc24d07..00c408d157 100644 --- a/framework/vst/internal/fx/vstfxprocessor.h +++ b/framework/vst/internal/fx/vstfxprocessor.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/fx/vstfxresolver.cpp b/framework/vst/internal/fx/vstfxresolver.cpp index 58cbf34897..42d5a12439 100644 --- a/framework/vst/internal/fx/vstfxresolver.cpp +++ b/framework/vst/internal/fx/vstfxresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/fx/vstfxresolver.h b/framework/vst/internal/fx/vstfxresolver.h index 51aeb45c3e..18a1bcd8f7 100644 --- a/framework/vst/internal/fx/vstfxresolver.h +++ b/framework/vst/internal/fx/vstfxresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/synth/vstiresolver.cpp b/framework/vst/internal/synth/vstiresolver.cpp index 80b42aa1f9..c635fe37b2 100644 --- a/framework/vst/internal/synth/vstiresolver.cpp +++ b/framework/vst/internal/synth/vstiresolver.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/synth/vstiresolver.h b/framework/vst/internal/synth/vstiresolver.h index f6e72adf7a..022aa94adc 100644 --- a/framework/vst/internal/synth/vstiresolver.h +++ b/framework/vst/internal/synth/vstiresolver.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/synth/vstsequencer.cpp b/framework/vst/internal/synth/vstsequencer.cpp index 9195a6660a..5dc2c42a0a 100644 --- a/framework/vst/internal/synth/vstsequencer.cpp +++ b/framework/vst/internal/synth/vstsequencer.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/vst/internal/synth/vstsequencer.h b/framework/vst/internal/synth/vstsequencer.h index 2c06df0bb0..7b1a5b5350 100644 --- a/framework/vst/internal/synth/vstsequencer.h +++ b/framework/vst/internal/synth/vstsequencer.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/synth/vstsynthesiser.cpp b/framework/vst/internal/synth/vstsynthesiser.cpp index 395e19bee7..041f50987b 100644 --- a/framework/vst/internal/synth/vstsynthesiser.cpp +++ b/framework/vst/internal/synth/vstsynthesiser.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/synth/vstsynthesiser.h b/framework/vst/internal/synth/vstsynthesiser.h index 5fdcc7ea05..4bbcd4e843 100644 --- a/framework/vst/internal/synth/vstsynthesiser.h +++ b/framework/vst/internal/synth/vstsynthesiser.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/vstactionscontroller.cpp b/framework/vst/internal/vstactionscontroller.cpp index ab033bfd5e..40a99a9d11 100644 --- a/framework/vst/internal/vstactionscontroller.cpp +++ b/framework/vst/internal/vstactionscontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/vstactionscontroller.h b/framework/vst/internal/vstactionscontroller.h index c8cac92e1e..4aa0fe6123 100644 --- a/framework/vst/internal/vstactionscontroller.h +++ b/framework/vst/internal/vstactionscontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/vstaudioclient.cpp b/framework/vst/internal/vstaudioclient.cpp index cf61ee40e3..a17f2b9be0 100644 --- a/framework/vst/internal/vstaudioclient.cpp +++ b/framework/vst/internal/vstaudioclient.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/vstaudioclient.h b/framework/vst/internal/vstaudioclient.h index 36ffd977fa..88b5ad1bde 100644 --- a/framework/vst/internal/vstaudioclient.h +++ b/framework/vst/internal/vstaudioclient.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/vstcomponenthandler.cpp b/framework/vst/internal/vstcomponenthandler.cpp index d128a9bd93..281413c165 100644 --- a/framework/vst/internal/vstcomponenthandler.cpp +++ b/framework/vst/internal/vstcomponenthandler.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstcomponenthandler.h b/framework/vst/internal/vstcomponenthandler.h index ece493f3ff..fdcee7a786 100644 --- a/framework/vst/internal/vstcomponenthandler.h +++ b/framework/vst/internal/vstcomponenthandler.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstconfiguration.cpp b/framework/vst/internal/vstconfiguration.cpp index 675b348ddc..897aa2ff6f 100644 --- a/framework/vst/internal/vstconfiguration.cpp +++ b/framework/vst/internal/vstconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstconfiguration.h b/framework/vst/internal/vstconfiguration.h index 1e214d6fb2..0ccbcda9e8 100644 --- a/framework/vst/internal/vstconfiguration.h +++ b/framework/vst/internal/vstconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstinstancesregister.cpp b/framework/vst/internal/vstinstancesregister.cpp index 4986ca8826..53c02d8d10 100644 --- a/framework/vst/internal/vstinstancesregister.cpp +++ b/framework/vst/internal/vstinstancesregister.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstinstancesregister.h b/framework/vst/internal/vstinstancesregister.h index f962be3e60..c7a61a375b 100644 --- a/framework/vst/internal/vstinstancesregister.h +++ b/framework/vst/internal/vstinstancesregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstmodulesrepository.cpp b/framework/vst/internal/vstmodulesrepository.cpp index ad576aff4a..e824327af1 100644 --- a/framework/vst/internal/vstmodulesrepository.cpp +++ b/framework/vst/internal/vstmodulesrepository.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstmodulesrepository.h b/framework/vst/internal/vstmodulesrepository.h index 403b8d0a4b..2643206ceb 100644 --- a/framework/vst/internal/vstmodulesrepository.h +++ b/framework/vst/internal/vstmodulesrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstplugininstance.cpp b/framework/vst/internal/vstplugininstance.cpp index 63449b9ced..3ee084725a 100644 --- a/framework/vst/internal/vstplugininstance.cpp +++ b/framework/vst/internal/vstplugininstance.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstplugininstance.h b/framework/vst/internal/vstplugininstance.h index 62c8b87c51..0a891cff4e 100644 --- a/framework/vst/internal/vstplugininstance.h +++ b/framework/vst/internal/vstplugininstance.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstpluginmetareader.cpp b/framework/vst/internal/vstpluginmetareader.cpp index 7a14a50b41..41f9d0af05 100644 --- a/framework/vst/internal/vstpluginmetareader.cpp +++ b/framework/vst/internal/vstpluginmetareader.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/vst/internal/vstpluginmetareader.h b/framework/vst/internal/vstpluginmetareader.h index ddc6a97785..33ef4b93dd 100644 --- a/framework/vst/internal/vstpluginmetareader.h +++ b/framework/vst/internal/vstpluginmetareader.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2022 MuseScore Limited and others diff --git a/framework/vst/internal/vstpluginprovider.cpp b/framework/vst/internal/vstpluginprovider.cpp index 0629ad832c..cc0155f69b 100644 --- a/framework/vst/internal/vstpluginprovider.cpp +++ b/framework/vst/internal/vstpluginprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstpluginprovider.h b/framework/vst/internal/vstpluginprovider.h index 5dc73759bd..77c0716a6c 100644 --- a/framework/vst/internal/vstpluginprovider.h +++ b/framework/vst/internal/vstpluginprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstpluginsscanner.cpp b/framework/vst/internal/vstpluginsscanner.cpp index 98302d7349..c5cdc67b1f 100644 --- a/framework/vst/internal/vstpluginsscanner.cpp +++ b/framework/vst/internal/vstpluginsscanner.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstpluginsscanner.h b/framework/vst/internal/vstpluginsscanner.h index 5b17b6250e..1611e3f85a 100644 --- a/framework/vst/internal/vstpluginsscanner.h +++ b/framework/vst/internal/vstpluginsscanner.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/internal/vstuiactions.cpp b/framework/vst/internal/vstuiactions.cpp index 884cc529e0..e85c5694bc 100644 --- a/framework/vst/internal/vstuiactions.cpp +++ b/framework/vst/internal/vstuiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/internal/vstuiactions.h b/framework/vst/internal/vstuiactions.h index f02bfacea9..eb7c2d97fd 100644 --- a/framework/vst/internal/vstuiactions.h +++ b/framework/vst/internal/vstuiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/ivstconfiguration.h b/framework/vst/ivstconfiguration.h index a8226b4ae1..9b08c74a36 100644 --- a/framework/vst/ivstconfiguration.h +++ b/framework/vst/ivstconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/ivstinstancesregister.h b/framework/vst/ivstinstancesregister.h index 6ca7574a14..83a3a4389c 100644 --- a/framework/vst/ivstinstancesregister.h +++ b/framework/vst/ivstinstancesregister.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/ivstmodulesrepository.h b/framework/vst/ivstmodulesrepository.h index 8c1498f690..0ecaa84bb8 100644 --- a/framework/vst/ivstmodulesrepository.h +++ b/framework/vst/ivstmodulesrepository.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/ivstplugininstance.h b/framework/vst/ivstplugininstance.h index 304dd3e958..568c4d2f99 100644 --- a/framework/vst/ivstplugininstance.h +++ b/framework/vst/ivstplugininstance.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/qml/Muse/Vst/VstEditor.qml b/framework/vst/qml/Muse/Vst/VstEditor.qml index 040a9dbf66..46675677f6 100644 --- a/framework/vst/qml/Muse/Vst/VstEditor.qml +++ b/framework/vst/qml/Muse/Vst/VstEditor.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/qml/Muse/Vst/VstEditorDialog.qml b/framework/vst/qml/Muse/Vst/VstEditorDialog.qml index c6a64702cb..14c1f76c36 100644 --- a/framework/vst/qml/Muse/Vst/VstEditorDialog.qml +++ b/framework/vst/qml/Muse/Vst/VstEditorDialog.qml @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/qml/Muse/Vst/platform/linux/runloop.cpp b/framework/vst/qml/Muse/Vst/platform/linux/runloop.cpp index aae7adabf7..aae06ae669 100644 --- a/framework/vst/qml/Muse/Vst/platform/linux/runloop.cpp +++ b/framework/vst/qml/Muse/Vst/platform/linux/runloop.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/qml/Muse/Vst/platform/linux/runloop.h b/framework/vst/qml/Muse/Vst/platform/linux/runloop.h index a394e731cf..58fd9f0edb 100644 --- a/framework/vst/qml/Muse/Vst/platform/linux/runloop.h +++ b/framework/vst/qml/Muse/Vst/platform/linux/runloop.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/qml/Muse/Vst/vstview.cpp b/framework/vst/qml/Muse/Vst/vstview.cpp index 60c16d19a2..ca50097f6a 100644 --- a/framework/vst/qml/Muse/Vst/vstview.cpp +++ b/framework/vst/qml/Muse/Vst/vstview.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/qml/Muse/Vst/vstview.h b/framework/vst/qml/Muse/Vst/vstview.h index d0c5e33da7..9855c86a8a 100644 --- a/framework/vst/qml/Muse/Vst/vstview.h +++ b/framework/vst/qml/Muse/Vst/vstview.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/vst/sdk/CMakeLists.txt b/framework/vst/sdk/CMakeLists.txt index 3f84330182..f4db8ea4ad 100644 --- a/framework/vst/sdk/CMakeLists.txt +++ b/framework/vst/sdk/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/vsterrors.h b/framework/vst/vsterrors.h index 90eee3a624..840b815ab9 100644 --- a/framework/vst/vsterrors.h +++ b/framework/vst/vsterrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/vstmodule.cpp b/framework/vst/vstmodule.cpp index 18a6e554df..b2777753d3 100644 --- a/framework/vst/vstmodule.cpp +++ b/framework/vst/vstmodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/vstmodule.h b/framework/vst/vstmodule.h index ec8d55a035..1e5703bd72 100644 --- a/framework/vst/vstmodule.h +++ b/framework/vst/vstmodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/vsttypes.h b/framework/vst/vsttypes.h index 268f786cd9..f338baa51c 100644 --- a/framework/vst/vsttypes.h +++ b/framework/vst/vsttypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/widgets/vstviewdialog_qwidget.cpp b/framework/vst/widgets/vstviewdialog_qwidget.cpp index 430db2fc4a..728826e061 100644 --- a/framework/vst/widgets/vstviewdialog_qwidget.cpp +++ b/framework/vst/widgets/vstviewdialog_qwidget.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/vst/widgets/vstviewdialog_qwidget.h b/framework/vst/widgets/vstviewdialog_qwidget.h index 5c7866db9b..76640bba2c 100644 --- a/framework/vst/widgets/vstviewdialog_qwidget.h +++ b/framework/vst/widgets/vstviewdialog_qwidget.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspace.cpp b/framework/workspace/internal/workspace.cpp index 76b96eaca8..5013a9ea78 100644 --- a/framework/workspace/internal/workspace.cpp +++ b/framework/workspace/internal/workspace.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspace.h b/framework/workspace/internal/workspace.h index 8829e2500a..da07bd54e5 100644 --- a/framework/workspace/internal/workspace.h +++ b/framework/workspace/internal/workspace.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceactioncontroller.cpp b/framework/workspace/internal/workspaceactioncontroller.cpp index fabfaefed9..5a89dee0f2 100644 --- a/framework/workspace/internal/workspaceactioncontroller.cpp +++ b/framework/workspace/internal/workspaceactioncontroller.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceactioncontroller.h b/framework/workspace/internal/workspaceactioncontroller.h index 65c91c002f..fc5a5eba65 100644 --- a/framework/workspace/internal/workspaceactioncontroller.h +++ b/framework/workspace/internal/workspaceactioncontroller.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceconfiguration.cpp b/framework/workspace/internal/workspaceconfiguration.cpp index dc84699825..190feb83e9 100644 --- a/framework/workspace/internal/workspaceconfiguration.cpp +++ b/framework/workspace/internal/workspaceconfiguration.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceconfiguration.h b/framework/workspace/internal/workspaceconfiguration.h index 63361ae7dc..1c6ca6f780 100644 --- a/framework/workspace/internal/workspaceconfiguration.h +++ b/framework/workspace/internal/workspaceconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspacefile.cpp b/framework/workspace/internal/workspacefile.cpp index dd416abbe8..bd54b23d76 100644 --- a/framework/workspace/internal/workspacefile.cpp +++ b/framework/workspace/internal/workspacefile.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspacefile.h b/framework/workspace/internal/workspacefile.h index 0ec4d45d78..d9d8dca276 100644 --- a/framework/workspace/internal/workspacefile.h +++ b/framework/workspace/internal/workspacefile.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspacemanager.cpp b/framework/workspace/internal/workspacemanager.cpp index 794d25ff0d..f5cb221cf6 100644 --- a/framework/workspace/internal/workspacemanager.cpp +++ b/framework/workspace/internal/workspacemanager.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspacemanager.h b/framework/workspace/internal/workspacemanager.h index 5887cfd899..e389d0efaf 100644 --- a/framework/workspace/internal/workspacemanager.h +++ b/framework/workspace/internal/workspacemanager.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspacesdataprovider.cpp b/framework/workspace/internal/workspacesdataprovider.cpp index 6b424f17e8..b882c2e280 100644 --- a/framework/workspace/internal/workspacesdataprovider.cpp +++ b/framework/workspace/internal/workspacesdataprovider.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspacesdataprovider.h b/framework/workspace/internal/workspacesdataprovider.h index 432b29dd25..4c1cbb5894 100644 --- a/framework/workspace/internal/workspacesdataprovider.h +++ b/framework/workspace/internal/workspacesdataprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceuiactions.cpp b/framework/workspace/internal/workspaceuiactions.cpp index 7876e4ad25..8cfe192656 100644 --- a/framework/workspace/internal/workspaceuiactions.cpp +++ b/framework/workspace/internal/workspaceuiactions.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceuiactions.h b/framework/workspace/internal/workspaceuiactions.h index 1f463857e6..ffb063f4e2 100644 --- a/framework/workspace/internal/workspaceuiactions.h +++ b/framework/workspace/internal/workspaceuiactions.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceutils.cpp b/framework/workspace/internal/workspaceutils.cpp index be77a2bce4..2702859b19 100644 --- a/framework/workspace/internal/workspaceutils.cpp +++ b/framework/workspace/internal/workspaceutils.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/workspace/internal/workspaceutils.h b/framework/workspace/internal/workspaceutils.h index 5ccf3f7c15..1e9788dffd 100644 --- a/framework/workspace/internal/workspaceutils.h +++ b/framework/workspace/internal/workspaceutils.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2025 MuseScore Limited and others diff --git a/framework/workspace/iworkspace.h b/framework/workspace/iworkspace.h index 7291a142bf..a7a2e4b79c 100644 --- a/framework/workspace/iworkspace.h +++ b/framework/workspace/iworkspace.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/iworkspaceconfiguration.h b/framework/workspace/iworkspaceconfiguration.h index 52e6e11c76..3acf03384c 100644 --- a/framework/workspace/iworkspaceconfiguration.h +++ b/framework/workspace/iworkspaceconfiguration.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/iworkspacemanager.h b/framework/workspace/iworkspacemanager.h index 6efd01ff00..19febb9b6c 100644 --- a/framework/workspace/iworkspacemanager.h +++ b/framework/workspace/iworkspacemanager.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/iworkspacesdataprovider.h b/framework/workspace/iworkspacesdataprovider.h index fee998bc1b..95bb8a0cc4 100644 --- a/framework/workspace/iworkspacesdataprovider.h +++ b/framework/workspace/iworkspacesdataprovider.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/tests/CMakeLists.txt b/framework/workspace/tests/CMakeLists.txt index 6ad7f78e3f..9ebf3a5a75 100644 --- a/framework/workspace/tests/CMakeLists.txt +++ b/framework/workspace/tests/CMakeLists.txt @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-3.0-only # MuseScore-CLA-applies # -# MuseScore +# MuseScore Studio # Music Composition & Notation # # Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/workspace/tests/environment.cpp b/framework/workspace/tests/environment.cpp index 630b07284d..d537949f4b 100644 --- a/framework/workspace/tests/environment.cpp +++ b/framework/workspace/tests/environment.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/workspace/tests/mocks/workspaceconfigurationmock.h b/framework/workspace/tests/mocks/workspaceconfigurationmock.h index 68e0430641..183e1d558b 100644 --- a/framework/workspace/tests/mocks/workspaceconfigurationmock.h +++ b/framework/workspace/tests/mocks/workspaceconfigurationmock.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/workspace/tests/workspace_test_helpers.cpp b/framework/workspace/tests/workspace_test_helpers.cpp index fef5b6031d..6812c99121 100644 --- a/framework/workspace/tests/workspace_test_helpers.cpp +++ b/framework/workspace/tests/workspace_test_helpers.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/workspace/tests/workspace_test_helpers.h b/framework/workspace/tests/workspace_test_helpers.h index 8f2303d1ca..d17595fabd 100644 --- a/framework/workspace/tests/workspace_test_helpers.h +++ b/framework/workspace/tests/workspace_test_helpers.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/workspace/tests/workspaceconfig_tests.cpp b/framework/workspace/tests/workspaceconfig_tests.cpp index 21d786fd8b..76405d5bb5 100644 --- a/framework/workspace/tests/workspaceconfig_tests.cpp +++ b/framework/workspace/tests/workspaceconfig_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/workspace/tests/workspacemanager_tests.cpp b/framework/workspace/tests/workspacemanager_tests.cpp index bba67b78c1..1bca6425e5 100644 --- a/framework/workspace/tests/workspacemanager_tests.cpp +++ b/framework/workspace/tests/workspacemanager_tests.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2026 MuseScore Limited and others diff --git a/framework/workspace/workspaceerrors.h b/framework/workspace/workspaceerrors.h index 9c6e9a77da..e057cc8aef 100644 --- a/framework/workspace/workspaceerrors.h +++ b/framework/workspace/workspaceerrors.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/workspacemodule.cpp b/framework/workspace/workspacemodule.cpp index 40c1e30eb3..a0245e8a25 100644 --- a/framework/workspace/workspacemodule.cpp +++ b/framework/workspace/workspacemodule.cpp @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/workspacemodule.h b/framework/workspace/workspacemodule.h index a4050aa06b..f284a92a90 100644 --- a/framework/workspace/workspacemodule.h +++ b/framework/workspace/workspacemodule.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others diff --git a/framework/workspace/workspacetypes.h b/framework/workspace/workspacetypes.h index 5cbc44c784..9be20f6fe9 100644 --- a/framework/workspace/workspacetypes.h +++ b/framework/workspace/workspacetypes.h @@ -2,7 +2,7 @@ * SPDX-License-Identifier: GPL-3.0-only * MuseScore-CLA-applies * - * MuseScore + * MuseScore Studio * Music Composition & Notation * * Copyright (C) 2021 MuseScore Limited and others